From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CF926C433ED for ; Mon, 19 Apr 2021 17:15:35 +0000 (UTC) Received: from desiato.infradead.org (desiato.infradead.org [90.155.92.199]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 72546611F0 for ; Mon, 19 Apr 2021 17:15:35 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 72546611F0 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=desiato.20200630; h=Sender:Content-Transfer-Encoding :Content-Type:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=ddH+gb4lkjxJyjgi2Nw2BEMCcRncyZHhRzBB1TaWeNw=; b=Pnw9ueabnsr6Lbk78DetlsbCt e0Mb7JLN9CNGVQHV43vj7jZfbGdh3JVULDkanGM7BNsfe1ki96GFckPAQNxvm8UbP39cKMe2780qk IPMR7tZoeZGzpp8dfk4TR0g2rWSm8emFSqam9YGQ7zRP/2vGn+WLhrh6BeMSqSXDhCR8eGDSqX6x3 Mm5pv69GgNfJhO0szUjEgN6C1/MTjqbP2VKaCpB9Mdz1MDcVKbEX6SBfeqmmsPjrIskefSsnty1jI dsad6rKl00YpudfZxuaFyPVkrTe7ovMBl1z9UGzSTl5oFirQPVqiLluMsmildtjcOY63IbkEj91EU T1o6wWLOg==; Received: from localhost ([::1] helo=desiato.infradead.org) by desiato.infradead.org with esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lYXSb-00AKNO-13; Mon, 19 Apr 2021 17:13:21 +0000 Received: from [179.97.37.151] (helo=quaco.ghostprotocols.net) by desiato.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1lYXSX-00AKNF-O4; Mon, 19 Apr 2021 17:13:18 +0000 Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id CE96B40647; Mon, 19 Apr 2021 14:13:14 -0300 (-03) Date: Mon, 19 Apr 2021 14:13:14 -0300 From: Arnaldo Carvalho de Melo To: Ian Rogers Cc: Peter Zijlstra , Ingo Molnar , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , Leo Yan , John Garry , Will Deacon , Mathieu Poirier , Sergey Senozhatsky , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Stephane Eranian Subject: Re: [PATCH] perf arm64: Fix off-by-one directory paths. Message-ID: References: <20210416214113.552252-1-irogers@google.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210416214113.552252-1-irogers@google.com> X-Url: http://acmel.wordpress.com X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Em Fri, Apr 16, 2021 at 02:41:13PM -0700, Ian Rogers escreveu: > Relative path include works in the regular build due to -I paths but may > break in other situations. Thanks, applied. - Arnaldo > Signed-off-by: Ian Rogers > --- > tools/perf/arch/arm64/util/kvm-stat.c | 4 ++-- > tools/perf/arch/arm64/util/pmu.c | 4 ++-- > tools/perf/arch/arm64/util/unwind-libunwind.c | 4 ++-- > 3 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/tools/perf/arch/arm64/util/kvm-stat.c b/tools/perf/arch/arm64/util/kvm-stat.c > index 50376b9062c1..2303256b7d05 100644 > --- a/tools/perf/arch/arm64/util/kvm-stat.c > +++ b/tools/perf/arch/arm64/util/kvm-stat.c > @@ -1,8 +1,8 @@ > // SPDX-License-Identifier: GPL-2.0 > #include > #include > -#include "../../util/evsel.h" > -#include "../../util/kvm-stat.h" > +#include "../../../util/evsel.h" > +#include "../../../util/kvm-stat.h" > #include "arm64_exception_types.h" > #include "debug.h" > > diff --git a/tools/perf/arch/arm64/util/pmu.c b/tools/perf/arch/arm64/util/pmu.c > index d3259d61ca75..2234fbd0a912 100644 > --- a/tools/perf/arch/arm64/util/pmu.c > +++ b/tools/perf/arch/arm64/util/pmu.c > @@ -1,7 +1,7 @@ > // SPDX-License-Identifier: GPL-2.0 > > -#include "../../util/cpumap.h" > -#include "../../util/pmu.h" > +#include "../../../util/cpumap.h" > +#include "../../../util/pmu.h" > > struct pmu_events_map *pmu_events_map__find(void) > { > diff --git a/tools/perf/arch/arm64/util/unwind-libunwind.c b/tools/perf/arch/arm64/util/unwind-libunwind.c > index 1495a9523a23..5aecf88e3de6 100644 > --- a/tools/perf/arch/arm64/util/unwind-libunwind.c > +++ b/tools/perf/arch/arm64/util/unwind-libunwind.c > @@ -4,9 +4,9 @@ > #ifndef REMOTE_UNWIND_LIBUNWIND > #include > #include "perf_regs.h" > -#include "../../util/unwind.h" > +#include "../../../util/unwind.h" > #endif > -#include "../../util/debug.h" > +#include "../../../util/debug.h" > > int LIBUNWIND__ARCH_REG_ID(int regnum) > { > -- > 2.31.1.368.gbe11c130af-goog > -- - Arnaldo _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel