Re: [f2fs-dev] [PATCH v13 10/12] fscrypt: add inline encryption support

2020-06-02 Thread Eric Biggers
One more thing: On Thu, May 14, 2020 at 12:37:25AM +, Satya Tangirala wrote: > +/* Enable inline encryption for this file if supported. */ > +void fscrypt_select_encryption_impl(struct fscrypt_info *ci) > +{ > + const struct inode *inode = ci->ci_inode; > + struct super_block *sb = ino

[f2fs-dev] [PATCH 1/2] fs: docs: f2fs.rst: fix a broken table

2020-06-02 Thread Mauro Carvalho Chehab
As reported by Sphinx: Documentation/filesystems/f2fs.rst:229: WARNING: Malformed table. Text in column margin in table line 126. == background_gc=%s Turn on/off cleaning operat

[f2fs-dev] [PATCH 0/2] a couple documentation fixes

2020-06-02 Thread Mauro Carvalho Chehab
Hi Jon, It follows a couple of fixes for two tables that got broken, probably due to some conflict between the ReST conversion patches and ungoing updates. IMO, it would be nice to have those two applied during the merge window, as they produce a too noisy output. I have a few more fixes somewhe

[f2fs-dev] [PATCH v2] f2fs: fix retry logic in f2fs_write_cache_pages()

2020-06-02 Thread Sahitya Tummala
In case a compressed file is getting overwritten, the current retry logic doesn't include the current page to be retried now as it sets the new start index as 0 and new end index as writeback_index - 1. This causes the corresponding cluster to be uncompressed and written as normal pages without com