[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20140804061322.GA9348@mikrodark.usersys.redhat.com>
Date: Mon, 4 Aug 2014 08:13:23 +0200
From: Veaceslav Falico <vfalico@...il.com>
To: lichunhe@...wei.com
Cc: j.vosburgh@...il.com, andy@...yhouse.net,
linux-kernel@...r.kernel.org, dingtianhong@...wei.com,
qianhuibin@...wei.com
Subject: Re: [PATCH net/net-next] bonding:Don't received packets if bonding
is not up
On Mon, Aug 04, 2014 at 11:15:13AM +0800, lichunhe@...wei.com wrote:
>From: Chunhe Li <lichunhe@...wei.com>
>
>If the bonding device is down, it should not receive packets
>to network stack or other upper flow stack.
This breaks arp monitoring and 802.3ad modes, as they won't ever come up.
Also, please cc netdev next times.
>
>Signed-off-by: Chunhe Li <lichunhe@...wei.com>
>---
> drivers/net/bonding/bond_main.c | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
>diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
>index 701f86c..48a127b 100644
>--- a/drivers/net/bonding/bond_main.c
>+++ b/drivers/net/bonding/bond_main.c
>@@ -1110,6 +1110,12 @@ static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
> int (*recv_probe)(const struct sk_buff *, struct bonding *,
> struct slave *);
> int ret = RX_HANDLER_ANOTHER;
>+
>+ slave = bond_slave_get_rcu(skb->dev);
>+ bond = slave->bond;
>+
>+ if (unlikely(!(bond->dev->flags & IFF_UP)))
>+ return RX_HANDLER_PASS;
>
> skb = skb_share_check(skb, GFP_ATOMIC);
> if (unlikely(!skb))
>@@ -1117,9 +1123,6 @@ static rx_handler_result_t bond_handle_frame(struct sk_buff **pskb)
>
> *pskb = skb;
>
>- slave = bond_slave_get_rcu(skb->dev);
>- bond = slave->bond;
>-
> recv_probe = ACCESS_ONCE(bond->recv_probe);
> if (recv_probe) {
> ret = recv_probe(skb, bond, slave);
>--
>1.9.2.0
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists