Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3892296 authored by Jan Kara's avatar Jan Kara Committed by Linus Torvalds
Browse files

vfs: fix NULL pointer dereference in fsync_buffers_list()



Fix NULL pointer dereference in fsync_buffers_list() introduced by recent fix
of races in private_list handling.  Since bh->b_assoc_map has been cleared in
__remove_assoc_queue() we should really use original value stored in the
'mapping' variable.

Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 10ed273f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -835,7 +835,7 @@ static int fsync_buffers_list(spinlock_t *lock, struct list_head *list)
		smp_mb();
		if (buffer_dirty(bh)) {
			list_add(&bh->b_assoc_buffers,
				 &bh->b_assoc_map->private_list);
				 &mapping->private_list);
			bh->b_assoc_map = mapping;
		}
		spin_unlock(lock);