Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 223627
b: refs/heads/master
c: f88a4a9
h: refs/heads/master
i:
  223625: b9de6b1
  223623: a344ad6
v: v3
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Dec 16, 2010
1 parent a5c3867 commit 00b665d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ffa95ed50f9fb2d8faaa6bd73086a7056ea46a06
refs/heads/master: f88a4a9b65a6f3422b81be995535d0e69df11bb8
7 changes: 6 additions & 1 deletion trunk/drivers/net/bonding/bond_ipv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ static void bond_na_send(struct net_device *slave_dev,
}

if (vlan_id) {
skb = vlan_put_tag(skb, vlan_id);
/* The Ethernet header is not present yet, so it is
* too early to insert a VLAN tag. Force use of an
* out-of-line tag here and let dev_hard_start_xmit()
* insert it if the slave hardware can't.
*/
skb = __vlan_hwaccel_put_tag(skb, vlan_id);
if (!skb) {
pr_err("failed to insert VLAN tag\n");
return;
Expand Down

0 comments on commit 00b665d

Please sign in to comment.