diff options
author | Theodore Ts'o <tytso@mit.edu> | 2015-05-31 13:34:29 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2015-05-31 13:34:29 -0400 |
commit | 5555702955326ac1b9971f81569d8a6851384d49 (patch) | |
tree | aa90767f6a75c138b2d388bbb28f96b565bd74b2 /fs/ext4/crypto_policy.c | |
parent | 95ea68b4c7105179f507d31f7bf571623373aa0b (diff) | |
download | linux-5555702955326ac1b9971f81569d8a6851384d49.tar.bz2 |
ext4 crypto: set up encryption info for new inodes in ext4_inherit_context()
Set up the encryption information for newly created inodes immediately
after they inherit their encryption context from their parent
directories.
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/crypto_policy.c')
-rw-r--r-- | fs/ext4/crypto_policy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/crypto_policy.c b/fs/ext4/crypto_policy.c index 683391f790d6..81980a158dc7 100644 --- a/fs/ext4/crypto_policy.c +++ b/fs/ext4/crypto_policy.c @@ -206,6 +206,7 @@ int ext4_inherit_context(struct inode *parent, struct inode *child) if (!res) { ext4_set_inode_flag(child, EXT4_INODE_ENCRYPT); ext4_clear_inode_state(child, EXT4_STATE_MAY_INLINE_DATA); + res = ext4_get_encryption_info(child); } return res; } |