summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2010-09-14 21:41:20 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-09-26 17:18:12 -0700
commit515b723e04cb4df7f96c59dee019d126df707fc0 (patch)
tree112d9a153d25e3c83f072f8bbcb9110ab3ed6e38
parent3289b85e643814c06b3196bafeda3a44d4d75fe8 (diff)
net: RPS needs to depend upon USE_GENERIC_SMP_HELPERS
[ Upstream commit 6dcbc12290abb452a5e42713faa6461b248e2f55 ] You cannot invoke __smp_call_function_single() unless the architecture sets this symbol. Reported-by: Daniel Hellstrom <daniel@gaisler.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--net/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/Kconfig b/net/Kconfig
index 0d68b40fc0e..a44092e90e8 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -206,7 +206,7 @@ source "net/dcb/Kconfig"
config RPS
boolean
- depends on SMP && SYSFS
+ depends on SMP && SYSFS && USE_GENERIC_SMP_HELPERS
default y
menu "Network testing"