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 219B4A0548; Sat, 16 Oct 2021 09:57:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A046040040; Sat, 16 Oct 2021 09:57:18 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id EAC524003F for ; Sat, 16 Oct 2021 09:57:17 +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) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 6784F7F502; Sat, 16 Oct 2021 10:57:17 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 6784F7F502 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1634371037; bh=9yUXIkA1+y2bRT0wDWZW5PmcG04bnFWbgIkvZFT+NHI=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=cl0+vt9hx67h9JQ7mPa+imizAmGX362ZNn42phVRhy//+3cOdIHN4fku6itBbCXcV NQ8lmBMWVrzQazcUoIRseABgHFEg0joSN/x/FdEJZsIjS8z9UOxob5iBggvFhC0Z8U opKEa6fGDZ4fpG1+ChX7QytIYH4iap3xWNgxJDfI= To: Olivier Matz , dev@dpdk.org Cc: David Marchand References: <20210929214817.18082-1-olivier.matz@6wind.com> <20211015192408.21798-1-olivier.matz@6wind.com> <20211015192408.21798-5-olivier.matz@6wind.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <441caa54-4870-3d3f-773d-28c391b1c32b@oktetlabs.ru> Date: Sat, 16 Oct 2021 10:57:17 +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: <20211015192408.21798-5-olivier.matz@6wind.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 4/4] mbuf: add rte prefix to offload flags 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/15/21 10:24 PM, Olivier Matz wrote: > Fix the mbuf offload flags namespace by adding an RTE_ prefix to the > name. The old flags remain usable, but a deprecation warning is issued > at compilation. > > Signed-off-by: Olivier Matz Acked-by: Andrew Rybchenko