From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 55DE2C433B4 for ; Thu, 15 Apr 2021 07:00:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1FA4A61249 for ; Thu, 15 Apr 2021 07:00:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231254AbhDOHAj (ORCPT ); Thu, 15 Apr 2021 03:00:39 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:16593 "EHLO szxga04-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231217AbhDOHAf (ORCPT ); Thu, 15 Apr 2021 03:00:35 -0400 Received: from DGGEMS406-HUB.china.huawei.com (unknown [172.30.72.58]) by szxga04-in.huawei.com (SkyGuard) with ESMTP id 4FLVXc3LMpz18JTV; Thu, 15 Apr 2021 14:57:52 +0800 (CST) Received: from [10.174.177.26] (10.174.177.26) by DGGEMS406-HUB.china.huawei.com (10.3.19.206) with Microsoft SMTP Server id 14.3.498.0; Thu, 15 Apr 2021 15:00:02 +0800 From: jin yiting To: Jay Vosburgh , Veaceslav Falico , Andy Gospodarek , "David S. Miller" , Jakub Kicinski , , , Subject: bonding: 3ad: update slave arr after initialize CC: Xuhanbing , "wangxiaogang (F)" Message-ID: <0647a502-f54c-30ad-5b5f-c94948f092c8@huawei.com> Date: Thu, 15 Apr 2021 14:59:49 +0800 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.9.0 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 8bit X-Originating-IP: [10.174.177.26] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From 71e63af579edd15ad7f7395760a19f67d9a1d7d3 Mon Sep 17 00:00:00 2001 From: jin yiting Date: Wed, 31 Mar 2021 20:38:40 +0800 Subject: [PATCH] bonding: 3ad: update slave arr after initialize MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bond works in mode 4, and performs down/up operations on the bond that is normally negotiated. The probability of bond-> slave_arr is NULL Test commands:     ifconfig bond1 down     ifconfig bond1 up The conflict occurs in the following process: __dev_open (CPU A)  --bond_open    --queue_delayed_work(bond->wq,&bond->ad_work,0);    --bond_update_slave_arr      --bond_3ad_get_active_agg_info ad_work(CPU B)  --bond_3ad_state_machine_handler    --ad_agg_selection_logic ad_work runs on cpu B. In the function ad_agg_selection_logic, all agg->is_active will be cleared. Before the new active aggregator is selected on CPU B, bond_3ad_get_active_agg_info failed on CPU A, bond->slave_arr will be set to NULL. The best aggregator in ad_agg_selection_logic has not changed, no need to update slave arr. Signed-off-by: jin yiting ---  drivers/net/bonding/bond_3ad.c | 6 ++++++  1 file changed, 6 insertions(+) diff --git a/drivers/net/bonding/bond_3ad.c b/drivers/net/bonding/bond_3ad.c index 6908822..d100079 100644 --- a/drivers/net/bonding/bond_3ad.c +++ b/drivers/net/bonding/bond_3ad.c @@ -2327,6 +2327,12 @@ void bond_3ad_state_machine_handler(struct work_struct *work)             aggregator = __get_first_agg(port);             ad_agg_selection_logic(aggregator, &update_slave_arr); +           if (!update_slave_arr) { +               struct aggregator *active = __get_active_agg(aggregator); + +               if (active && active->is_active) +                   update_slave_arr = true; +           }         }         bond_3ad_set_carrier(bond);     } -- 1.7.12.4