diff options
author | Eric Biggers <ebiggers@google.com> | 2023-12-05 16:19:01 -0800 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2023-12-09 12:38:15 -0800 |
commit | 33318c0e6ba64876050def6432f80387c89d0fe6 (patch) | |
tree | 6d37389ee175dea91b06eed77c9042039fe3486a | |
parent | 33cc938e65a98f1d29d0a18403dbbee050dcad9a (diff) | |
download | lwn-33318c0e6ba64876050def6432f80387c89d0fe6.tar.gz lwn-33318c0e6ba64876050def6432f80387c89d0fe6.zip |
fscrypt.rst: update definition of struct fscrypt_context_v2
Get the copy of the fscrypt_context_v2 definition in the documentation
in sync with the actual definition, which was changed recently by
commit 5b1188847180 ("fscrypt: support crypto data unit size less than
filesystem block size").
Link: https://lore.kernel.org/r/20231206001901.14371-1-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
-rw-r--r-- | Documentation/filesystems/fscrypt.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/filesystems/fscrypt.rst b/Documentation/filesystems/fscrypt.rst index 1b84f818e574..8d38b47b7b83 100644 --- a/Documentation/filesystems/fscrypt.rst +++ b/Documentation/filesystems/fscrypt.rst @@ -1382,7 +1382,8 @@ directory.) These structs are defined as follows:: u8 contents_encryption_mode; u8 filenames_encryption_mode; u8 flags; - u8 __reserved[4]; + u8 log2_data_unit_size; + u8 __reserved[3]; u8 master_key_identifier[FSCRYPT_KEY_IDENTIFIER_SIZE]; u8 nonce[FSCRYPT_FILE_NONCE_SIZE]; }; |