Commit 08ff39f1 authored by Sven Wegener's avatar Sven Wegener Committed by NeilBrown

md: check for memory allocation failure in faulty personality

It's a fault injection module, but I don't think we should oops here.
Signed-off-by: default avatarSven Wegener <sven.wegener@stealer.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarNeil Brown <neilb@suse.de>
parent 25570727
...@@ -287,6 +287,8 @@ static int run(mddev_t *mddev) ...@@ -287,6 +287,8 @@ static int run(mddev_t *mddev)
int i; int i;
conf_t *conf = kmalloc(sizeof(*conf), GFP_KERNEL); conf_t *conf = kmalloc(sizeof(*conf), GFP_KERNEL);
if (!conf)
return -ENOMEM;
for (i=0; i<Modes; i++) { for (i=0; i<Modes; i++) {
atomic_set(&conf->counters[i], 0); atomic_set(&conf->counters[i], 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment