Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9259
b: refs/heads/master
c: 2a7bc3c
h: refs/heads/master
i:
  9257: 3ed1ba1
  9255: cceb77b
v: v3
  • Loading branch information
Vlad Drukker authored and David S. Miller committed Sep 23, 2005
1 parent 874483c commit 901709b
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 83ca28befc43e93849e79c564cda10e39d983e75
refs/heads/master: 2a7bc3c94cbca32d3d6e03e7d5a71662f591d28a
3 changes: 2 additions & 1 deletion trunk/net/bridge/br_forward.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ static inline int should_deliver(const struct net_bridge_port *p,

int br_dev_queue_push_xmit(struct sk_buff *skb)
{
if (skb->len > skb->dev->mtu)
/* drop mtu oversized packets except tso */
if (skb->len > skb->dev->mtu && !skb_shinfo(skb)->tso_size)
kfree_skb(skb);
else {
#ifdef CONFIG_BRIDGE_NETFILTER
Expand Down

0 comments on commit 901709b

Please sign in to comment.