diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-11-06 23:06:44 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-06 23:06:44 -0800 |
commit | 76acfdb9b78acf73023307974f6d38a269e9967a (patch) | |
tree | dcf9c5ee0f36c9c5eba75ee08347796abf843c34 /net/core/flow.c | |
parent | 9eeda9abd1faf489f3df9a1f557975f4c8650363 (diff) | |
download | linux-76acfdb9b78acf73023307974f6d38a269e9967a.tar.gz linux-76acfdb9b78acf73023307974f6d38a269e9967a.tar.bz2 linux-76acfdb9b78acf73023307974f6d38a269e9967a.zip |
net: mark flow_cache_cpu_prepare() as __init
It's called from __init code only. And__devinit in generic networking code
is pretty strange :^)
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/flow.c')
-rw-r--r-- | net/core/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/flow.c b/net/core/flow.c index 5cf81052d044..d323388dd1ba 100644 --- a/net/core/flow.c +++ b/net/core/flow.c @@ -307,7 +307,7 @@ void flow_cache_flush(void) put_online_cpus(); } -static void __devinit flow_cache_cpu_prepare(int cpu) +static void __init flow_cache_cpu_prepare(int cpu) { struct tasklet_struct *tasklet; unsigned long order; |