From: Zhang Yi <yi.zhang@xxxxxxxxxx> The write-back process cannot restart a journal transaction when submitting a sufficiently large and discontinuous folio if dioread_nolock is disabled. To address this, disable large folios when building an inode if dioread_nolock is disabled, and also ensure that dioread_nolock cannot be disabled on an active inode that has large folio enabled. Fixes: 7ac67301e82f ("ext4: enable large folio for regular file") Signed-off-by: Zhang Yi <yi.zhang@xxxxxxxxxx> --- fs/ext4/ext4_jbd2.h | 7 +++++++ fs/ext4/inode.c | 2 ++ 2 files changed, 9 insertions(+) diff --git a/fs/ext4/ext4_jbd2.h b/fs/ext4/ext4_jbd2.h index c0ee756cb34c..59292da272ef 100644 --- a/fs/ext4/ext4_jbd2.h +++ b/fs/ext4/ext4_jbd2.h @@ -422,6 +422,13 @@ static inline int ext4_free_data_revoke_credits(struct inode *inode, int blocks) */ static inline int ext4_should_dioread_nolock(struct inode *inode) { + /* + * Cannot disable dioread_nolock on an active inode that has + * large folio enabled. + */ + if (mapping_large_folio_support(inode->i_mapping)) + return 1; + if (!test_opt(inode->i_sb, DIOREAD_NOLOCK)) return 0; if (!S_ISREG(inode->i_mode)) diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index e7de2fafc941..421c7bbc3ca9 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c @@ -5164,6 +5164,8 @@ bool ext4_should_enable_large_folio(struct inode *inode) return false; if (ext4_has_feature_encrypt(sb)) return false; + if (!ext4_should_dioread_nolock(inode)) + return false; return true; } -- 2.46.1