]> git.karo-electronics.de Git - karo-tx-linux.git/commit
ext4: Use bitops to read/modify i_flags in struct ext4_inode_info
authorDmitry Monakhov <dmonakhov@openvz.org>
Mon, 17 May 2010 02:00:00 +0000 (22:00 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 6 Jan 2011 23:07:36 +0000 (18:07 -0500)
commitbdb69261f2e22b63f5fb2fcbb0de1c3425b61acc
treeb1d83cef33420bd2f72df638750dbcbc7debc9f1
parent607d0c57aaaa1035ab69123ee87deaf9428f9818
ext4: Use bitops to read/modify i_flags in struct ext4_inode_info

commit 12e9b892002d9af057655d35b44db8ee9243b0dc upstream.

At several places we modify EXT4_I(inode)->i_flags without holding
i_mutex (ext4_do_update_inode, ...). These modifications are racy and
we can lose updates to i_flags. So convert handling of i_flags to use
bitops which are atomic.

https://bugzilla.kernel.org/show_bug.cgi?id=15792

Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
13 files changed:
fs/ext4/dir.c
fs/ext4/ext4.h
fs/ext4/ext4_jbd2.h
fs/ext4/extents.c
fs/ext4/file.c
fs/ext4/ialloc.c
fs/ext4/inode.c
fs/ext4/mballoc.c
fs/ext4/migrate.c
fs/ext4/move_extent.c
fs/ext4/namei.c
fs/ext4/super.c
fs/ext4/xattr.c