From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A4162A00C4; Sun, 6 Nov 2022 10:45:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 36AC840691; Sun, 6 Nov 2022 10:45:38 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 663254003C for ; Sun, 6 Nov 2022 10:45:37 +0100 (CET) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id D9D2362; Sun, 6 Nov 2022 12:45:35 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru D9D2362 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1667727935; bh=Os2BLvbd2WmU8gGQTlJlvly16eLiEN4fS7vkB1NUOTs=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=K21O09BQSJZGAFInZec4vmf59Tmg/DItSMGUWbL2R58BkxRO+TolWV1eld1vyc+fb urrQ2tch0anykfzWF2XbGz2ffm341hweI9XBy8nGKVztdUiCGHdqjkdmPtkB1fCUZd aQ2xqRGc5BcdsfoSr7OtiiNeEw9H6fIKNQRmHiaM= Message-ID: Date: Sun, 6 Nov 2022 12:45:35 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.0 Subject: Re: [PATCH] net/bonding: fix slave device Rx/Tx offload configuration Content-Language: en-US To: "humin (Q)" , Huisong Li , dev@dpdk.org Cc: ferruh.yigit@amd.com, liudongdong3@huawei.com, huangdaode@huawei.com References: <20221028023646.32585-1-lihuisong@huawei.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On 11/1/22 05:34, humin (Q) wrote: > 在 2022/10/28 10:36, Huisong Li 写道: >> Normally, the Rx/Tx offload capability of bonding interface is >> the intersection of the capability of all slave devices. And >> Rx/Tx offloads configuration of slave device comes from bonding >> interface. But now there is a risk that slave device retains its >> previous offload configurations which is not within the offload >> configurations of bond interface. >> >> Fixes: 57b156540f51 ("net/bonding: fix offloading configuration") >> Cc: stable@dpdk.org >> >> Signed-off-by: Huisong Li > > Acked-by: Min Hu (Connor) Applied to dpdk-next-net/main, thanks.