diff options
author | Martin Brandenburg <martin@omnibond.com> | 2018-05-31 19:37:00 +0300 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2018-06-01 21:49:36 +0300 |
commit | 7f54910fa8dfe504f2e1563f4f6ddc3294dfbf3a (patch) | |
tree | 287a12873e789fcbba0add134c0c8742be3fc215 /fs/orangefs/inode.c | |
parent | ec62e95ae3f1c5bb23c7fba849fa306ad315ab10 (diff) | |
download | linux-7f54910fa8dfe504f2e1563f4f6ddc3294dfbf3a.tar.xz |
orangefs: report attributes_mask and attributes for statx
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 <ligon@clemson.edu>
Signed-off-by: Martin Brandenburg <martin@omnibond.com>
Fixes: 68a24a6cc4a6 ("orangefs: implement statx")
Cc: stable@vger.kernel.org
Cc: hubcap@omnibond.com
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/inode.c')
-rw-r--r-- | fs/orangefs/inode.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/orangefs/inode.c b/fs/orangefs/inode.c index b583fbf90665..f301e4957659 100644 --- a/fs/orangefs/inode.c +++ b/fs/orangefs/inode.c @@ -268,6 +268,13 @@ int orangefs_getattr(const struct path *path, struct kstat *stat, 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; } |