docs: fs-verity: mention statx() support
authorEric Biggers <ebiggers@google.com>
Tue, 29 Oct 2019 20:41:41 +0000 (13:41 -0700)
committerEric Biggers <ebiggers@google.com>
Wed, 13 Nov 2019 20:15:34 +0000 (12:15 -0800)
Document that the statx() system call can now be used to check whether a
file is a verity file.

Signed-off-by: Eric Biggers <ebiggers@google.com>
Documentation/filesystems/fsverity.rst

index dd55204..a95536b 100644 (file)
@@ -226,6 +226,14 @@ To do so, check for FS_VERITY_FL (0x00100000) in the returned flags.
 The verity flag is not settable via FS_IOC_SETFLAGS.  You must use
 FS_IOC_ENABLE_VERITY instead, since parameters must be provided.
 
+statx
+-----
+
+Since Linux v5.5, the statx() system call sets STATX_ATTR_VERITY if
+the file has fs-verity enabled.  This can perform better than
+FS_IOC_GETFLAGS and FS_IOC_MEASURE_VERITY because it doesn't require
+opening the file, and opening verity files can be expensive.
+
 Accessing verity files
 ======================