diff options
author | Prarit Bhargava <prarit@redhat.com> | 2011-03-22 16:30:49 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-03-22 17:44:01 -0700 |
commit | 5fda1bd5b8869574dad8e1f9f71e23bf0c186274 (patch) | |
tree | a714e0d153622bd89cf9f775e04763ccbd6c4ca5 /mm/slab.c | |
parent | cbf978bfb12d7deca97d7333f65eda0381a072de (diff) | |
download | op-kernel-dev-5fda1bd5b8869574dad8e1f9f71e23bf0c186274.zip op-kernel-dev-5fda1bd5b8869574dad8e1f9f71e23bf0c186274.tar.gz |
mm: notifier_from_errno() cleanup
While looking at some other notifier callbacks I noticed this code could
use a simple cleanup.
notifier_from_errno() no longer needs the if (ret)/else conditional. That
same conditional is now done in notifier_from_errno().
Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Cc: Paul Menage <menage@google.com>
Cc: Li Zefan <lizf@cn.fujitsu.com>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1390,7 +1390,7 @@ static int __meminit slab_memory_callback(struct notifier_block *self, break; } out: - return ret ? notifier_from_errno(ret) : NOTIFY_OK; + return notifier_from_errno(ret); } #endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */ |