summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Herbert <therbert@google.com>2010-03-18 17:45:44 -0700
committerDavid S. Miller <davem@davemloft.net>2010-03-18 17:45:44 -0700
commit1e94d72feab025b8f7c55d07020602f82f3a97dd (patch)
treef8d38b4fa5b51046e1bbcaf8f3fc88edc2052cae /include
parenta034016287236f435dbb8f1f57aee906f22b4598 (diff)
rps: Fixed build with CONFIG_SMP not enabled.
Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netdevice.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index de1a52bcb9e..726ecd1af53 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1341,7 +1341,9 @@ struct softnet_data {
struct sk_buff *completion_queue;
/* Elements below can be accessed between CPUs for RPS */
+#ifdef CONFIG_SMP
struct call_single_data csd ____cacheline_aligned_in_smp;
+#endif
struct sk_buff_head input_pkt_queue;
struct napi_struct backlog;
};