From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753605AbbFXMjC (ORCPT ); Wed, 24 Jun 2015 08:39:02 -0400 Received: from szxga01-in.huawei.com ([58.251.152.64]:20941 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752494AbbFXMdP (ORCPT ); Wed, 24 Jun 2015 08:33:15 -0400 From: Wang Nan To: , , , , , , , , , , CC: , , , , Subject: [RFC PATCH v8 40/49] perf tools: Fix probe-event.h include Date: Wed, 24 Jun 2015 12:31:44 +0000 Message-ID: <1435149113-51142-41-git-send-email-wangnan0@huawei.com> X-Mailer: git-send-email 1.8.3.4 In-Reply-To: <1435149113-51142-1-git-send-email-wangnan0@huawei.com> References: <1435149113-51142-1-git-send-email-wangnan0@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.197.200] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 7b6ff0bdbf4f7f429c2116cca92a6d171217449e ("perf probe ppc64le: Fixup function entry if using kallsyms lookup") adds 'struct map' into probe-event.h but not include "util/map.h" in it. This patch fixes it. Signed-off-by: Wang Nan --- tools/perf/util/probe-event.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/perf/util/probe-event.h b/tools/perf/util/probe-event.h index dd7c630..868648c 100644 --- a/tools/perf/util/probe-event.h +++ b/tools/perf/util/probe-event.h @@ -5,6 +5,7 @@ #include "intlist.h" #include "strlist.h" #include "strfilter.h" +#include "map.h" /* Probe related configurations */ struct probe_conf { -- 1.8.3.4