diff options
author | David Howells | 2006-08-29 20:06:23 +0200 |
---|---|---|
committer | Jens Axboe | 2006-09-30 20:52:29 +0200 |
commit | 52a700c5675f399c07e6e57328291e57f13ef3bb (patch) | |
tree | 4ef1a3a7d66f589ad2e5f7d769da8c30f172a70e /fs/ext3/file.c | |
parent | [PATCH] BLOCK: Move the Ext2 device ioctl compat stuff to the Ext2 driver [tr... (diff) | |
download | kernel-qcow2-linux-52a700c5675f399c07e6e57328291e57f13ef3bb.tar.gz kernel-qcow2-linux-52a700c5675f399c07e6e57328291e57f13ef3bb.tar.xz kernel-qcow2-linux-52a700c5675f399c07e6e57328291e57f13ef3bb.zip |
[PATCH] BLOCK: Move the Ext3 device ioctl compat stuff to the Ext3 driver [try #6]
Move the Ext3 device ioctl compat stuff from fs/compat_ioctl.c to the Ext3
driver so that the Ext3 header file doesn't need to be included.
Signed-Off-By: David Howells <dhowells@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/ext3/file.c')
-rw-r--r-- | fs/ext3/file.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ext3/file.c b/fs/ext3/file.c index 994efd189f4e..74ff20f9d09b 100644 --- a/fs/ext3/file.c +++ b/fs/ext3/file.c @@ -114,6 +114,9 @@ const struct file_operations ext3_file_operations = { .readv = generic_file_readv, .writev = generic_file_writev, .ioctl = ext3_ioctl, +#ifdef CONFIG_COMPAT + .compat_ioctl = ext3_compat_ioctl, +#endif .mmap = generic_file_mmap, .open = generic_file_open, .release = ext3_release_file, |