Re: [f2fs-dev] [PATCH 01/13] fscrypt: simplify bounce page handling

2019-05-02 Thread Chandan Rajendra
On Thursday, May 2, 2019 4:15:03 AM IST Eric Biggers wrote: > From: Eric Biggers > > Currently, bounce page handling for writes to encrypted files is > unnecessarily complicated. A fscrypt_ctx is allocated along with each > bounce page, page_private(bounce_page) points to this fscrypt_ctx, and

[f2fs-dev] [PATCH 01/13] fscrypt: simplify bounce page handling

2019-05-01 Thread Eric Biggers
From: Eric Biggers Currently, bounce page handling for writes to encrypted files is unnecessarily complicated. A fscrypt_ctx is allocated along with each bounce page, page_private(bounce_page) points to this fscrypt_ctx, and fscrypt_ctx::w::control_page points to the original pagecache page.