]> git.baikalelectronics.ru Git - kernel.git/commit
reiserfs: switch to generic_{get,set,remove}xattr()
authorAl Viro <viro@zeniv.linux.org.uk>
Sun, 10 Apr 2016 22:50:48 +0000 (18:50 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sun, 10 Apr 2016 23:31:09 +0000 (19:31 -0400)
commitab6120deabe17b8462db33e8d227dfa087ccb960
tree96b0e5a6a97bed3bdd0669bbdf372f05db718404
parent76cffa0141bbe49a84a83afa34db220122c2063b
reiserfs: switch to generic_{get,set,remove}xattr()

reiserfs_xattr_[sg]et() will fail with -EOPNOTSUPP for V1 inodes anyway,
and all reiserfs instances of ->[sg]et() call it and so does ->set_acl().

Checks for name length in the instances had been bogus; they should've
been "bugger off if it's _exactly_ the prefix" (as generic would
do on its own) and not "bugger off if it's shorter than the prefix" -
that can't happen.

xattr_full_name() is needed to adjust for the fact that generic instances
will skip the prefix in the name passed to ->[gs]et(); reiserfs homegrown
analogues didn't.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/reiserfs/file.c
fs/reiserfs/namei.c
fs/reiserfs/xattr.c
fs/reiserfs/xattr.h
fs/reiserfs/xattr_security.c
fs/reiserfs/xattr_trusted.c
fs/reiserfs/xattr_user.c