blob: 68df12d3664b56fc68926385f517b1be52d4f8cc [file] [log] [blame]
Patrick McHardy7750f402008-07-08 03:23:36 -07001#include <linux/skbuff.h>
2#include <linux/netdevice.h>
3#include <linux/if_vlan.h>
4#include "vlan.h"
5
6/* VLAN rx hw acceleration helper. This acts like netif_{rx,receive_skb}(). */
7int __vlan_hwaccel_rx(struct sk_buff *skb, struct vlan_group *grp,
Patrick McHardy9bb85822008-07-08 03:24:44 -07008 u16 vlan_tci, int polling)
Patrick McHardy7750f402008-07-08 03:23:36 -07009{
10 struct net_device_stats *stats;
11
12 if (skb_bond_should_drop(skb)) {
13 dev_kfree_skb_any(skb);
14 return NET_RX_DROP;
15 }
16
Patrick McHardy9bb85822008-07-08 03:24:44 -070017 skb->dev = vlan_group_get_device(grp, vlan_tci & VLAN_VID_MASK);
Patrick McHardy7750f402008-07-08 03:23:36 -070018 if (skb->dev == NULL) {
19 dev_kfree_skb_any(skb);
20 /* Not NET_RX_DROP, this is not being dropped
21 * due to congestion. */
22 return NET_RX_SUCCESS;
23 }
24 skb->dev->last_rx = jiffies;
25
26 stats = &skb->dev->stats;
27 stats->rx_packets++;
28 stats->rx_bytes += skb->len;
29
Patrick McHardy9bb85822008-07-08 03:24:44 -070030 skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tci);
Patrick McHardy7750f402008-07-08 03:23:36 -070031 switch (skb->pkt_type) {
32 case PACKET_BROADCAST:
33 break;
34 case PACKET_MULTICAST:
35 stats->multicast++;
36 break;
37 case PACKET_OTHERHOST:
38 /* Our lower layer thinks this is not local, let's make sure.
39 * This allows the VLAN to have a different MAC than the
40 * underlying device, and still route correctly. */
41 if (!compare_ether_addr(eth_hdr(skb)->h_dest,
42 skb->dev->dev_addr))
43 skb->pkt_type = PACKET_HOST;
44 break;
45 };
46 return (polling ? netif_receive_skb(skb) : netif_rx(skb));
47}
48EXPORT_SYMBOL(__vlan_hwaccel_rx);
Patrick McHardy22d1ba72008-07-08 03:23:57 -070049
50struct net_device *vlan_dev_real_dev(const struct net_device *dev)
51{
52 return vlan_dev_info(dev)->real_dev;
53}
54EXPORT_SYMBOL_GPL(vlan_dev_real_dev);
55
56u16 vlan_dev_vlan_id(const struct net_device *dev)
57{
58 return vlan_dev_info(dev)->vlan_id;
59}
60EXPORT_SYMBOL_GPL(vlan_dev_vlan_id);