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 44AB9A04B3; Fri, 8 Nov 2019 11:18:29 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E740D1BFFA; Fri, 8 Nov 2019 11:18:28 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id 56E5C1BFE4 for ; Fri, 8 Nov 2019 11:18:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573208306; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ssVAydd5pth+eO3Oi4gZg5R7scqUEI249BSZpOyNc3I=; b=P6bz16ctMqu7+LVlJkRsTissKQUSaOF6RKlGf7WiA+JZLoMgyBHil+4oCpd4Nwlw62eURV HoSRXRYKes308JYmtDMC+DXQbb8O8mpbaM2y/OMh3X4m8xcVFk1EQsd171dQc0eZry1IP4 kanNMWtwj4o29t5xY1y6rYDJZYcfW8M= Received: from mail-vs1-f69.google.com (mail-vs1-f69.google.com [209.85.217.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-183-D3tr4kC6MI2UV08xZsI5dg-1; Fri, 08 Nov 2019 05:18:25 -0500 Received: by mail-vs1-f69.google.com with SMTP id l3so1478739vsd.18 for ; Fri, 08 Nov 2019 02:18:25 -0800 (PST) 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=ssVAydd5pth+eO3Oi4gZg5R7scqUEI249BSZpOyNc3I=; b=UERciXMEBmtwLLAfKGzzs+DCDB7Lm/g6zx1cNB7aRHbpYqAbXwOX+1aFo5J9ckYNnd 4b4IRiLhMD178vVRXk15rqoPPH2pevibTYju+7rx9W9izkfopzRiRrWXIum4ENIbrtfZ v8vnerYaX7LXpJJUizh15qryzpRch8y/CFojhSi2zBq/0TT/GjD5zxuknWRrkalflaoe Feu71AgHe2jCH5VuVjPGTRFkt9eaAv1fKpUWR3dHB0H80Jk40FXF6DDvYgEm9K8PdYbG +SWXLZjbrJZZwrSz+jLbOQIu2FBPIdBHmyUts0hyQQsuP79A+hxGxM0Ff4LBbaAk6mHg Xi2Q== X-Gm-Message-State: APjAAAUBkU/ax8yGEuOIgAGTkXHwPFNlPckYsMcB0ARav4p+raO+WRPb XOlGtIgwkGtNSg7plsQCvGHlK2aYNNpY0+SnmiKX54JGD7sqcGDXlra8jbRia6kkje1XJy0FOMC jtspnu32ciP3JwswVKXI= X-Received: by 2002:a67:fa99:: with SMTP id f25mr7340304vsq.141.1573208305241; Fri, 08 Nov 2019 02:18:25 -0800 (PST) X-Google-Smtp-Source: APXvYqyRLE/AGrdYAP1AMMCU3PNzVe2uFJ6LrBIuzUPBHiPjrRhLQ6f4FBVeG05MHdy8Kli2F7kDvN5Pn+FtPVojvKk= X-Received: by 2002:a67:fa99:: with SMTP id f25mr7340279vsq.141.1573208304864; Fri, 08 Nov 2019 02:18:24 -0800 (PST) MIME-Version: 1.0 References: <20191106120943.15967-1-thomas@monjalon.net> <20191108084427.h6ka64tkdy4bagxz@platinum> In-Reply-To: <20191108084427.h6ka64tkdy4bagxz@platinum> From: David Marchand Date: Fri, 8 Nov 2019 11:18:13 +0100 Message-ID: To: Olivier Matz Cc: Thomas Monjalon , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger , dev X-MC-Unique: D3tr4kC6MI2UV08xZsI5dg-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH] cmdline: replace FreeBSD ifdef for IP address parsing 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 Fri, Nov 8, 2019 at 9:44 AM Olivier Matz wrote: > > On Wed, Nov 06, 2019 at 01:09:43PM +0100, Thomas Monjalon wrote: > > The constants like AF_INET are in sys/socket.h in FreeBSD. > > The #ifdef macro __FreeBSD__ is replaced with RTE_EXEC_ENV_FREEBSD > > in order to be consistent across DPDK files, and allow to grep > > for EXEC_ENV among other benefits. > > > > Signed-off-by: Thomas Monjalon On 06-Nov-19 12:09 PM, Thomas Monjalon wrote: > The constants like AF_INET are in sys/socket.h in FreeBSD. > The #ifdef macro __FreeBSD__ is replaced with RTE_EXEC_ENV_FREEBSD > in order to be consistent across DPDK files, and allow to grep > for EXEC_ENV among other benefits. > > Signed-off-by: Thomas Monjalon Acked-by: Anatoly Burakov > Acked-by: Olivier Matz Applied, thanks. -- David Marchand