diff options
author | Cyrus Massoumi <cyrusm@gmx.net> | 2009-04-02 19:57:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:04:52 -0400 |
commit | 039fd8ce6258e01ec29f1637f9bf1868dd877c55 (patch) | |
tree | dcc90b006655eecad1d0cd82850feef2398976fa /fs/ext3/dir.c | |
parent | b277c884f7856ce0791b1e72079023a86767981b (diff) |
ext3: remove the BKL in ext3/ioctl.c
Reformat ext3/ioctl.c to make it look more like ext4/ioctl.c and remove
the BKL around ext3_ioctl().
Signed-off-by: Cyrus Massoumi <cyrusm@gmx.net>
Cc: <linux-ext4@vger.kernel.org>
Acked-by: Jan Kara <jack@ucw.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ext3/dir.c')
-rw-r--r-- | fs/ext3/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/dir.c b/fs/ext3/dir.c index 5853f4440af4..3d724a95882f 100644 --- a/fs/ext3/dir.c +++ b/fs/ext3/dir.c | |||
@@ -42,7 +42,7 @@ const struct file_operations ext3_dir_operations = { | |||
42 | .llseek = generic_file_llseek, | 42 | .llseek = generic_file_llseek, |
43 | .read = generic_read_dir, | 43 | .read = generic_read_dir, |
44 | .readdir = ext3_readdir, /* we take BKL. needed?*/ | 44 | .readdir = ext3_readdir, /* we take BKL. needed?*/ |
45 | .ioctl = ext3_ioctl, /* BKL held */ | 45 | .unlocked_ioctl = ext3_ioctl, |
46 | #ifdef CONFIG_COMPAT | 46 | #ifdef CONFIG_COMPAT |
47 | .compat_ioctl = ext3_compat_ioctl, | 47 | .compat_ioctl = ext3_compat_ioctl, |
48 | #endif | 48 | #endif |