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,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham 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 97449C433DB for ; Wed, 3 Feb 2021 04:25:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4C37A64F53 for ; Wed, 3 Feb 2021 04:25:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230430AbhBCEYn (ORCPT ); Tue, 2 Feb 2021 23:24:43 -0500 Received: from mail-qt1-f176.google.com ([209.85.160.176]:35399 "EHLO mail-qt1-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231348AbhBCEXQ (ORCPT ); Tue, 2 Feb 2021 23:23:16 -0500 Received: by mail-qt1-f176.google.com with SMTP id t17so16726899qtq.2 for ; Tue, 02 Feb 2021 20:23:01 -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=52ElOgRD0cpaOEUcD0lTI/TyzV50oXNQCCvTWGkQQIU=; b=j1/7XOe6Pk7wBkdn22gwgEiOsjaW5HCVD/pYh64nlkck2eLx1MoYqhp/zmAVzvmKsu NHmvokjkRnCbMREkcpmk+5jmJ4QUGk7pIH23U7aOQwO9lSW+rHazEaS7BXRdHyGnNubL gXQuyoiO+DZfZe8qTtD9yzyeUKmNbDkFvvGl6+hQC8lxZKQ8/j/VuqWfTSGSBWQl3Gs7 KJiHAsC6fLaWiaWGZNd2il/eidVRBnxoAQAxAJJjK1CFfNjxpboboDRP0Lm8MGKnL83N FiGIOBJNAwGrXkfiDKyTkf5r3Pb855OmKtUCHIpHY2kUoQ5gaW4Xp0KYjrRTR92qeK9Q xR3w== X-Gm-Message-State: AOAM530rwoCv37tzloeRkW/8T5fiunFd25B8on7Qni7sQ1d239OD+S4b XsCube7n2P0tywL8rRql6SKmSWKGxOMdpfVyWHm1kz+K X-Google-Smtp-Source: ABdhPJy/kw166iTQuvPURDunWO5oO9rb3qA6NgPtv5yaO4+VFD3T5p6OMPmJSnghwOARS+YrtcYd5a6kE+wiWGzvkWc= X-Received: by 2002:ac8:46d4:: with SMTP id h20mr1067449qto.256.1612326155568; Tue, 02 Feb 2021 20:22:35 -0800 (PST) MIME-Version: 1.0 References: <20210127184629.516169-1-irogers@google.com> In-Reply-To: <20210127184629.516169-1-irogers@google.com> From: Namhyung Kim Date: Wed, 3 Feb 2021 13:22:24 +0900 Message-ID: Subject: Re: [PATCH] perf parse-events: Remove unnecessary #includes To: Ian Rogers Cc: Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Mark Rutland , Alexander Shishkin , Jiri Olsa , Andi Kleen , Jin Yao , Leo Yan , linux-kernel , Stephane Eranian Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Ian, On Thu, Jan 28, 2021 at 3:46 AM Ian Rogers wrote: > > Minor cleanup motivated by trying to separately fuzz test parse-events. > > Signed-off-by: Ian Rogers Acked-by: Namhyung Kim Thanks, Namhyung > --- > tools/perf/util/parse-events.c | 2 -- > tools/perf/util/parse-events.l | 1 - > 2 files changed, 3 deletions(-) > > diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c > index 42c84adeb2fb..8982b3c8014c 100644 > --- a/tools/perf/util/parse-events.c > +++ b/tools/perf/util/parse-events.c > @@ -19,8 +19,6 @@ > #include > #include "string2.h" > #include "strlist.h" > -#include "symbol.h" > -#include "header.h" > #include "bpf-loader.h" > #include "debug.h" > #include > diff --git a/tools/perf/util/parse-events.l b/tools/perf/util/parse-events.l > index 9db5097317f4..03d2ac04edb3 100644 > --- a/tools/perf/util/parse-events.l > +++ b/tools/perf/util/parse-events.l > @@ -12,7 +12,6 @@ > #include > #include > #include > -#include "../perf.h" > #include "parse-events.h" > #include "parse-events-bison.h" > #include "evsel.h" > -- > 2.30.0.280.ga3ce27912f-goog >