mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
quota: Check for register_shrinker() failure.
[ Upstream commit88bc0ede8d] register_shrinker() might return -ENOMEM error since Linux 3.12. Call panic() as with other failure checks in this function if register_shrinker() failed. Fixes:1d3d4437ea("vmscan: per-node deferred work") Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Jan Kara <jack@suse.com> Cc: Michal Hocko <mhocko@suse.com> Reviewed-by: Michal Hocko <mhocko@suse.com> Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d47907bcac
commit
c4ecc2f696
@@ -2985,7 +2985,8 @@ static int __init dquot_init(void)
|
||||
pr_info("VFS: Dquot-cache hash table entries: %ld (order %ld,"
|
||||
" %ld bytes)\n", nr_hash, order, (PAGE_SIZE << order));
|
||||
|
||||
register_shrinker(&dqcache_shrinker);
|
||||
if (register_shrinker(&dqcache_shrinker))
|
||||
panic("Cannot register dquot shrinker");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user