Re: [f2fs-dev] [PATCH V3 3/7] fscrypt: remove struct fscrypt_ctx

2019-06-21 Thread Eric Biggers
On Sun, Jun 16, 2019 at 09:38:09PM +0530, Chandan Rajendra wrote: > -/** > - * fscrypt_get_ctx() - Get a decryption context > - * @gfp_flags: The gfp flag for memory allocation > - * > - * Allocate and initialize a decryption context. > - * > - * Return: A new decryption context on success; an

[f2fs-dev] [PATCH V3 3/7] fscrypt: remove struct fscrypt_ctx

2019-06-16 Thread Chandan Rajendra
Commit "fscrypt: remove the 'write' part of struct fscrypt_ctx" reduced "struct fscrypt_ctx" to be used only for decryption. With "read callbacks" being integrated into Ext4 and F2FS, we don't use "struct fscrypt_ctx" anymore. Hence this commit removes the structure and the associated code.