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 55C3BA04B5; Mon, 26 Oct 2020 11:42:46 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 35D2F2BF4; Mon, 26 Oct 2020 11:42:45 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by dpdk.org (Postfix) with ESMTP id 424A52BAA for ; Mon, 26 Oct 2020 11:42:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1603708960; 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=ZBOQPgctz3g6pgHAmiRZY1myhLZFWUKoBfhrvoaF+o4=; b=TmFteU2lmvMG0LbRWp9e2qEKM57kPtIcpWfC7V24HdrbFMAnt97ZxhIfZ6KPn6AepcnpSo 3Uri4Bj9PkmtNZbkZubUK0C1AUn4X6eF+uGIr5PHrPznIQlX+ofUsZsH/dnIYBONN4vIVy v2qqgT0gac87Q4Y3Ga5Udn5CUga3INo= Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-112-EqnNw6F9OrSq7Y81-_ItEA-1; Mon, 26 Oct 2020 06:42:39 -0400 X-MC-Unique: EqnNw6F9OrSq7Y81-_ItEA-1 Received: by mail-vk1-f197.google.com with SMTP id e6so3619750vkb.11 for ; Mon, 26 Oct 2020 03:42:39 -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=ZBOQPgctz3g6pgHAmiRZY1myhLZFWUKoBfhrvoaF+o4=; b=in31aj8LEn5RcGdAA91CHxRoAG85YnuT1rGylo+VYnTc8fOSOYEDml/30XM12Sny70 l19CWnzqUFXtsn84U5RtBljxU4B0eEtUJinNPvDOkvGZC8v0l0SB6u0drvBSs4Y7PqFu uroHTpxi7+S1JTTrUwQ5meALzMVKdM4BvbNqktca1Q2gfHywXBoh+kFaHSqWBqcA/mLy Q1QHASqj0lptHqg1QDmwA8Z4PdDdnb7XhDnYtoTiLlW4jLzBd/032CUhIeQOsh0HiGGu T/qpjbF7JsJolSoEt80zNy4FDsl4wXPq/EHfnYEopLgXZCa20ikpoxnf7mKF34U3aksG 7DgQ== X-Gm-Message-State: AOAM5302cA2YeReodfmXj65V75LOiyTvFh/Vj/FvRtnlwckx5N7djYK/ g0l4hFH5QJRIWgraCcXIPvqlLHKlaU4lKlsS4YTUYwFt1MfrUGSvk9XOQx4W6aXkKV5Z3iatL5S eZFrRxMoqbf2TGWrH93U= X-Received: by 2002:a67:fd7a:: with SMTP id h26mr17525692vsa.27.1603708958638; Mon, 26 Oct 2020 03:42:38 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzYG3aujWN7r8m+d0x/BxCxmqXB1JAHIDxMDuZbUXnevMRSd4paWJw5Am9xHztj6J5xsmlPdibHEvn0yZlWbzA= X-Received: by 2002:a67:fd7a:: with SMTP id h26mr17525666vsa.27.1603708958426; Mon, 26 Oct 2020 03:42:38 -0700 (PDT) MIME-Version: 1.0 References: <20201026052105.1561859-1-thomas@monjalon.net> <20201026052105.1561859-9-thomas@monjalon.net> In-Reply-To: <20201026052105.1561859-9-thomas@monjalon.net> From: David Marchand Date: Mon, 26 Oct 2020 11:42:27 +0100 Message-ID: To: Thomas Monjalon Cc: dev , "Yigit, Ferruh" , Bruce Richardson , Olivier Matz , Andrew Rybchenko , Akhil Goyal , Ajit Khaparde , Somnath Kotur Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH 08/15] net/bnxt: switch CFA code to dynamic mbuf field 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 Mon, Oct 26, 2020 at 6:21 AM Thomas Monjalon wrote: > > The CFA code from mark was stored in the deprecated mbuf field udata64. > It is moved to a dynamic field in order to allow removal of udata64. We convert from a 64 bits (with only upper 32 bits filled) to a 32 bits field. Worth a comment on the API change for users (if any). -- David Marchand