From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id B8449A0096 for ; Mon, 3 Jun 2019 10:58:13 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AE02F1B948; Mon, 3 Jun 2019 10:58:12 +0200 (CEST) Received: from mail-vk1-f196.google.com (mail-vk1-f196.google.com [209.85.221.196]) by dpdk.org (Postfix) with ESMTP id B58FF1B945 for ; Mon, 3 Jun 2019 10:58:11 +0200 (CEST) Received: by mail-vk1-f196.google.com with SMTP id g194so2708333vke.13 for ; Mon, 03 Jun 2019 01:58:11 -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=F/w38SaP+2vLnwvleP/8yBVzrlRHPrXIsdIBJOIUE6M=; b=URnU47ACSq1YkDLhQ39oz6Dib09lOeyDeyowgVeEACkKEkt7dCR7Ff6XsohKAUPXcP 8uK668dJ50ph/T0GUa9Gklxe4lhTUHhcrNVz279ODE1zG7E38stfjepgUyb8OhdHM7Ao 4wKe8nrTgzI02zzPruJDT2zGANYg2+byaQx6VCdn/VIEpaKUKrT1pgVF8YVwSHGthdUG 3ZfTqT6klOAYWhqSJiDTGolM0YQQV5tcC0dq1nVx+AdW4NgGPFiEeL+vxarTuQenGsMG Cdvl9Gh5LOzsvySbKzEfTLNuwoX17FYv6LXcIv6jfHTKNIXaNaiYv2M1ATfJz9aETgp8 qV7w== X-Gm-Message-State: APjAAAVhoabldbpcOmwv1R0CtPrNiKvK7oy9hNNwqRupPmMPI40IVfej WHWOsaBu8Rq7eTnMY2uwh1ywoXp/Rg20KCtf4/CM6w== X-Google-Smtp-Source: APXvYqwQ4WRYcmkDrf5mLoh7js0VhH1Aue4kX3ZPPSfTB1r8jh/ZLuE79+EU9NZ/7BPStEeDj8I5rlsK4wbvEhyMniw= X-Received: by 2002:a1f:1bd0:: with SMTP id b199mr8310620vkb.85.1559552290995; Mon, 03 Jun 2019 01:58:10 -0700 (PDT) MIME-Version: 1.0 References: <1559129358-2935-1-git-send-email-david.marchand@redhat.com> <1559129358-2935-3-git-send-email-david.marchand@redhat.com> <20190529142628.sszw4xqak3baevb6@platinum> In-Reply-To: <20190529142628.sszw4xqak3baevb6@platinum> From: David Marchand Date: Mon, 3 Jun 2019 10:58:00 +0200 Message-ID: To: "Yigit, Ferruh" , Thomas Monjalon Cc: dev , Maxime Coquelin , Stephen Hemminger , Konstantin Ananyev , Wenzhuo Lu , Jingjing Wu , Bernard Iremonger , Byron Marohn , Pablo de Lara Guarch , Yipeng Wang , Sameh Gobriel , Bruce Richardson , Chas Williams , Vladimir Medvedkin , Cristian Dumitrescu , John McNamara , Marko Kovacevic , Ori Kam , Radu Nicolau , Akhil Goyal , Tomasz Kantecki , David Hunt , Harry van Haaren , Xiaoyun Li , Olivier Matz Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH 3/5] replace RTE_IPv4 with uppercase RTE_IPV4 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" Thomas, Ferruh, Can I get your review on these patches? Then a quick merge would help, so that I send the changes on OVS dpdk-latest branch. Thanks! -- David Marchand On Wed, May 29, 2019 at 6:50 PM Olivier Matz wrote: > On Wed, May 29, 2019 at 01:29:16PM +0200, David Marchand wrote: > > Since we change this macro, we might as well avoid triggering complaints > > from checkpatch because of mixed case. > > > > old=RTE_IPv4 > > new=RTE_IPV4 > > git grep -lw $old | xargs sed -i -e "s/\<$old\>/$new/g" > > > > Signed-off-by: David Marchand > > Reviewed-by: Olivier Matz >