-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 103338 b: refs/heads/master c: 7750f40 h: refs/heads/master v: v3
- Loading branch information
Patrick McHardy
authored and
David S. Miller
committed
Jul 8, 2008
1 parent
c3cbc75
commit 5e37ff5
Showing
6 changed files
with
73 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 75b8846acd11ad3fc736d4df3413fe946bbf367c | ||
refs/heads/master: 7750f403cbe56971336d575b354365190b4e3227 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# | ||
# Makefile for the Linux VLAN layer. | ||
# | ||
obj-$(subst m,y,$(CONFIG_VLAN_8021Q)) += vlan_core.o | ||
obj-$(CONFIG_VLAN_8021Q) += 8021q.o | ||
|
||
obj-$(CONFIG_VLAN_8021Q) += 8021q.o | ||
8021q-y := vlan.o vlan_dev.o vlan_netlink.o | ||
8021q-$(CONFIG_VLAN_8021Q_GVRP) += vlan_gvrp.o | ||
8021q-$(CONFIG_PROC_FS) += vlanproc.o | ||
|
||
8021q-y := vlan.o vlan_dev.o vlan_netlink.o | ||
8021q-$(CONFIG_VLAN_8021Q_GVRP) += vlan_gvrp.o | ||
8021q-$(CONFIG_PROC_FS) += vlanproc.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#include <linux/skbuff.h> | ||
#include <linux/netdevice.h> | ||
#include <linux/if_vlan.h> | ||
#include "vlan.h" | ||
|
||
/* VLAN rx hw acceleration helper. This acts like netif_{rx,receive_skb}(). */ | ||
int __vlan_hwaccel_rx(struct sk_buff *skb, struct vlan_group *grp, | ||
unsigned short vlan_tag, int polling) | ||
{ | ||
struct net_device_stats *stats; | ||
|
||
if (skb_bond_should_drop(skb)) { | ||
dev_kfree_skb_any(skb); | ||
return NET_RX_DROP; | ||
} | ||
|
||
skb->dev = vlan_group_get_device(grp, vlan_tag & VLAN_VID_MASK); | ||
if (skb->dev == NULL) { | ||
dev_kfree_skb_any(skb); | ||
/* Not NET_RX_DROP, this is not being dropped | ||
* due to congestion. */ | ||
return NET_RX_SUCCESS; | ||
} | ||
skb->dev->last_rx = jiffies; | ||
|
||
stats = &skb->dev->stats; | ||
stats->rx_packets++; | ||
stats->rx_bytes += skb->len; | ||
|
||
skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tag); | ||
switch (skb->pkt_type) { | ||
case PACKET_BROADCAST: | ||
break; | ||
case PACKET_MULTICAST: | ||
stats->multicast++; | ||
break; | ||
case PACKET_OTHERHOST: | ||
/* Our lower layer thinks this is not local, let's make sure. | ||
* This allows the VLAN to have a different MAC than the | ||
* underlying device, and still route correctly. */ | ||
if (!compare_ether_addr(eth_hdr(skb)->h_dest, | ||
skb->dev->dev_addr)) | ||
skb->pkt_type = PACKET_HOST; | ||
break; | ||
}; | ||
return (polling ? netif_receive_skb(skb) : netif_rx(skb)); | ||
} | ||
EXPORT_SYMBOL(__vlan_hwaccel_rx); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters