diff options
-rw-r--r-- | fs/ceph/xattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ceph/xattr.c b/fs/ceph/xattr.c index 40b703217977..febc28f9e2c2 100644 --- a/fs/ceph/xattr.c +++ b/fs/ceph/xattr.c | |||
@@ -16,7 +16,7 @@ | |||
16 | static int __remove_xattr(struct ceph_inode_info *ci, | 16 | static int __remove_xattr(struct ceph_inode_info *ci, |
17 | struct ceph_inode_xattr *xattr); | 17 | struct ceph_inode_xattr *xattr); |
18 | 18 | ||
19 | const struct xattr_handler ceph_other_xattr_handler; | 19 | static const struct xattr_handler ceph_other_xattr_handler; |
20 | 20 | ||
21 | /* | 21 | /* |
22 | * List of handlers for synthetic system.* attributes. Other | 22 | * List of handlers for synthetic system.* attributes. Other |
@@ -1086,7 +1086,7 @@ static int ceph_set_xattr_handler(const struct xattr_handler *handler, | |||
1086 | return __ceph_setxattr(inode, name, value, size, flags); | 1086 | return __ceph_setxattr(inode, name, value, size, flags); |
1087 | } | 1087 | } |
1088 | 1088 | ||
1089 | const struct xattr_handler ceph_other_xattr_handler = { | 1089 | static const struct xattr_handler ceph_other_xattr_handler = { |
1090 | .prefix = "", /* match any name => handlers called with full name */ | 1090 | .prefix = "", /* match any name => handlers called with full name */ |
1091 | .get = ceph_get_xattr_handler, | 1091 | .get = ceph_get_xattr_handler, |
1092 | .set = ceph_set_xattr_handler, | 1092 | .set = ceph_set_xattr_handler, |