diff options
author | Andi Kleen <ak@suse.de> | 2008-01-27 18:02:02 -0500 |
---|---|---|
committer | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2008-02-07 14:45:29 -0500 |
commit | ef1fc2f01e02951a0d8520ec3aa0b38606d74b55 (patch) | |
tree | 463a76f46af50169643ed5c1f5c7a6060e26bbaa /fs/jfs/namei.c | |
parent | baab81fa518ecfac597402b462631f5593926623 (diff) |
BKL-removal: Implement a compat_ioctl handler for JFS
The ioctls were already compatible except for the actual values so this
was fairly easy to do.
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Diffstat (limited to 'fs/jfs/namei.c')
-rw-r--r-- | fs/jfs/namei.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index 6440904a051c..0ba6778edaa2 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c | |||
@@ -1557,6 +1557,9 @@ const struct file_operations jfs_dir_operations = { | |||
1557 | .readdir = jfs_readdir, | 1557 | .readdir = jfs_readdir, |
1558 | .fsync = jfs_fsync, | 1558 | .fsync = jfs_fsync, |
1559 | .unlocked_ioctl = jfs_ioctl, | 1559 | .unlocked_ioctl = jfs_ioctl, |
1560 | #ifdef CONFIG_COMPAT | ||
1561 | .compat_ioctl = jfs_compat_ioctl, | ||
1562 | #endif | ||
1560 | }; | 1563 | }; |
1561 | 1564 | ||
1562 | static int jfs_ci_hash(struct dentry *dir, struct qstr *this) | 1565 | static int jfs_ci_hash(struct dentry *dir, struct qstr *this) |