summaryrefslogtreecommitdiffstats
path: root/drivers/net/cpmac.c
diff options
context:
space:
mode:
authorPavel Emelyanov2007-10-22 02:01:29 +0200
committerDavid S. Miller2007-10-22 11:59:56 +0200
commit4e3ab47a547616e583c7a5458beced6aa34c8ef3 (patch)
treeb889a8a472c657f706f91c4831c2fd5ee19f6a4e /drivers/net/cpmac.c
parent[NET]: Use the skb_set_queue_mapping where appropriate (diff)
downloadkernel-qcow2-linux-4e3ab47a547616e583c7a5458beced6aa34c8ef3.tar.gz
kernel-qcow2-linux-4e3ab47a547616e583c7a5458beced6aa34c8ef3.tar.xz
kernel-qcow2-linux-4e3ab47a547616e583c7a5458beced6aa34c8ef3.zip
[NET]: Make and use skb_get_queue_mapping
Make the helper for getting the field, symmetrical to the "set" one. Return 0 if CONFIG_NETDEVICES_MULTIQUEUE=n Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/cpmac.c')
-rw-r--r--drivers/net/cpmac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/cpmac.c b/drivers/net/cpmac.c
index ed53aaab4c02..ae419736158e 100644
--- a/drivers/net/cpmac.c
+++ b/drivers/net/cpmac.c
@@ -471,7 +471,7 @@ static int cpmac_start_xmit(struct sk_buff *skb, struct net_device *dev)
}
len = max(skb->len, ETH_ZLEN);
- queue = skb->queue_mapping;
+ queue = skb_get_queue_mapping(skb);
#ifdef CONFIG_NETDEVICES_MULTIQUEUE
netif_stop_subqueue(dev, queue);
#else