diff options
author | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2009-04-06 22:01:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-07 11:31:19 -0400 |
commit | 7a9461939a46345860622ea36ff267ee4446f00f (patch) | |
tree | 5607ba81b9580e2979bcfb806d5b04f5fbfd53d9 /fs/nilfs2/dir.c | |
parent | 8082d36aed26c4fb6ed43e4008303682eabf839e (diff) |
nilfs2: use unlocked_ioctl
Pekka Enberg suggested converting ->ioctl operations to use
->unlocked_ioctl to avoid BKL.
The conversion was verified to be safe, so I will take it on this
occasion.
Cc: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nilfs2/dir.c')
-rw-r--r-- | fs/nilfs2/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nilfs2/dir.c b/fs/nilfs2/dir.c index 393316cd3cad..54100acc1102 100644 --- a/fs/nilfs2/dir.c +++ b/fs/nilfs2/dir.c | |||
@@ -702,7 +702,7 @@ struct file_operations nilfs_dir_operations = { | |||
702 | .llseek = generic_file_llseek, | 702 | .llseek = generic_file_llseek, |
703 | .read = generic_read_dir, | 703 | .read = generic_read_dir, |
704 | .readdir = nilfs_readdir, | 704 | .readdir = nilfs_readdir, |
705 | .ioctl = nilfs_ioctl, | 705 | .unlocked_ioctl = nilfs_ioctl, |
706 | #ifdef CONFIG_COMPAT | 706 | #ifdef CONFIG_COMPAT |
707 | .compat_ioctl = nilfs_ioctl, | 707 | .compat_ioctl = nilfs_ioctl, |
708 | #endif /* CONFIG_COMPAT */ | 708 | #endif /* CONFIG_COMPAT */ |