diff options
author | Amerigo Wang <amwang@redhat.com> | 2011-07-25 17:13:08 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-07-25 20:57:14 -0700 |
commit | 80f1ff97d0a9d92f44d2b2dd9425afa950e58f2b (patch) | |
tree | bee18bc88b112e75ca026b1a2b406f9f909e91bc /net | |
parent | a1bb73d76bc814e9385390e6aa9880d884322e2e (diff) | |
download | linux-3.10-80f1ff97d0a9d92f44d2b2dd9425afa950e58f2b.tar.gz linux-3.10-80f1ff97d0a9d92f44d2b2dd9425afa950e58f2b.tar.bz2 linux-3.10-80f1ff97d0a9d92f44d2b2dd9425afa950e58f2b.zip |
notifiers: cpu: move cpu notifiers into cpu.h
We presently define all kinds of notifiers in notifier.h. This is not
necessary at all, since different subsystems use different notifiers, they
are almost non-related with each other.
This can also save much build time. Suppose I add a new netdevice event,
really I don't have to recompile all the source, just network related.
Without this patch, all the source will be recompiled.
I move the notify events near to their subsystem notifier registers, so
that they can be found more easily.
This patch:
It is not necessary to share the same notifier.h.
Signed-off-by: WANG Cong <amwang@redhat.com>
Cc: David Miller <davem@davemloft.net>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/rds/page.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/rds/page.c b/net/rds/page.c index d8acdebe3c7..b82d63e77b0 100644 --- a/net/rds/page.c +++ b/net/rds/page.c @@ -32,6 +32,7 @@ */ #include <linux/highmem.h> #include <linux/gfp.h> +#include <linux/cpu.h> #include "rds.h" |