VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: zhangyi (F) <yi.zhang@huawei.com> 2020-09-24 15:33:33 +0800 committer: Theodore Ts'o <tytso@mit.edu> 2020-10-18 10:37:14 -0400 commit: 2d069c0889ef0decda7af6ecbdc63b680b767749 parent: fa491b14cd9586ad703606ef0155cd43459d2b32
Commit Summary:
ext4: use common helpers in all places reading metadata buffers
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/ext4/move_extent.c b/fs/ext4/move_extent.c
index 0d601b822875..64a579734f93 100644
--- a/fs/ext4/move_extent.c
+++ b/fs/ext4/move_extent.c
@@ -215,7 +215,7 @@ mext_page_mkuptodate(struct page *page, unsigned from, unsigned to)
 	for (i = 0; i < nr; i++) {
 		bh = arr[i];
 		if (!bh_uptodate_or_lock(bh)) {
-			err = bh_submit_read(bh);
+			err = ext4_read_bh(bh, 0, NULL);
 			if (err)
 				return err;
 		}