]> rtime.felk.cvut.cz Git - hercules2020/nv-tegra/linux-4.4.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)
committerIshan Mittal <imittal@nvidia.com>
Fri, 6 Jan 2017 10:15:02 +0000 (15:45 +0530)
commit0bf6ed9c381ff25347853e6a4f86f38fd3cce4fd
tree456fa9157a014451a02f3fa2fb3cc68c2e07dbd1
parent12e34f1bcdc6ce3dc106208932b4f6c52d857d9d
reiserfs: switch to generic_{get,set,remove}xattr()

commit 79a628d14ec7ee9adfdc3ce04343d5ff7ec20c18 upstream.

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>
[jeffm: Backported to v4.4: adjust context]
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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