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>
This commit is contained in:
committed by
David S. Miller
parent
7d720c3e4f
commit
47d742752d
@@ -267,7 +267,7 @@ struct sge {
|
|||||||
struct sk_buff *espibug_skb[MAX_NPORTS];
|
struct sk_buff *espibug_skb[MAX_NPORTS];
|
||||||
u32 sge_control; /* shadow value of sge control reg */
|
u32 sge_control; /* shadow value of sge control reg */
|
||||||
struct sge_intr_counts stats;
|
struct sge_intr_counts stats;
|
||||||
struct sge_port_stats *port_stats[MAX_NPORTS];
|
struct sge_port_stats __percpu *port_stats[MAX_NPORTS];
|
||||||
struct sched *tx_sched;
|
struct sched *tx_sched;
|
||||||
struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp;
|
struct cmdQ cmdQ[SGE_CMDQ_N] ____cacheline_aligned_in_smp;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -72,7 +72,8 @@ struct pcpu_lstats {
|
|||||||
static netdev_tx_t loopback_xmit(struct sk_buff *skb,
|
static netdev_tx_t loopback_xmit(struct sk_buff *skb,
|
||||||
struct net_device *dev)
|
struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct pcpu_lstats *pcpu_lstats, *lb_stats;
|
struct pcpu_lstats __percpu *pcpu_lstats;
|
||||||
|
struct pcpu_lstats *lb_stats;
|
||||||
int len;
|
int len;
|
||||||
|
|
||||||
skb_orphan(skb);
|
skb_orphan(skb);
|
||||||
@@ -80,7 +81,7 @@ static netdev_tx_t loopback_xmit(struct sk_buff *skb,
|
|||||||
skb->protocol = eth_type_trans(skb, dev);
|
skb->protocol = eth_type_trans(skb, dev);
|
||||||
|
|
||||||
/* it's OK to use per_cpu_ptr() because BHs are off */
|
/* it's OK to use per_cpu_ptr() because BHs are off */
|
||||||
pcpu_lstats = dev->ml_priv;
|
pcpu_lstats = (void __percpu __force *)dev->ml_priv;
|
||||||
lb_stats = this_cpu_ptr(pcpu_lstats);
|
lb_stats = this_cpu_ptr(pcpu_lstats);
|
||||||
|
|
||||||
len = skb->len;
|
len = skb->len;
|
||||||
@@ -95,14 +96,14 @@ static netdev_tx_t loopback_xmit(struct sk_buff *skb,
|
|||||||
|
|
||||||
static struct net_device_stats *loopback_get_stats(struct net_device *dev)
|
static struct net_device_stats *loopback_get_stats(struct net_device *dev)
|
||||||
{
|
{
|
||||||
const struct pcpu_lstats *pcpu_lstats;
|
const struct pcpu_lstats __percpu *pcpu_lstats;
|
||||||
struct net_device_stats *stats = &dev->stats;
|
struct net_device_stats *stats = &dev->stats;
|
||||||
unsigned long bytes = 0;
|
unsigned long bytes = 0;
|
||||||
unsigned long packets = 0;
|
unsigned long packets = 0;
|
||||||
unsigned long drops = 0;
|
unsigned long drops = 0;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
pcpu_lstats = dev->ml_priv;
|
pcpu_lstats = (void __percpu __force *)dev->ml_priv;
|
||||||
for_each_possible_cpu(i) {
|
for_each_possible_cpu(i) {
|
||||||
const struct pcpu_lstats *lb_stats;
|
const struct pcpu_lstats *lb_stats;
|
||||||
|
|
||||||
@@ -135,19 +136,20 @@ static const struct ethtool_ops loopback_ethtool_ops = {
|
|||||||
|
|
||||||
static int loopback_dev_init(struct net_device *dev)
|
static int loopback_dev_init(struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct pcpu_lstats *lstats;
|
struct pcpu_lstats __percpu *lstats;
|
||||||
|
|
||||||
lstats = alloc_percpu(struct pcpu_lstats);
|
lstats = alloc_percpu(struct pcpu_lstats);
|
||||||
if (!lstats)
|
if (!lstats)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
dev->ml_priv = lstats;
|
dev->ml_priv = (void __force *)lstats;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void loopback_dev_free(struct net_device *dev)
|
static void loopback_dev_free(struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct pcpu_lstats *lstats = dev->ml_priv;
|
struct pcpu_lstats __percpu *lstats =
|
||||||
|
(void __percpu __force *)dev->ml_priv;
|
||||||
|
|
||||||
free_percpu(lstats);
|
free_percpu(lstats);
|
||||||
free_netdev(dev);
|
free_netdev(dev);
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ struct veth_net_stats {
|
|||||||
|
|
||||||
struct veth_priv {
|
struct veth_priv {
|
||||||
struct net_device *peer;
|
struct net_device *peer;
|
||||||
struct veth_net_stats *stats;
|
struct veth_net_stats __percpu *stats;
|
||||||
unsigned ip_summed;
|
unsigned ip_summed;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -263,7 +263,7 @@ static int veth_change_mtu(struct net_device *dev, int new_mtu)
|
|||||||
|
|
||||||
static int veth_dev_init(struct net_device *dev)
|
static int veth_dev_init(struct net_device *dev)
|
||||||
{
|
{
|
||||||
struct veth_net_stats *stats;
|
struct veth_net_stats __percpu *stats;
|
||||||
struct veth_priv *priv;
|
struct veth_priv *priv;
|
||||||
|
|
||||||
stats = alloc_percpu(struct veth_net_stats);
|
stats = alloc_percpu(struct veth_net_stats);
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ struct macvlan_dev {
|
|||||||
struct hlist_node hlist;
|
struct hlist_node hlist;
|
||||||
struct macvlan_port *port;
|
struct macvlan_port *port;
|
||||||
struct net_device *lowerdev;
|
struct net_device *lowerdev;
|
||||||
struct macvlan_rx_stats *rx_stats;
|
struct macvlan_rx_stats __percpu *rx_stats;
|
||||||
enum macvlan_mode mode;
|
enum macvlan_mode mode;
|
||||||
int (*receive)(struct sk_buff *skb);
|
int (*receive)(struct sk_buff *skb);
|
||||||
int (*forward)(struct net_device *dev, struct sk_buff *skb);
|
int (*forward)(struct net_device *dev, struct sk_buff *skb);
|
||||||
|
|||||||
Reference in New Issue
Block a user