| Submitter | Changli Gao |
|---|---|
| Date | April 13, 2010, 2:36 p.m. |
| Message ID | <1271169406-8115-1-git-send-email-xiaosuo@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/50024/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
CONFIG_SMP should be CONFIG_RPS
CONFIG_SMP should be CONFIG_RPS
Signed-off-by: Changli Gao <xiaosuo@gmail.com>
----
include/linux/netdevice.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
From: Eric Dumazet <eric.dumazet@gmail.com> Date: Tue, 13 Apr 2010 08:59:07 +0200 > Thanks Changli, this is part of RFS patches :) > I'll apply this, Tom has to respin RFS for other reasons already... -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index d1a21b5..0efb36e 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1331,7 +1331,7 @@ struct softnet_data { struct sk_buff *completion_queue; /* Elements below can be accessed between CPUs for RPS */ -#ifdef CONFIG_SMP +#ifdef CONFIG_RPS struct call_single_data csd ____cacheline_aligned_in_smp; #endif struct sk_buff_head input_pkt_queue;