diff options
author | Dmitry Monakhov <dmonakhov@openvz.org> | 2010-04-16 08:05:50 -0500 |
---|---|---|
committer | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2010-04-16 08:05:50 -0500 |
commit | c7f2e1f0ac142a657a1de00d404e1c8345b20598 (patch) | |
tree | 3afb52c22b24f2f31ec7c5638d87ab8bb1f04598 /fs/jfs/symlink.c | |
parent | 2b0b39517d1af5294128dbc2fd7ed39c8effa540 (diff) | |
download | op-kernel-dev-c7f2e1f0ac142a657a1de00d404e1c8345b20598.zip op-kernel-dev-c7f2e1f0ac142a657a1de00d404e1c8345b20598.tar.gz |
jfs: add jfs specific ->setattr call
generic setattr not longer responsible for quota transfer.
use jfs_setattr for all jfs's inodes.
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Diffstat (limited to 'fs/jfs/symlink.c')
-rw-r--r-- | fs/jfs/symlink.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/fs/jfs/symlink.c b/fs/jfs/symlink.c index 4af1a05..205b946 100644 --- a/fs/jfs/symlink.c +++ b/fs/jfs/symlink.c @@ -29,9 +29,21 @@ static void *jfs_follow_link(struct dentry *dentry, struct nameidata *nd) return NULL; } -const struct inode_operations jfs_symlink_inode_operations = { +const struct inode_operations jfs_fast_symlink_inode_operations = { .readlink = generic_readlink, .follow_link = jfs_follow_link, + .setattr = jfs_setattr, + .setxattr = jfs_setxattr, + .getxattr = jfs_getxattr, + .listxattr = jfs_listxattr, + .removexattr = jfs_removexattr, +}; + +const struct inode_operations jfs_symlink_inode_operations = { + .readlink = generic_readlink, + .follow_link = page_follow_link_light, + .put_link = page_put_link, + .setattr = jfs_setattr, .setxattr = jfs_setxattr, .getxattr = jfs_getxattr, .listxattr = jfs_listxattr, |