Loading fs/ubifs/lprops.c +4 −4 Original line number Diff line number Diff line Loading @@ -1089,10 +1089,6 @@ static int scan_check_cb(struct ubifs_info *c, } } buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL); if (!buf) return -ENOMEM; /* * After an unclean unmount, empty and freeable LEBs * may contain garbage - do not scan them. Loading @@ -1111,6 +1107,10 @@ static int scan_check_cb(struct ubifs_info *c, return LPT_SCAN_CONTINUE; } buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL); if (!buf) return -ENOMEM; sleb = ubifs_scan(c, lnum, 0, buf, 0); if (IS_ERR(sleb)) { ret = PTR_ERR(sleb); Loading Loading
fs/ubifs/lprops.c +4 −4 Original line number Diff line number Diff line Loading @@ -1089,10 +1089,6 @@ static int scan_check_cb(struct ubifs_info *c, } } buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL); if (!buf) return -ENOMEM; /* * After an unclean unmount, empty and freeable LEBs * may contain garbage - do not scan them. Loading @@ -1111,6 +1107,10 @@ static int scan_check_cb(struct ubifs_info *c, return LPT_SCAN_CONTINUE; } buf = __vmalloc(c->leb_size, GFP_NOFS, PAGE_KERNEL); if (!buf) return -ENOMEM; sleb = ubifs_scan(c, lnum, 0, buf, 0); if (IS_ERR(sleb)) { ret = PTR_ERR(sleb); Loading