diff options
author | Tejun Heo <tj@kernel.org> | 2010-02-16 10:21:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-17 02:05:38 -0500 |
commit | 47d742752df4c1088589d4424840bc761613ab2a (patch) | |
tree | 186eec2c69a1f7149e08d354c36a34c21b58fa4f /drivers/net/chelsio | |
parent | 7d720c3e4f0c4fc152a6bf17e24244a3c85412d2 (diff) |
percpu: add __percpu sparse annotations to net drivers
Add __percpu sparse annotations to net drivers.
These annotations are to make sparse consider percpu variables to be
in a different address space and warn if accessed without going
through percpu accessors. This patch doesn't affect normal builds.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: David S. Miller <davem@davemloft.net>
Cc: Eric Dumazet <eric.dumazet@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/chelsio')
-rw-r--r-- | drivers/net/chelsio/sge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/chelsio/sge.c b/drivers/net/chelsio/sge.c index 109d2783e4d8..8e12505ac3aa 100644 --- a/drivers/net/chelsio/sge.c +++ b/drivers/net/chelsio/sge.c | |||
@@ -267,7 +267,7 @@ struct sge { | |||
267 | struct sk_buff *espibug_skb[MAX_NPORTS]; | 267 | struct sk_buff *espibug_skb[MAX_NPORTS]; |
268 | u32 sge_control; /* shadow value of sge control reg */ | 268 | u32 sge_control; /* shadow value of sge control reg */ |
269 | struct sge_intr_counts stats; | 269 | struct sge_intr_counts stats; |
270 | struct sge_port_stats *port_stats[MAX_NPORTS]; | 270 | struct sge_port_stats __percpu *port_stats[MAX_NPORTS]; |
271 | struct sched *tx_sched; | 271 | struct sched *tx_sched; |
272 | struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp; | 272 | struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp; |
273 | }; | 273 | }; |