diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-16 13:35:01 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-17 00:36:35 -0400 |
commit | fe36adf47eb1f7f4972559efa30ce3d2d3f977f2 (patch) | |
tree | 27acbe8377f0d4a0f192daa8943c5289ac3d503d /fs/ioctl.c | |
parent | b0895513f499b8f786d292ce48589ca210ca1d6e (diff) | |
download | linux-fe36adf47eb1f7f4972559efa30ce3d2d3f977f2.tar.bz2 |
No instance of ->bmap() needs BKL
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ioctl.c')
-rw-r--r-- | fs/ioctl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ioctl.c b/fs/ioctl.c index 286f38dfc6c0..001f8d3118f2 100644 --- a/fs/ioctl.c +++ b/fs/ioctl.c @@ -70,9 +70,7 @@ static int ioctl_fibmap(struct file *filp, int __user *p) res = get_user(block, p); if (res) return res; - lock_kernel(); res = mapping->a_ops->bmap(mapping, block); - unlock_kernel(); return put_user(res, p); } |