Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 210269
b: refs/heads/master
c: 87f94b4
h: refs/heads/master
i:
  210267: 9fb941a
v: v3
  • Loading branch information
David S. Miller committed Sep 2, 2010
1 parent 6f630ae commit 9f26ee4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 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: 24cd804d1dc60a74c53da983094df3516500c276
refs/heads/master: 87f94b4e91dc042620c527f3c30c37e5127ef757
6 changes: 4 additions & 2 deletions trunk/net/bridge/br_netfilter.c
Original file line number Diff line number Diff line change
Expand Up @@ -761,9 +761,11 @@ static int br_nf_dev_queue_xmit(struct sk_buff *skb)
{
if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
!skb_is_gso(skb))
!skb_is_gso(skb)) {
/* BUG: Should really parse the IP options here. */
memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
return ip_fragment(skb, br_dev_queue_push_xmit);
else
} else
return br_dev_queue_push_xmit(skb);
}
#else
Expand Down

0 comments on commit 9f26ee4

Please sign in to comment.