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 9EFE4429C4 for ; Sun, 23 Apr 2023 12:49:09 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7615E410DE; Sun, 23 Apr 2023 12:49:09 +0200 (CEST) Received: from mail-yw1-f176.google.com (mail-yw1-f176.google.com [209.85.128.176]) by mails.dpdk.org (Postfix) with ESMTP id D52C340A80 for ; Sun, 23 Apr 2023 12:49:08 +0200 (CEST) Received: by mail-yw1-f176.google.com with SMTP id 00721157ae682-54fc6949475so37263867b3.3 for ; Sun, 23 Apr 2023 03:49:08 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1682246948; x=1684838948; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=CDSGbq46ws+kYfsp/UgMyLdQQuPVEmtMEkPNf+gB7h8=; b=mGhKiH9Qlccj8m/Zid3NGjzRBNdZrriRaSaph32hjbwcRJHh/fgR3IRwqkRBv37XUx u/2wyHDSwppG4zhb7kbsa0sq1GrsPo19/b45xUPhTm/w0jDNSU3mheVXt0diBR8iO9vm FJxpeuRat3vOFUmsxlrMR3B/4uv8MtvubLcDBgXEEmIZj7Z30+Zin9Slm5siYjtBY5da pF6niTqqUmB5hHL+GOFJrsUvhlbVNk/rMT/BHzTmj7gWVFza+VbTQGLlUMCTym9eVmYS KQkuUqXA4mcJbLNmO4N2jlwGCTxF9lvQ6qcPKRS7Ph77tghcxNp6fS6p013r0R3+KF8q Vtrw== X-Gm-Message-State: AAQBX9dIEL9uoKrkybKIWA3hLKUvFY/RlhmvYbOetPoFmDY+lmbMC9RQ hh8Ob2OJ+fW7AO9IAyE94U/D3F+44aSbTw== X-Google-Smtp-Source: AKy350Y/DroFA6dR8CBBl5jC4d3tuZphQtdplA0aAgdAFeVmmzG2cxSweMkHZuLCvmK8CTAhdUcpgw== X-Received: by 2002:a81:a014:0:b0:555:cb43:926 with SMTP id x20-20020a81a014000000b00555cb430926mr5946172ywg.4.1682246948080; Sun, 23 Apr 2023 03:49:08 -0700 (PDT) Received: from mail-yw1-f179.google.com (mail-yw1-f179.google.com. [209.85.128.179]) by smtp.gmail.com with ESMTPSA id y37-20020a25ad25000000b00b7767ca747fsm2219326ybi.28.2023.04.23.03.49.06 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sun, 23 Apr 2023 03:49:07 -0700 (PDT) Received: by mail-yw1-f179.google.com with SMTP id 00721157ae682-54fc6949475so37263637b3.3 for ; Sun, 23 Apr 2023 03:49:06 -0700 (PDT) X-Received: by 2002:a81:6f43:0:b0:54c:f42:b259 with SMTP id k64-20020a816f43000000b0054c0f42b259mr6148142ywc.25.1682246946611; Sun, 23 Apr 2023 03:49:06 -0700 (PDT) MIME-Version: 1.0 References: <20230423094751.8353-1-xuemingl@nvidia.com> In-Reply-To: <20230423094751.8353-1-xuemingl@nvidia.com> From: Luca Boccassi Date: Sun, 23 Apr 2023 11:48:55 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH 1/2] 4-final-review: add new rte_version.h path To: Xueming Li Cc: Christian Ehrhardt , NBU-Contact-Thomas Monjalon , Kevin Traynor , stable@dpdk.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org On Sun, 23 Apr 2023 at 10:48, Xueming Li wrote: > > Adds new path of rte_version.h > > Signed-off-by: Xueming Li > --- > 4-final-review | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/4-final-review b/4-final-review > index 4aa4a75..9eab987 100755 > --- a/4-final-review > +++ b/4-final-review > @@ -8,6 +8,8 @@ if [ -r "$DPDK_DIR/lib/librte_eal/include/rte_version.h" ]; then > VERSION_HEADER="$DPDK_DIR/lib/librte_eal/include/rte_version.h" > elif [ -r "$DPDK_DIR/lib/librte_eal/common/include/rte_version.h" ]; then > VERSION_HEADER="$DPDK_DIR/lib/librte_eal/common/include/rte_version.h" > +elif [ -r "$DPDK_DIR/lib/eal/include/rte_version.h" ]; then > + VERSION_HEADER="$DPDK_DIR/lib/eal/include/rte_version.h" > else > echo "Cannot find rte_version.h" > exit 1 Acked-by: Luca Boccassi