diff options
author | Arnd Bergmann <arnd@arndb.de> | 2010-04-27 14:24:20 (GMT) |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2010-05-17 03:27:03 (GMT) |
commit | 7cc4bcc6f152d365eb27acba5dcb7b38b36b3e50 (patch) | |
tree | d419f8f70942691cebabf94fd4d218f61a7736d7 /fs/hfsplus/dir.c | |
parent | e40152ee1e1c7a63f4777791863215e3faa37a86 (diff) | |
download | linux-7cc4bcc6f152d365eb27acba5dcb7b38b36b3e50.tar.xz |
hfsplus: Push down BKL into ioctl function
HFS is one of the remaining users of the ->ioctl function, convert it
blindly to unlocked_ioctl by pushing down the BKL.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'fs/hfsplus/dir.c')
-rw-r--r-- | fs/hfsplus/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c index 5f40236..764fd1b 100644 --- a/fs/hfsplus/dir.c +++ b/fs/hfsplus/dir.c @@ -494,7 +494,7 @@ const struct inode_operations hfsplus_dir_inode_operations = { const struct file_operations hfsplus_dir_operations = { .read = generic_read_dir, .readdir = hfsplus_readdir, - .ioctl = hfsplus_ioctl, + .unlocked_ioctl = hfsplus_ioctl, .llseek = generic_file_llseek, .release = hfsplus_dir_release, }; |