public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs_io: allow lsattr & lsproj on foreign filesystems
@ 2017-07-31 22:58 Ross Zwisler
  2017-08-02 16:10 ` Darrick J. Wong
  0 siblings, 1 reply; 2+ messages in thread
From: Ross Zwisler @ 2017-07-31 22:58 UTC (permalink / raw)
  To: fstests, linux-xfs; +Cc: Ross Zwisler, Eric Sandeen, Dave Chinner, Jan Kara

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 <ross.zwisler@linux.intel.com>
Fixes: 73b54bb6a2fb ("xfs_io: allow chattr & chproj on foreign filesystems")
Cc: Eric Sandeen <sandeen@redhat.com>
Cc: Dave Chinner <david@fromorbit.com>
Cc: Jan Kara <jack@suse.cz>
---
 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 b8eec1b..728560e 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 b50f068..f2ea7c3 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.9.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] xfs_io: allow lsattr & lsproj on foreign filesystems
  2017-07-31 22:58 [PATCH] xfs_io: allow lsattr & lsproj on foreign filesystems Ross Zwisler
@ 2017-08-02 16:10 ` Darrick J. Wong
  0 siblings, 0 replies; 2+ messages in thread
From: Darrick J. Wong @ 2017-08-02 16:10 UTC (permalink / raw)
  To: Ross Zwisler; +Cc: fstests, linux-xfs, Eric Sandeen, Dave Chinner, Jan Kara

On Mon, Jul 31, 2017 at 04:58:33PM -0600, Ross Zwisler wrote:
> 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 <ross.zwisler@linux.intel.com>
> Fixes: 73b54bb6a2fb ("xfs_io: allow chattr & chproj on foreign filesystems")
> Cc: Eric Sandeen <sandeen@redhat.com>
> Cc: Dave Chinner <david@fromorbit.com>
> Cc: Jan Kara <jack@suse.cz>

Looks ok,
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

--D

> ---
>  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 b8eec1b..728560e 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 b50f068..f2ea7c3 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.9.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-08-02 16:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-31 22:58 [PATCH] xfs_io: allow lsattr & lsproj on foreign filesystems Ross Zwisler
2017-08-02 16:10 ` Darrick J. Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox