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=-8.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 33D85C433B4 for ; Thu, 29 Apr 2021 14:59:48 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 8CB1761441 for ; Thu, 29 Apr 2021 14:59:45 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8CB1761441 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CE430411B4; Thu, 29 Apr 2021 16:59:44 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 85648406FF; Thu, 29 Apr 2021 16:59:42 +0200 (CEST) IronPort-SDR: i/WEqv3mqVpjGYZxsuYtQo9sgd+P8nRtRBKOnqKD7YFZTLJ1MOwOZnwj1VxFRQfyMNM+Vy++5F lvYtWJB+H6Xg== X-IronPort-AV: E=McAfee;i="6200,9189,9969"; a="184155350" X-IronPort-AV: E=Sophos;i="5.82,259,1613462400"; d="scan'208";a="184155350" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2021 07:59:41 -0700 IronPort-SDR: f3MeNAScqhQrmysIPI/nawMY5QYem3bwqdPiOn6yfQI10a+8YW4dBDYD3Eo3/otTb/vsM/MP3g bv5wx1pXpORw== X-IronPort-AV: E=Sophos;i="5.82,259,1613462400"; d="scan'208";a="526973045" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.208.65]) ([10.213.208.65]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2021 07:59:40 -0700 To: Jiawen Wu , dev@dpdk.org Cc: stable@dpdk.org References: <20210429103335.23060-1-jiawenwu@trustnetic.com> <20210429103335.23060-3-jiawenwu@trustnetic.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <2930eba7-611c-2a18-f5f3-525c2a259048@intel.com> Date: Thu, 29 Apr 2021 15:59:38 +0100 MIME-Version: 1.0 In-Reply-To: <20210429103335.23060-3-jiawenwu@trustnetic.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH v2 2/5] net/txgbe: fix VF MTU limit setting 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 Sender: "dev" On 4/29/2021 11:33 AM, Jiawen Wu wrote: > Add the dev_started check to remove the limitation of VF MTU setting. > When device is stopped, it is allowed to set MTU bigger than mbuf size. > Scattered rx may be enabled in next starting, exempt from setting in > EAL parameters. > I have reworded the commit log, can you please check in next-net if it is alright. > Fixes: a2beaa4a769e ("net/txgbe: support VF MTU update") > Cc: stable@dpdk.org > > Signed-off-by: Jiawen Wu <...>