aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jfs/namei.c
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruenba@redhat.com>2016-04-22 08:43:49 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2016-05-12 22:29:18 -0400
commitc8b6056a504fa384f36e7577fc5a1c1684fcf18a (patch)
tree9ef7ab6b2ed44a97438d941e576daf7293f4edce /fs/jfs/namei.c
parent6c8f980c75185f8ba897814363d21882f7453f53 (diff)
jfs: Switch to generic xattr handlers
This is mostly the same as on other filesystems except for attribute names with an "os2." prefix: for those, the prefix is not stored on disk, and on-attribute names without a prefix have "os2." added. As on several other filesystems, the underlying function for setting/removing xattrs (__jfs_setxattr) removes attributes when the value is NULL, so the set xattr handlers will work as expected. Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/jfs/namei.c')
-rw-r--r--fs/jfs/namei.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c
index 8a40941ac9a6..7040062cb050 100644
--- a/fs/jfs/namei.c
+++ b/fs/jfs/namei.c
@@ -1537,10 +1537,10 @@ const struct inode_operations jfs_dir_inode_operations = {
1537 .rmdir = jfs_rmdir, 1537 .rmdir = jfs_rmdir,
1538 .mknod = jfs_mknod, 1538 .mknod = jfs_mknod,
1539 .rename = jfs_rename, 1539 .rename = jfs_rename,
1540 .setxattr = jfs_setxattr, 1540 .setxattr = generic_setxattr,
1541 .getxattr = jfs_getxattr, 1541 .getxattr = generic_getxattr,
1542 .listxattr = jfs_listxattr, 1542 .listxattr = jfs_listxattr,
1543 .removexattr = jfs_removexattr, 1543 .removexattr = generic_removexattr,
1544 .setattr = jfs_setattr, 1544 .setattr = jfs_setattr,
1545#ifdef CONFIG_JFS_POSIX_ACL 1545#ifdef CONFIG_JFS_POSIX_ACL
1546 .get_acl = jfs_get_acl, 1546 .get_acl = jfs_get_acl,