From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753175AbbCYUmG (ORCPT ); Wed, 25 Mar 2015 16:42:06 -0400 Received: from e9.ny.us.ibm.com ([32.97.182.139]:52485 "EHLO e9.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752912AbbCYUmD (ORCPT ); Wed, 25 Mar 2015 16:42:03 -0400 Subject: Re: [PATCH v4 3/4] perf inject: add jitdump mmap injection support From: "Carl E. Love" To: Stephane Eranian Cc: linux-kernel@vger.kernel.org, acme@redhat.com, peterz@infradead.org, mingo@elte.hu, ak@linux.intel.com, jolsa@redhat.com, namhyung@kernel.org, sukadev@linux.vnet.ibm.com, sonnyrao@chromium.org, johnmccutchan@google.com, dsahern@gmail.com, adrian.hunter@intel.com, pawel.moll@arm.com In-Reply-To: <1427235933-949-4-git-send-email-eranian@google.com> References: <1427235933-949-1-git-send-email-eranian@google.com> <1427235933-949-4-git-send-email-eranian@google.com> Content-Type: text/plain; charset="UTF-8" Date: Wed, 25 Mar 2015 13:41:53 -0700 Message-ID: <1427316113.5585.6.camel@oc3328482554> Mime-Version: 1.0 X-Mailer: Evolution 2.32.3 (2.32.3-34.el6) Content-Transfer-Encoding: 7bit X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 15032520-0033-0000-0000-0000022587DB Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2015-03-24 at 23:25 +0100, Stephane Eranian wrote: > tools/build/Makefile.feature | 2 + > tools/build/feature/Makefile | 4 + > tools/build/feature/test-libcrypto.c | 9 + > tools/perf/Documentation/perf-inject.txt | 6 + > tools/perf/builtin-inject.c | 60 +++- > tools/perf/config/Makefile | 11 + > tools/perf/util/Build | 2 + > tools/perf/util/genelf.c | 479 > +++++++++++++++++++++++++ > tools/perf/util/genelf.h | 6 + > tools/perf/util/jitdump.c | 588 > +++++++++++++++++++++++++++++++ > tools/perf/util/jitdump.h | 92 +++++ > 11 files changed, 1246 insertions(+), 13 deletions(-) > create mode 100644 tools/build/feature/test-libcrypto.c > create mode 100644 tools/perf/util/genelf.c > create mode 100644 tools/perf/util/genelf.h > create mode 100644 tools/perf/util/jitdump.c > create mode 100644 tools/perf/util/jitdump.h > Stephane: I do not fine the directory tools/build in the linux kernel tree. I am wondering if the Build file and the tools/build directory might be part of your source tree build environment? Carl Love