Commit ee6a12d0 authored by Theodore Ts'o's avatar Theodore Ts'o

ext4: add missing initialization of call_notify_error in update_super_work()

Fixes: ff0722de ("ext4: add periodic superblock update check")
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent 8a749fd1
......@@ -768,7 +768,8 @@ static void update_super_work(struct work_struct *work)
*/
if (!sb_rdonly(sbi->s_sb) && journal) {
struct buffer_head *sbh = sbi->s_sbh;
bool call_notify_err;
bool call_notify_err = false;
handle = jbd2_journal_start(journal, 1);
if (IS_ERR(handle))
goto write_directly;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment