Whamcloud - gitweb
LU-16085 llite: fix stat attributes_mask 08/48208/3
authorSebastien Buisson <sbuisson@ddn.com>
Fri, 12 Aug 2022 07:59:02 +0000 (09:59 +0200)
committerOleg Drokin <green@whamcloud.com>
Thu, 1 Sep 2022 05:55:19 +0000 (05:55 +0000)
Fix stat attributes_mask to return STATX_ATTR_ENCRYPTED whenever it is
possible. Also fix sanityn test_106c to expect at least the 0x30 flag
for attributes_mask.

Test-Parameters: trivial
Signed-off-by: Sebastien Buisson <sbuisson@ddn.com>
Change-Id: Icd16beff058c42d77e9b04ad1a287ec2ac04dfed
Reviewed-on: https://review.whamcloud.com/48208
Tested-by: jenkins <devops@whamcloud.com>
Reviewed-by: Andreas Dilger <adilger@whamcloud.com>
Reviewed-by: James Simmons <jsimmons@infradead.org>
Tested-by: Maloo <maloo@whamcloud.com>
Reviewed-by: Oleg Drokin <green@whamcloud.com>
lustre/llite/file.c
lustre/tests/sanityn.sh

index f451a38..240add5 100644 (file)
@@ -5367,6 +5367,9 @@ fill_attr:
        }
 
        stat->attributes_mask = STATX_ATTR_IMMUTABLE | STATX_ATTR_APPEND;
+#ifdef HAVE_LUSTRE_CRYPTO
+       stat->attributes_mask |= STATX_ATTR_ENCRYPTED;
+#endif
        stat->attributes |= ll_inode_to_ext_flags(inode->i_flags);
        stat->result_mask &= request_mask;
 #endif
index ebb7e04..5febd53 100755 (executable)
@@ -5571,8 +5571,8 @@ test_106c() {
        # Mask supported in stx_attributes by Lustre is
        # STATX_ATTR_IMMUTABLE(0x10) | STATX_ATTR_APPEND(0x20) : (0x30).
        mask=$($STATX -c %p $DIR/$tfile)
-       [[ $mask == "30" ]] ||
-               error "supported stx_attributes: got '$mask', expected '30'"
+       (( 0x$mask & 0x30 == 0x30 )) ||
+               error "supported stx_attributes: got '0x$mask', expected '0x30' at least"
        chattr +i $DIR/$tfile || error "chattr +i $DIR/$tfile failed"
        mask=$($STATX -c %r $DIR/$tfile)
        [[ $mask == "10" ]] ||