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 B34D0A0562; Mon, 3 May 2021 16:02:14 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9ECD8410DE; Mon, 3 May 2021 16:02:14 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id CA39A4068C for ; Mon, 3 May 2021 16:02:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1620050533; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ZTu3y5Dgh0+eLXM4FYXbHj3jAlXG5LCBA0Odrmlp4DI=; b=V6oDTDI+cvWb4xpADGhwCFA3lNvRVOy7Vil6CoVRYYzC3y5GDSLeowDADEqKTPYFWXjeiE j38W0H3YGKRB9FZDrHhwWmzqd86OzAR2mIW4mtUS0hY5J8UbVbo4qqlXRsU3faXYlDdO9S ltXUPbvOPBmfBSy7IL//K/E3dlWKT8A= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-560-mmmLCurYMLmBknCuBsBQxw-1; Mon, 03 May 2021 10:02:10 -0400 X-MC-Unique: mmmLCurYMLmBknCuBsBQxw-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3336C19611A5; Mon, 3 May 2021 14:02:09 +0000 (UTC) Received: from [10.36.110.22] (unknown [10.36.110.22]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E46F219C79; Mon, 3 May 2021 14:02:02 +0000 (UTC) To: David Marchand , dev@dpdk.org Cc: olivier.matz@6wind.com, fbl@sysclose.org, i.maximets@ovn.org, chenbo.xia@intel.com, ian.stokes@intel.com, Lance Richardson , Ajit Khaparde , Ferruh Yigit , Andrew Rybchenko References: <20210401095243.18211-1-david.marchand@redhat.com> <20210503132646.16076-1-david.marchand@redhat.com> <20210503132646.16076-2-david.marchand@redhat.com> From: Maxime Coquelin Message-ID: <86a4b6dd-b3a5-86ed-84e8-f908ad918870@redhat.com> Date: Mon, 3 May 2021 16:02:01 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: <20210503132646.16076-2-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=maxime.coquelin@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 1/4] mbuf: mark old offload flag as deprecated 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 5/3/21 3:26 PM, David Marchand wrote: > PKT_RX_EIP_CKSUM_BAD has been declared deprecated but there was no > warning to applications still using it. > Fix this by marking as deprecated with the newly introduced > RTE_DEPRECATED. > > Fixes: e8a419d6de4b ("mbuf: rename outer IP checksum macro") > > Signed-off-by: David Marchand > Reviewed-by: Flavio Leitner > Acked-by: Olivier Matz > Acked-by: Lance Richardson > Acked-by: Ajit Khaparde > --- > Changes since v1: > - updated commitlog following Olivier comment, > > --- > lib/mbuf/rte_mbuf_core.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > Reviewed-by: Maxime Coquelin Thanks, Maxime