VisionFive2 Linux kernel

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

More than 9999 Commits   33 Branches   55 Tags
author: Gao Xiang <gaoxiang25@huawei.com> 2019-11-21 21:59:54 +0800 committer: Gao Xiang <gaoxiang25@huawei.com> 2019-11-24 10:57:48 +0800 commit: 5ddcee1f3a1ccaccb31bc17080f75a0bb13b4906 parent: bda17a4577da729d17b8f87bf3279b9db201d8ca
Commit Summary:
erofs: get rid of __stagingpage_alloc helper
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/erofs/decompressor.c b/fs/erofs/decompressor.c
index 19f89f9fb10c..2890a67a1ded 100644
--- a/fs/erofs/decompressor.c
+++ b/fs/erofs/decompressor.c
@@ -73,7 +73,7 @@ static int z_erofs_lz4_prepare_destpages(struct z_erofs_decompress_req *rq,
 			victim = availables[--top];
 			get_page(victim);
 		} else {
-			victim = erofs_allocpage(pagepool, GFP_KERNEL, false);
+			victim = erofs_allocpage(pagepool, GFP_KERNEL);
 			if (!victim)
 				return -ENOMEM;
 			victim->mapping = Z_EROFS_MAPPING_STAGING;