X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=net%2Fbridge%2Fbr_forward.c;h=bdd9ccea17ceb992a956453f8c9611c5ed92c244;hb=04489eeb02a40bc15029886cef7285ada3ab0de6;hp=a4711674b3df0470b53855b6ff5e2523a1958603;hpb=43154d08d6bb5c69aa0d0e3448fb348b4cd84e91;p=linux-2.6 diff --git a/net/bridge/br_forward.c b/net/bridge/br_forward.c index a4711674b3..bdd9ccea17 100644 --- a/net/bridge/br_forward.c +++ b/net/bridge/br_forward.c @@ -5,8 +5,6 @@ * Authors: * Lennert Buytenhek * - * $Id: br_forward.c,v 1.4 2001/08/14 22:05:57 davem Exp $ - * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version @@ -91,7 +89,7 @@ void br_deliver(const struct net_bridge_port *to, struct sk_buff *skb) /* called with rcu_read_lock */ void br_forward(const struct net_bridge_port *to, struct sk_buff *skb) { - if (should_deliver(to, skb)) { + if (!skb_warn_if_lro(skb) && should_deliver(to, skb)) { __br_forward(to, skb); return; }