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 611A5A04B1; Wed, 9 Sep 2020 14:07:30 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C26951BF8D; Wed, 9 Sep 2020 14:07:29 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 5BAB4255 for ; Wed, 9 Sep 2020 14:07:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1599653247; 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: in-reply-to:in-reply-to:references:references; bh=qCfa3TWWkoC2H1GMcWxEPcs6/VKKaOVNEOXu9zfJXfw=; b=gBMLF5BboV07piHiufqUQ2uBReDIoG9ztgqvx+KMkWYx9kKmUWf6B5X59Vfet27ovFeFPb ds2IUvwFGIl9NYHP2z0I2IWcC4BeT/6IlYMD1L0/BiFooTK5PnLQXA9TqMqAFEtDWzsWvV JL1aizhlNLBduCocZwaniQatvgWgRQs= Received: from mail-ua1-f69.google.com (mail-ua1-f69.google.com [209.85.222.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-568-LKcTqa7COV6EhN1O4EHMbw-1; Wed, 09 Sep 2020 08:07:25 -0400 X-MC-Unique: LKcTqa7COV6EhN1O4EHMbw-1 Received: by mail-ua1-f69.google.com with SMTP id r6so156366ual.18 for ; Wed, 09 Sep 2020 05:07:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=qCfa3TWWkoC2H1GMcWxEPcs6/VKKaOVNEOXu9zfJXfw=; b=hsdnNfhrpF7+LG2h0yo7ccuXl9vGyzORHwM3xo9IY2REETpt2MiYld5epfb4E9O21u F/d4TJVLhBBdbdlwaN+3o54W4aT/+MDdf45QTHr1sseaFnYhwfsEV5CXR5J4t1OnQ+1S w6BVYcaF5YjpYxdMR1lF/CJXPZhqNkuvL0r8/dDwCtgD4AAOOMtklbvP54dT+Awu8OV5 iXwuzcLI4FU3R4Ljx0XA+lGEQDWrGAZN9F+uKK68qjTRoyFKVB2DPZE58hWBYIw/Wbgx SIpcFOlbmWeU5dC5wgDlgDDis71qKK/wFar6SD2ldjRr/1NGqv1BbNaMMVkVCQScY7ph 2Xww== X-Gm-Message-State: AOAM532TewHxqIm5YTzf+9gihfSGtf7askeKuTK/3Fml+htl8t4vdyz+ 51yCLc8/tY0FeeQdmkC4SHbrlEM9yBBNzViTNbrPSWPkaxMuiSbvY+DIp5zJPEAjvp+LCdjrntp 3Y2rQCr8EllTDXOXEB2I= X-Received: by 2002:ab0:269:: with SMTP id 96mr278870uas.41.1599653245354; Wed, 09 Sep 2020 05:07:25 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyOtnqzbEqZl9klQW+s6vxbESriorq2eIHhnQPpeHEg14zHa+fkMOwn2KpQjXC4HFrO9WXkcYRmadZekAIcv20= X-Received: by 2002:ab0:269:: with SMTP id 96mr278845uas.41.1599653245092; Wed, 09 Sep 2020 05:07:25 -0700 (PDT) MIME-Version: 1.0 References: <20200824094021.2323605-1-ferruh.yigit@intel.com> <20200909111220.1195759-1-ferruh.yigit@intel.com> In-Reply-To: <20200909111220.1195759-1-ferruh.yigit@intel.com> From: David Marchand Date: Wed, 9 Sep 2020 14:07:14 +0200 Message-ID: To: Ferruh Yigit Cc: dev , Ray Kinsella , Neil Horman , John McNamara , Marko Kovacevic , Thomas Monjalon , Andrew Rybchenko Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0.002 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3 1/7] ethdev: deprecate descriptor status check API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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 Wed, Sep 9, 2020 at 1:12 PM Ferruh Yigit wrote: > > Marking 'rte_eth_rx_descriptor_done()' API as deprecated. > ``rte_eth_rx_descriptor_status`` and ``rte_eth_tx_descriptor_status`` > APIs can be used as replacement. > > Plan is to remove the API on 21.11 release. > > Signed-off-by: Ferruh Yigit > --- > > Cc: David Marchand > v3: > * Just deprecating the 'rte_eth_rx_descriptor_done()' API without > removing it to stick to the original plan. LGTM, thanks. For the series, Acked-by: David Marchand -- David Marchand