For historical reasons, __GFP_NOFAIL was set for managed inode.
It's no need using that since EROFS can handle it properly.

Signed-off-by: Gao Xiang <gaoxian...@huawei.com>
---
 drivers/staging/erofs/super.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/erofs/super.c b/drivers/staging/erofs/super.c
index 7c31030daf4e..af5d87793e4d 100644
--- a/drivers/staging/erofs/super.c
+++ b/drivers/staging/erofs/super.c
@@ -356,8 +356,7 @@ static int erofs_init_managed_cache(struct super_block *sb)
 
        inode->i_mapping->a_ops = &managed_cache_aops;
        mapping_set_gfp_mask(inode->i_mapping,
-                            GFP_NOFS | __GFP_HIGHMEM |
-                            __GFP_MOVABLE |  __GFP_NOFAIL);
+                            GFP_NOFS | __GFP_HIGHMEM | __GFP_MOVABLE);
        sbi->managed_cache = inode;
        return 0;
 }
-- 
2.17.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to