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 89A80A034F; Fri, 10 Sep 2021 10:17:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 09BA34067E; Fri, 10 Sep 2021 10:17:30 +0200 (CEST) Received: from mail-lf1-f45.google.com (mail-lf1-f45.google.com [209.85.167.45]) by mails.dpdk.org (Postfix) with ESMTP id E81D440041 for ; Fri, 10 Sep 2021 10:17:28 +0200 (CEST) Received: by mail-lf1-f45.google.com with SMTP id l10so2439076lfg.4 for ; Fri, 10 Sep 2021 01:17:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ukNi91LzcGlnIs3ah/tfNzXcVhrSS2+2TRgysBhofa4=; b=JXCUXjydNAqc3HEUlQBtSlAp+dKEqNYw1mKA8JraMl+X9pfcxXrTYAW3j53yDB8rsO d4NWksYq3HLiltLtVeAqU/SHkZUlwsMhM3Ol+sb9ci5WQZkB+BihF7rbDPokRHrpENuc RjqazxIlQcbXTUE3gHGKsZoUhenkpyep7WLGduPOBtCsFj0ukJNeyGWevCdBRRQcBePe EEGOjDh+GOs9O9vNxXt3FXIgC8zECp6iyd7VP9lLtU4JmiQ+QL8UCL+cEYptO7ddwZDq lF9NAnmhqNxb1fJQVnOj85XV6GoE1GNcJKxHTMXYn3OB4U1hctIYeE1TqFyHmMEKGI+E SQ1Q== 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=ukNi91LzcGlnIs3ah/tfNzXcVhrSS2+2TRgysBhofa4=; b=3nQukt6tAtXny3W01FpNOThFJ9CsF+UkKehc3/NqXajCrpWcnzbxjxsF4bQ9KMQua/ gvYQhqdL4gJQyLegLc7QuBOLSISvVnPUAuXvXtcUeheUH3SnboslQ8nmORh6QqauPDjj 6xeApbWvSmiVqR2RyGCfkzFYOTFKHftowIA8WjvDCco47qMcACtGMsR94Mj8zlXscNze 64znXqXJRdxWWAwwDKRJAzOvWcVmbOlL3TcHLlpM3MTMuMFcel3FcbNNEtdxvYigjX9J d0mmPdrb1mM30vW7AwkBA3NOj4l2UddICiK88AqUtOJ6l4HHoXvlIHqunoYxpBgZu2i2 fUPw== X-Gm-Message-State: AOAM530nscsLmN8QlQj8q+PQ6KtvfgL9VNE5fhbdHXDyhq8fhQIC+1C/ 1GaIKUdED48+NaGtFhvY8iE= X-Google-Smtp-Source: ABdhPJyGV0sYv1BdVurJHL7I9WwoZ8stQK5VXKB4q0sXUiNi/vvl8UyC/tlAGfSjP1E4Z0itmmB07g== X-Received: by 2002:a05:6512:3c99:: with SMTP id h25mr2934213lfv.640.1631261848415; Fri, 10 Sep 2021 01:17:28 -0700 (PDT) Received: from sovereign (broadband-37-110-65-23.ip.moscow.rt.ru. [37.110.65.23]) by smtp.gmail.com with ESMTPSA id c11sm461014lfb.76.2021.09.10.01.17.27 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 10 Sep 2021 01:17:27 -0700 (PDT) Date: Fri, 10 Sep 2021 11:17:26 +0300 From: Dmitry Kozlyuk To: Stephen Hemminger Cc: dev@dpdk.org, Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam Message-ID: <20210910111726.12ef1b2f@sovereign> In-Reply-To: <20210909233329.190021-7-stephen@networkplumber.org> References: <20210903004732.109023-1-stephen@networkplumber.org> <20210909233329.190021-1-stephen@networkplumber.org> <20210909233329.190021-7-stephen@networkplumber.org> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v6 06/10] lib: pdump is not supported on Windows 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" 2021-09-09 16:33 (UTC-0700), Stephen Hemminger: > The original version of the pdump library was building on > Windows, but it was useless since the pdump utility was not being > built. > > The new version of pdump with filtering now has dependency > on bpf. But bpf library is not available on Windows. > > For now, just stop trying to build pdump on Windows. > Eventually, bpf library, pdump library, dumpcap tool, > and pdump tool can be converted to work on Windows. > > Signed-off-by: Stephen Hemminger > > Cc: Dmitry Kozlyuk > Cc: Narcisa Ana Maria Vasile > Cc: Dmitry Malloy > Cc: Pallavi Kadam > --- > lib/meson.build | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/lib/meson.build b/lib/meson.build > index 51bf9c2d11f0..ba88e9eabc58 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -85,7 +85,6 @@ if is_windows > 'gro', > 'gso', > 'latencystats', > - 'pdump', > ] # only supported libraries for windows > endif > Anyway pdump relies on multiprocess not supported on Windows. Acked-by: Dmitry Kozlyuk