aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext3/file.c
diff options
context:
space:
mode:
authorCyrus Massoumi <cyrusm@gmx.net>2009-04-02 16:57:12 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2009-04-02 19:04:52 -0700
commit039fd8ce6258e01ec29f1637f9bf1868dd877c55 (patch)
treedcc90b006655eecad1d0cd82850feef2398976fa /fs/ext3/file.c
parentb277c884f7856ce0791b1e72079023a86767981b (diff)
downloadkernel_samsung_smdk4412-039fd8ce6258e01ec29f1637f9bf1868dd877c55.zip
kernel_samsung_smdk4412-039fd8ce6258e01ec29f1637f9bf1868dd877c55.tar.gz
kernel_samsung_smdk4412-039fd8ce6258e01ec29f1637f9bf1868dd877c55.tar.bz2
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/file.c')
-rw-r--r--fs/ext3/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext3/file.c b/fs/ext3/file.c
index 3be1e06..521f823 100644
--- a/fs/ext3/file.c
+++ b/fs/ext3/file.c
@@ -112,7 +112,7 @@ const struct file_operations ext3_file_operations = {
.write = do_sync_write,
.aio_read = generic_file_aio_read,
.aio_write = ext3_file_write,
- .ioctl = ext3_ioctl,
+ .unlocked_ioctl = ext3_ioctl,
#ifdef CONFIG_COMPAT
.compat_ioctl = ext3_compat_ioctl,
#endif