From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CD63BA04B7; Wed, 14 Oct 2020 13:43:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D74E91DD71; Wed, 14 Oct 2020 13:43:44 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 609CC1DE3A for ; Wed, 14 Oct 2020 13:43:42 +0200 (CEST) IronPort-SDR: qs+hYcYA5dxz0HTdm5iL3WdL0xfSnh22Cq14mqmcJvYL3eXOSNHSDjt9ffqs7UbR6FTqEAcRue HvjD61AIsefA== X-IronPort-AV: E=McAfee;i="6000,8403,9773"; a="165299007" X-IronPort-AV: E=Sophos;i="5.77,374,1596524400"; d="scan'208";a="165299007" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2020 04:43:41 -0700 IronPort-SDR: j0vm2FULLTImkiQmFNpUzqXzwcOTNfitdvm6gu4Xzc9YVZ8HKZRSEtoZYvXd9C0mPI3bTiZFsJ eMBFu2PvKE+w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,374,1596524400"; d="scan'208";a="420833064" Received: from fmsmsx604.amr.corp.intel.com ([10.18.126.84]) by fmsmga001.fm.intel.com with ESMTP; 14 Oct 2020 04:43:41 -0700 Received: from shsmsx603.ccr.corp.intel.com (10.109.6.143) by fmsmsx604.amr.corp.intel.com (10.18.126.84) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Wed, 14 Oct 2020 04:43:40 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX603.ccr.corp.intel.com (10.109.6.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Wed, 14 Oct 2020 19:43:38 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.1713.004; Wed, 14 Oct 2020 19:43:38 +0800 From: "Zhang, Qi Z" To: "Yang, SteveX" , "dev@dpdk.org" CC: "Guo, Jia" , "Yang, Qiming" , "Wu, Jingjing" , "Xing, Beilei" , "Ananyev, Konstantin" , "Yang, SteveX" Thread-Topic: [PATCH v5 0/5] fix default max mtu size when device configured Thread-Index: AQHWogtj2nlrxKOKPEivQWKEqS4l9KmW9iFA Date: Wed, 14 Oct 2020 11:43:38 +0000 Message-ID: <4949691a59b54ded8bd9979e7ce836bd@intel.com> References: <20200928065541.7520-1-stevex.yang@intel.com> <20201014091945.1934-1-stevex.yang@intel.com> In-Reply-To: <20201014091945.1934-1-stevex.yang@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.108.32.68] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v5 0/5] fix default max mtu size when device configured X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" > -----Original Message----- > From: SteveX Yang > Sent: Wednesday, October 14, 2020 5:20 PM > To: dev@dpdk.org > Cc: Guo, Jia ; Yang, Qiming ; > Zhang, Qi Z ; Wu, Jingjing ; > Xing, Beilei ; Ananyev, Konstantin > ; Yang, SteveX > Subject: [PATCH v5 0/5] fix default max mtu size when device configured >=20 > when application presets the max rx packet length and expected mtu at the > same time, driver need identify if the preset max frame size can hold mtu= data > and Ether overhead completely. >=20 > if not, adjust the max frame size via mtu_set ops within dev_configure. >=20 > v5: > * update comments and commit messages; > v4: > * add the adjust condition for max_rx_pkt_len; > v3: > * change the i40evf relative code; > v2: > * change the max_rx_pkt_len via mtu_set ops; >=20 > SteveX Yang (5): > net/e1000: fix max mtu size packets with vlan tag cannot be received > by default > net/igc: fix max mtu size packets with vlan tag cannot be received by > default > net/ice: fix max mtu size packets with vlan tag cannot be received by > default > net/i40e: fix max mtu size packets with vlan tag cannot be received by > default > net/iavf: fix max mtu size packets with vlan tag cannot be received by > default >=20 > drivers/net/e1000/em_ethdev.c | 12 ++++++++++++ > drivers/net/i40e/i40e_ethdev.c | 11 +++++++++++ > drivers/net/i40e/i40e_ethdev_vf.c | 13 ++++++++++++- > drivers/net/iavf/iavf_ethdev.c | 12 ++++++++++++ > drivers/net/ice/ice_ethdev.c | 11 +++++++++++ > drivers/net/igc/igc_ethdev.c | 13 ++++++++++++- > 6 files changed, 70 insertions(+), 2 deletions(-) >=20 > -- > 2.17.1 Acked-by: Qi Zhang Applied to dpdk-next-net-intel. Thanks Qi