diff options
author | Herbert Poetzl <herbert@13thfloor.at> | 2006-07-03 17:27:12 -0700 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-09-20 15:48:39 -0700 |
commit | ca4d147e62df370c334898464023aa7f9126abe1 (patch) | |
tree | aff39cd19c5b0a95a1fd85caf439c4aa69c5830e /fs/ocfs2/file.c | |
parent | b4c98f625fffee3a6f633082e9e4be3e952ca2ab (diff) | |
download | op-kernel-dev-ca4d147e62df370c334898464023aa7f9126abe1.zip op-kernel-dev-ca4d147e62df370c334898464023aa7f9126abe1.tar.gz |
ocfs2: add ext2 attributes
Support immutable, and other attributes.
Some renaming and other minor fixes done by myself.
Signed-off-by: Herbert Poetzl <herbert@13thfloor.at>
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2/file.c')
-rw-r--r-- | fs/ocfs2/file.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c index a9559c8..2bbfa17 100644 --- a/fs/ocfs2/file.c +++ b/fs/ocfs2/file.c @@ -44,6 +44,7 @@ #include "file.h" #include "sysfile.h" #include "inode.h" +#include "ioctl.h" #include "journal.h" #include "mmap.h" #include "suballoc.h" @@ -1227,10 +1228,12 @@ const struct file_operations ocfs2_fops = { .open = ocfs2_file_open, .aio_read = ocfs2_file_aio_read, .aio_write = ocfs2_file_aio_write, + .ioctl = ocfs2_ioctl, }; const struct file_operations ocfs2_dops = { .read = generic_read_dir, .readdir = ocfs2_readdir, .fsync = ocfs2_sync_file, + .ioctl = ocfs2_ioctl, }; |