Remove ext2/ext3 BKL patches which conflict with the ro bind mount patches.
[ext4-patch-queue.git] / ext3__remove_incorrect_bkl_comment
blobb7e88e0acca0ebe24c1c0d113dd08673cd04fdc1
1 ext3: Remove incorrect BKL comment
3 From: Andi Kleen <ak@suse.de>
5 There is no BKL held on entry in ->fsync nor in the low level ext3_sync_file.
7 Signed-off-by: Andi Kleen <ak@suse.de>
8 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
10 diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c
11 index 77a6962..9fee14c 100644
12 --- a/fs/ext3/dir.c
13 +++ b/fs/ext3/dir.c
14 @@ -46,7 +46,7 @@ const struct file_operations ext3_dir_operations = {
15  #ifdef CONFIG_COMPAT
16         .compat_ioctl   = ext3_compat_ioctl,
17  #endif
18 -       .fsync          = ext3_sync_file,       /* BKL held */
19 +       .fsync          = ext3_sync_file,
20         .release        = ext3_release_dir,
21  };