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 3766BA04B5; Wed, 9 Sep 2020 21:05:47 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2CB8C1BF8E; Wed, 9 Sep 2020 21:05:46 +0200 (CEST) Received: from mail-pf1-f193.google.com (mail-pf1-f193.google.com [209.85.210.193]) by dpdk.org (Postfix) with ESMTP id C27F71BE0C for ; Wed, 9 Sep 2020 21:05:44 +0200 (CEST) Received: by mail-pf1-f193.google.com with SMTP id v196so3121815pfc.1 for ; Wed, 09 Sep 2020 12:05:44 -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=AHQnFSBvLopvNX715WqgCJ9rjMZVKElU98FhmjsIPc4=; b=eCQ7UzSWehi9anposAmEazApZfeAPi14UaaaJQLdB2uTgeQeKyPZZbILtGuMTkTWMu j9UjrOSfMI5xWoDAu6oHjrIgyKTDj+5OhZNuUMdTqEn2KXok8JYbpWuX6890GOfMJRAm u/TEbJYEg2/SpzTj65Osqrei/bng9XoxL9T3uc7mFgjaiMnjHeJND3iGcK6fXqHXIHED ls3UHgMbCM8IbupxMeUcMCiumqU5fa0P2w3BPxym1Y2hBzUs2k5mPPzNXXLLM1I5CEe7 VtEmhWvvZuAI4YuhEw++QD3KK4okY2LcVtwBfBUU5rGGB0Hr72fZfbdf0QFHTpYODWKp MNpw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=AHQnFSBvLopvNX715WqgCJ9rjMZVKElU98FhmjsIPc4=; b=DTYB3nsNUiWU3wZ9aPe1ecLkBJZI1CzrndsgjCo1dovTi8tjLLoqOl8+3iDD5hBx4k u0WZGhMPs9fmQMbJn9Zt3hzYGB3/BoCuW7kr0CpmEo6bXHyLknLB/WdvDhLIzQptZRjc NMio/Qw5QadI2fl8426syElSxwhYEGDLCgRh3xuLrKgpt3iDzs65mPtPfz4JzbHyxzzd kBaPGuxMQVhvn7pvlzYxkaEz867uQpCPlp0oENIj3Ygrxl3Hje+P6P8X5WqVs+MHmulE bQ7a3B0E+3SjUCwkcQ8G4BZYExizoSaAyMdXBe8Wle+aikw+6i1YgWuHwUkSqzyMb6Em rKcw== X-Gm-Message-State: AOAM532VZvjPSqQZShzJ1+E2f1cmv3Ue4ZqabSw9MHDPDm4ufvYSACye 9PQs3Or3tOPgNqr10wnLHZwWNQ== X-Google-Smtp-Source: ABdhPJwaFelMLuZrfw7yvvL/wwxjDjc3Asgk2IwLynJ7ELQtz89U0SKeWwISmH8QT2UGVrtyjMj00g== X-Received: by 2002:a63:c1c:: with SMTP id b28mr1654932pgl.275.1599678343829; Wed, 09 Sep 2020 12:05:43 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id y126sm3655225pfy.138.2020.09.09.12.05.43 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 09 Sep 2020 12:05:43 -0700 (PDT) Date: Wed, 9 Sep 2020 12:05:35 -0700 From: Stephen Hemminger To: Cristian Dumitrescu Cc: dev@dpdk.org Message-ID: <20200909120535.6d32242b@hermes.lan> In-Reply-To: <20200908201830.74206-2-cristian.dumitrescu@intel.com> References: <20200907214032.95052-2-cristian.dumitrescu@intel.com> <20200908201830.74206-1-cristian.dumitrescu@intel.com> <20200908201830.74206-2-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/41] pipeline: add new SWX pipeline type 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 Tue, 8 Sep 2020 21:17:50 +0100 Cristian Dumitrescu wrote: > +/* > + * Pipeline. > + */ > +struct rte_swx_pipeline { > + int build_done; > + int numa_node; > +}; > + > + Is int the right type for these. build_done seems like a boolean and numa_node should be unsigned?