aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/ceph/inode.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c
index 1b173edc8083..be0f7e20d62e 100644
--- a/fs/ceph/inode.c
+++ b/fs/ceph/inode.c
@@ -1560,6 +1560,12 @@ static void *ceph_sym_follow_link(struct dentry *dentry, struct nameidata *nd)
1560static const struct inode_operations ceph_symlink_iops = { 1560static const struct inode_operations ceph_symlink_iops = {
1561 .readlink = generic_readlink, 1561 .readlink = generic_readlink,
1562 .follow_link = ceph_sym_follow_link, 1562 .follow_link = ceph_sym_follow_link,
1563 .setattr = ceph_setattr,
1564 .getattr = ceph_getattr,
1565 .setxattr = ceph_setxattr,
1566 .getxattr = ceph_getxattr,
1567 .listxattr = ceph_listxattr,
1568 .removexattr = ceph_removexattr,
1563}; 1569};
1564 1570
1565/* 1571/*