diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2010-05-26 17:43:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-27 12:12:48 -0400 |
commit | 55af6bb509d3ef2696faddd4a734bf024794b337 (patch) | |
tree | 4a5f3493957c5c7504b91bf90bedd828a26106c0 /drivers/md/raid5.c | |
parent | d882ba699dbdd2156891290c31c22dc13d6530e4 (diff) |
md: convert cpu notifier to return encapsulate errno value
By the previous modification, the cpu notifier can return encapsulate
errno value. This converts the cpu notifiers for raid5.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/md/raid5.c')
-rw-r--r-- | drivers/md/raid5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 9ea17d6c799b..d2c0f94fa37d 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -4645,7 +4645,7 @@ static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action, | |||
4645 | kfree(percpu->scribble); | 4645 | kfree(percpu->scribble); |
4646 | pr_err("%s: failed memory allocation for cpu%ld\n", | 4646 | pr_err("%s: failed memory allocation for cpu%ld\n", |
4647 | __func__, cpu); | 4647 | __func__, cpu); |
4648 | return NOTIFY_BAD; | 4648 | return notifier_from_errno(-ENOMEM); |
4649 | } | 4649 | } |
4650 | break; | 4650 | break; |
4651 | case CPU_DEAD: | 4651 | case CPU_DEAD: |