From e13a325cd7a964fb9f80a6ba23b5598584fc5edf Mon Sep 17 00:00:00 2001 From: Ross Zwisler Date: Fri, 4 Aug 2017 16:33:51 -0500 Subject: [PATCH] xfs_io: allow lsattr & lsproj on foreign filesystems The following commit: commit 73b54bb6a2fb ("xfs_io: allow chattr & chproj on foreign filesystems") allowed chattr and chproj to be run on non-xfs filesystems now that FS_IOC_FSSETXATTR is a generic vfs call. It failed to enable the corresponding lsattr and lsproj commands for those filesystems, though. Signed-off-by: Ross Zwisler Fixes: 73b54bb6a2fb ("xfs_io: allow chattr & chproj on foreign filesystems") Reviewed-by: Darrick J. Wong Signed-off-by: Eric Sandeen --- io/attr.c | 2 +- io/open.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/io/attr.c b/io/attr.c index b8eec1be5..728560e1d 100644 --- a/io/attr.c +++ b/io/attr.c @@ -353,7 +353,7 @@ attr_init(void) lsattr_cmd.args = _("[-R|-D|-a|-v]"); lsattr_cmd.argmin = 0; lsattr_cmd.argmax = 1; - lsattr_cmd.flags = CMD_NOMAP_OK; + lsattr_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK; lsattr_cmd.oneline = _("list extended inode flags set on the currently open file"); lsattr_cmd.help = lsattr_help; diff --git a/io/open.c b/io/open.c index b50f06810..f2ea7c327 100644 --- a/io/open.c +++ b/io/open.c @@ -812,7 +812,7 @@ open_init(void) lsproj_cmd.args = _("[-D | -R]"); lsproj_cmd.argmin = 0; lsproj_cmd.argmax = -1; - lsproj_cmd.flags = CMD_NOMAP_OK; + lsproj_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK; lsproj_cmd.oneline = _("list project identifier set on the currently open file"); lsproj_cmd.help = lsproj_help; -- 2.47.2