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 C9079A0032; Fri, 21 Oct 2022 09:53:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE66E4281C; Fri, 21 Oct 2022 09:53:12 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id E2577400D6 for ; Fri, 21 Oct 2022 09:53:11 +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 (4096 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 541F769; Fri, 21 Oct 2022 10:53:11 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 541F769 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1666338791; bh=MYH0vYNa+RfIOrdLEIh17MKL7e2Tz704OhEdocK24jo=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=V5bRnUnqzklY5fh8CSlOOVk63GZ/c3IEc+EYNQOISpDgwXh5JVkWo4pDdE4fvGQtK 3rezZMqvdtASUa6EwR6F0gIsY/88Y1hNeNaJzlYLUexGPSzCpODC1W/LthCRqUtMz+ SamEhHWJ3nLSB1uvuvOOugKQ+MVk1org1ZKPKAHg= Message-ID: Date: Fri, 21 Oct 2022 10:53:10 +0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.3.0 Subject: Re: [PATCH v9 05/14] net/idpf: add support for queue start and stop Content-Language: en-US To: Junfeng Guo , qi.z.zhang@intel.com, jingjing.wu@intel.com, beilei.xing@intel.com Cc: dev@dpdk.org, Xiaoyun Li References: <20221020062951.645121-2-junfeng.guo@intel.com> <20221021051821.2164939-1-junfeng.guo@intel.com> <20221021051821.2164939-6-junfeng.guo@intel.com> From: Andrew Rybchenko Organization: OKTET Labs In-Reply-To: <20221021051821.2164939-6-junfeng.guo@intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit 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 10/21/22 08:18, Junfeng Guo wrote: > Add support for queue operations: > - rx_queue_start > - rx_queue_stop > - tx_queue_start > - tx_queue_stop Qeueues start/stop are required for deferred start. So, before the patch device start must simply start all setup queues which should reject deferred_start request in queue configuration.