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 5BE1BA04B5; Thu, 29 Oct 2020 19:19:26 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2E0EFC8F4; Thu, 29 Oct 2020 19:19:25 +0100 (CET) Received: from mail-oo1-f66.google.com (mail-oo1-f66.google.com [209.85.161.66]) by dpdk.org (Postfix) with ESMTP id D3015C8E2 for ; Thu, 29 Oct 2020 19:19:22 +0100 (CET) Received: by mail-oo1-f66.google.com with SMTP id j41so950348oof.12 for ; Thu, 29 Oct 2020 11:19:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=/Q0fMcN3X20hszC6/WIfIz+QdZ52WYp87y4w8cSR74k=; b=d/WTJXFosIfA3N8J5G9RQEgiCf6pAHIfQ/frOlJlQJMO4BCzvbhX9IO0QzlvT3X8Iu oK7neGf22NL+nMd3SOLaZ0enMOF0UyMRVP+MthViqRt66GATgwFx0fvcx/Td0CuaELbP mCIdJpnO8QAmwQ3i1/APRePVwV0fzQChKJ+L0= 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=/Q0fMcN3X20hszC6/WIfIz+QdZ52WYp87y4w8cSR74k=; b=j2U+A5Z/s1JXdq7L1+s+Xz+ZSRIb8JE8dWRdCDqCW8tg5XVWXGwMkjriGVQD7lafdo 6NBgSpFk8e0GkLeD16AZb6egcTrNqGFnjHuL2m0ihfUjrT3jnu36UvDvFYVhe03uC/M8 wZjGhi5lyuSU8l4ZNAe125VgogZXXMS458285pBCMZJdqpbRafU8tcAbzm4NfXSoepJW 8En9tBo8EzdGcig9uksj247UwnLGYEBJhromycNKyOgxG71wiqhX/gyuCRJoe62XE50v DH/SgTGVl1P+rfrE6J9YHCfWDsDaKfZAaRdu6tz7qpya6SO+yA5+bfJ+/ODG7i9AW3bN wbyw== X-Gm-Message-State: AOAM531+6MQuVNBoRv8MvDAUg/MqSHLe9FQPbF24s38gfWrdg3l6zAZD saOsRkulaTB6Hd1toAmeqFsix/mLnYI5ykq0ccMYWg== X-Google-Smtp-Source: ABdhPJwusMeBOean1Uwp3ux8cNNVIYzPCYwuOG/9Vzent75PC5q+ohW3NVG+TtOEFoJzwEE6z/4ynyMiogpnrOEfyrU= X-Received: by 2002:a4a:e485:: with SMTP id s5mr3348777oov.15.1603995560887; Thu, 29 Oct 2020 11:19:20 -0700 (PDT) MIME-Version: 1.0 References: <20201029092751.3837177-1-thomas@monjalon.net> <20201029092751.3837177-3-thomas@monjalon.net> In-Reply-To: From: Ajit Khaparde Date: Thu, 29 Oct 2020 11:19:04 -0700 Message-ID: To: Andrew Rybchenko Cc: Thomas Monjalon , dpdk-dev , Ferruh Yigit , David Marchand , Bruce Richardson , Olivier Matz , Jerin Jacob Kollanukkaran , Slava Ovsiienko Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 02/15] mbuf: add Rx timestamp dynamic flag 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 Thu, Oct 29, 2020 at 2:58 AM Andrew Rybchenko wrote: > > On 10/29/20 12:27 PM, Thomas Monjalon wrote: > > There is already a dynamic field for timestamp, > > used only for Tx scheduling, thanks to the dedicated flag. > > The same field can be used for Rx timestamp filled by drivers. > > The only missing part to get rid of the static timestamp field > > was to declare a new dynamic flag for Rx usage. > > > > After migrating all Rx timestamp usages, it will be possible > > to remove the deprecated timestamp field. > > > > Signed-off-by: Thomas Monjalon > > Acked-by: Andrew Rybchenko Acked-by: Ajit Khaparde >