mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-05 22:14:27 +00:00
sget(): handle failures of register_shrinker()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
bb422a738f
commit
9ee332d99e
1 changed files with 5 additions and 1 deletions
|
@ -517,7 +517,11 @@ retry:
|
||||||
hlist_add_head(&s->s_instances, &type->fs_supers);
|
hlist_add_head(&s->s_instances, &type->fs_supers);
|
||||||
spin_unlock(&sb_lock);
|
spin_unlock(&sb_lock);
|
||||||
get_filesystem(type);
|
get_filesystem(type);
|
||||||
register_shrinker(&s->s_shrink);
|
err = register_shrinker(&s->s_shrink);
|
||||||
|
if (err) {
|
||||||
|
deactivate_locked_super(s);
|
||||||
|
s = ERR_PTR(err);
|
||||||
|
}
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue