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 3CB90A04B5 for ; Tue, 27 Oct 2020 15:39:40 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 01E2F5AB2; Tue, 27 Oct 2020 15:39:39 +0100 (CET) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by dpdk.org (Postfix) with ESMTP id E0500592B; Tue, 27 Oct 2020 15:39:34 +0100 (CET) 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) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 8B28C7F502; Tue, 27 Oct 2020 17:39:33 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 8B28C7F502 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1603809573; bh=xLIO3soC2rMYEuv+pZFiw9RQ8Zp2H8an3W4hLphrHF0=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=OahHXfnRObdVR35DM3yCx/1Y3fPof7pB3SJvaILYsEmJpcy4aYMoxGk6GGrWlS7Tp XUgGcruZR3FKEvYSXvIjG6edlfYL59eWoU0wxzmX0DMGZarHtJ25p3fWbt7U2eT/2Z PES/CVDx0SWi4DPEjGNnGm9tIhslQtnKlk+znEKw= To: Thomas Monjalon , dev@dpdk.org Cc: stable@dpdk.org, Ferruh Yigit , Qi Zhang , Konstantin Ananyev References: <20201027132022.2308478-1-thomas@monjalon.net> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <85854098-6e0d-55a8-d438-549d840e7318@oktetlabs.ru> Date: Tue, 27 Oct 2020 17:39:33 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 MIME-Version: 1.0 In-Reply-To: <20201027132022.2308478-1-thomas@monjalon.net> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-stable] [PATCH] ethdev: move non-offload capabilities 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/27/20 4:20 PM, Thomas Monjalon wrote: > The definitions of RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP > and RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP were inserted > before the last comment of Tx offloads. > > It is moved in a better place, > with comments moved to be before the definition. > A group comment is added to better describe device capabilities. > > Fixes: cac923cfea47 ("ethdev: support runtime queue setup") > Cc: stable@dpdk.org > > Signed-off-by: Thomas Monjalon Acked-by: Andrew Rybchenko