4.17-stable review patch. If anyone has any objections, please let me know.
------------------ From: Martin Brandenburg <[email protected]> commit 7f54910fa8dfe504f2e1563f4f6ddc3294dfbf3a upstream. OrangeFS formerly failed to set attributes_mask with the result that software could not see immutable and append flags present in the filesystem. Reported-by: Becky Ligon <[email protected]> Signed-off-by: Martin Brandenburg <[email protected]> Fixes: 68a24a6cc4a6 ("orangefs: implement statx") Cc: [email protected] Cc: [email protected] Signed-off-by: Mike Marshall <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- fs/orangefs/inode.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/fs/orangefs/inode.c +++ b/fs/orangefs/inode.c @@ -269,6 +269,13 @@ int orangefs_getattr(const struct path * else stat->result_mask = STATX_BASIC_STATS & ~STATX_SIZE; + + stat->attributes_mask = STATX_ATTR_IMMUTABLE | + STATX_ATTR_APPEND; + if (inode->i_flags & S_IMMUTABLE) + stat->attributes |= STATX_ATTR_IMMUTABLE; + if (inode->i_flags & S_APPEND) + stat->attributes |= STATX_ATTR_APPEND; } return ret; }

