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 EB54AA034F; Mon, 11 Oct 2021 15:23:28 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D90BD40E50; Mon, 11 Oct 2021 15:23:28 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 5099640150 for ; Mon, 11 Oct 2021 15:23:28 +0200 (CEST) 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 (2048 bits)) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 027267F567; Mon, 11 Oct 2021 16:23:28 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 027267F567 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1633958608; bh=0AxAUqgPKbkoWtjsihHi2L/rg72UuxtBnsbNtxywblw=; h=Subject:From:To:Cc:References:Date:In-Reply-To; b=qvzCaLy7YdRZeQtMte8iHZu7kYYd+xemQrY39id1AvraXdyUKsEq6fM4gVCd0yGWY lqzyTiwvoFTa3ekYNhMDfrkIxHmC2N8U6cSTkuE3/0FUjEXTVaKWyLtcx++9GmGrzs mrGzCl221TlUStkVxWUQ3tGcoOaPmXbslI/nfISM= From: Andrew Rybchenko To: Ferruh Yigit , Ray Kinsella , Haiyue Wang , Qi Zhang , Xiao Wang , Beilei Xing , Jerin Jacob , Nithin Dabilpuram , Kiran Kumar K , Maxime Coquelin , Chenbo Xia , Thomas Monjalon Cc: dev@dpdk.org References: <20210928154856.1015020-1-andrew.rybchenko@oktetlabs.ru> <9b5b19c0-aa85-3502-0718-81e5f33a03f4@oktetlabs.ru> Organization: OKTET Labs Message-ID: <4846eca4-4b70-1ff9-9886-eb80a4bb1974@oktetlabs.ru> Date: Mon, 11 Oct 2021 16:23:27 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <9b5b19c0-aa85-3502-0718-81e5f33a03f4@oktetlabs.ru> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH] ethdev: remove legacy Rx descriptor done API 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 10/6/21 12:09 PM, Andrew Rybchenko wrote: > On 10/6/21 11:51 AM, Ferruh Yigit wrote: >> On 9/28/2021 4:48 PM, Andrew Rybchenko wrote: >>> diff --git a/drivers/net/virtio/virtio_ethdev.c >>> b/drivers/net/virtio/virtio_ethdev.c >>> index da1633d77e..c82089930f 100644 >>> --- a/drivers/net/virtio/virtio_ethdev.c >>> +++ b/drivers/net/virtio/virtio_ethdev.c >>> @@ -1894,7 +1894,6 @@ eth_virtio_dev_init(struct rte_eth_dev *eth_dev) >>>       } >>>         eth_dev->dev_ops = &virtio_eth_dev_ops; >>> -    eth_dev->rx_descriptor_done = virtio_dev_rx_queue_done; >> >> Checking twice, should 'virtio_dev_rx_queue_done()' declaration and >> definition be removed? >> It seems there is no user of the function except here. > > Yes, I lost it from my view. > Fixed in v2.