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 B5C8CA0C45; Mon, 13 Sep 2021 18:51:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ECC0B410DC; Mon, 13 Sep 2021 18:51:25 +0200 (CEST) Received: from mail-pg1-f172.google.com (mail-pg1-f172.google.com [209.85.215.172]) by mails.dpdk.org (Postfix) with ESMTP id E436040151 for ; Mon, 13 Sep 2021 18:51:24 +0200 (CEST) Received: by mail-pg1-f172.google.com with SMTP id f129so10013697pgc.1 for ; Mon, 13 Sep 2021 09:51:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=xqiViQ3LoDirpBeHu55N26c5f5u183x6M1JppNwI0PI=; b=cXrcrQXRUjn48V2K9USz6jzArdHts5QLfXKvl8Jck43dAZzsCEjuEe8zWbrvXDyf+o XM63EwFNuFlpb5gyhFaDG4YG/ytNIwnVnmDR6DC6KRtknrCH8jyOtcSjYf+yVQ+qtGxu ZTu5uoia5TQgR9joUgP26CgtVg9PE2wJKZ8hnvaM2h9CfM3BlARmWKRLwXi6yIkFwfyY SYsrNbs0oyJYydSZIhBtM81HU4UwHy4F9jd6g1Cn6bhkVUjjPSkxNsxSvJ9aPzt7bP3w FM5wKvLwZkR72KhlkvWgihHf2XdZfyRF199jT3Gz5DjjBUoxLmK4rryxRXc6klfv1wEa 8aaQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=xqiViQ3LoDirpBeHu55N26c5f5u183x6M1JppNwI0PI=; b=JfuIcZrpTdWCV9xS7pGyM+a+xT4iFYigr2tG8UdpTSPF1zzLJu/G5ETMhijtDzOAnJ tELyghstgJ++tccTfIBuXT1hZ/yAP2XxSaWIQ6ILWvxjUF3vA4SET20FGiBsv/WisPVn mpzd5lcoQ9TAuTfc+m8IAOX1ZkRTEV5oxDzyhNflBRRGIaUhXKz+a3jKPvdLoPr6jFwx gKVdef+MqL88XN7hv4+1u690y5gYNOtXWMzgR9Qe0/tqyWvnfGrKgDiPQxOSLqW2fYvu J8XavgIf9DYaeNcov3Y0+2q1iHGygVIfxwfN49TbDbElrVBdHIL/pBy7YqkGbgRNDWCD LNaw== X-Gm-Message-State: AOAM5318cd1uMwMVGhInbKa5PGysod7qm1jI77sgw6gTEH3S5CMHHsO3 n/n/61LWyn6m5p42wnfmbrgbBDJUIgmLaA== X-Google-Smtp-Source: ABdhPJwLi2MntBN5wJgMyEG7FWyscUBDTEJxhSWTH7T8pxt9rkseEjmyPfRPZehs97CvdN16Um6gTQ== X-Received: by 2002:a63:7519:: with SMTP id q25mr11887644pgc.63.1631551884046; Mon, 13 Sep 2021 09:51:24 -0700 (PDT) Received: from hermes.local (204-195-33-123.wavecable.com. [204.195.33.123]) by smtp.gmail.com with ESMTPSA id j16sm7921946pfi.165.2021.09.13.09.51.23 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 13 Sep 2021 09:51:23 -0700 (PDT) Date: Mon, 13 Sep 2021 09:51:21 -0700 From: Stephen Hemminger To: Cristian Dumitrescu Cc: dev@dpdk.org Message-ID: <20210913095121.38c39aaa@hermes.local> In-Reply-To: <20210913164443.16875-1-cristian.dumitrescu@intel.com> References: <20210910133713.93103-1-cristian.dumitrescu@intel.com> <20210913164443.16875-1-cristian.dumitrescu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH V3 01/24] pipeline: move data structures to internal header file 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 Mon, 13 Sep 2021 17:44:20 +0100 Cristian Dumitrescu wrote: > Start to consolidate the data structures and inline functions required > by the pipeline instructions into an internal header file. > > Signed-off-by: Cristian Dumitrescu > --- > Depends-on: series-18297 ("[V4,1/4] table: add support learner tables") Won't this change will make future changes to API/ABI harder because more of the pipeline internals are exposed to application?