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 0E064A04C0 for ; Fri, 9 Oct 2020 16:39:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CC53C1D6FE; Fri, 9 Oct 2020 16:39:54 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 413D11D6EE; Fri, 9 Oct 2020 16:39:50 +0200 (CEST) IronPort-SDR: JOWCO6JZcsNUoq8CrPoG2JWkiu30ZBRGC1rjYKsFYQmT25heSCmvSoub94Z6GlF/t72jjEuauE 2yo3tRMtSPww== X-IronPort-AV: E=McAfee;i="6000,8403,9768"; a="144812364" X-IronPort-AV: E=Sophos;i="5.77,355,1596524400"; d="scan'208";a="144812364" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Oct 2020 07:39:48 -0700 IronPort-SDR: RDNFOzGBdXUehGnCrGaFkGxHjYP63gvjbaJnspLbNtzrwMXzwV1XwKbmLnxe6v0IUDQXcltLpY UM8xhuSF/v9A== X-IronPort-AV: E=Sophos;i="5.77,355,1596524400"; d="scan'208";a="462214643" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.252.18.7]) ([10.252.18.7]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Oct 2020 07:39:46 -0700 To: Aideen McLoughlin Cc: dev@dpdk.org, stable@dpdk.org, Muthurajan Jayakumar References: <20201008113425.241010-1-ferruh.yigit@intel.com> From: Ferruh Yigit Message-ID: <5189fdc9-c9fb-0ee5-3238-ac4a07e705c9@intel.com> Date: Fri, 9 Oct 2020 15:39:43 +0100 MIME-Version: 1.0 In-Reply-To: <20201008113425.241010-1-ferruh.yigit@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-stable] [PATCH] net/pcap: fix input only Rx X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On 10/8/2020 12:34 PM, Ferruh Yigit wrote: > When input only Rx interface argument 'rx_iface_in' provided, current > code assigns 'eth_null_rx' burst function by mistake and no packet > received as a result. > Like in following usage no packets received from physical interface: > "--vdev net_pcap0,rx_iface_in=eth0,tx_iface=eth0" > > Fixing the burst function assignment when 'rx_iface_in' argument is used > > Fixes: f14a94591504 ("net/pcap: remove Rx queue argument necessity") > Cc: stable@dpdk.org > > Reported-by: Muthurajan Jayakumar > Signed-off-by: Ferruh Yigit Applied to dpdk-next-net/main, thanks.