From: Hou Pengyang Date: Fri, 21 Apr 2017 12:41:48 +0000 (+0000) Subject: f2fs: skip encrypted inode in ASYNC IPU policy X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4086d3f61b6573f65ddc13fc375c0c7b0ac482a0;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git f2fs: skip encrypted inode in ASYNC IPU policy Async request may be throttled in block layer, so page for async may keep WRITE_BACK for a long time. For encrytped inode, we need wait on page writeback no matter if the device supports BDI_CAP_STABLE_WRITES. This may result in a higher waiting page writeback time for async encrypted inode page. This patch skips IPU for encrypted inode's updating write. Signed-off-by: Hou Pengyang Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/segment.h b/fs/f2fs/segment.h index 93cc4e504aab..8ad22b8cbba7 100644 --- a/fs/f2fs/segment.h +++ b/fs/f2fs/segment.h @@ -593,7 +593,8 @@ static inline bool need_inplace_update(struct inode *inode, */ if (policy & (0x1 << F2FS_IPU_ASYNC) && fio && fio->op == REQ_OP_WRITE && - !(fio->op_flags & REQ_SYNC)) + !(fio->op_flags & REQ_SYNC) && + !f2fs_encrypted_inode(inode)) return true; /* this is only set during fdatasync */