From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1423253AbcFHItL (ORCPT ); Wed, 8 Jun 2016 04:49:11 -0400 Received: from terminus.zytor.com ([198.137.202.10]:54436 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161215AbcFHItJ (ORCPT ); Wed, 8 Jun 2016 04:49:09 -0400 Date: Wed, 8 Jun 2016 01:48:23 -0700 From: tip-bot for He Kuang Message-ID: Cc: alexander.shishkin@linux.intel.com, dsahern@gmail.com, tglx@linutronix.de, kan.liang@intel.com, hekuang@huawei.com, penberg@kernel.org, eranian@google.com, hpa@zytor.com, linux-kernel@vger.kernel.org, tumanova@linux.vnet.ibm.com, adrian.hunter@intel.com, jolsa@kernel.org, mhiramat@kernel.org, namhyung@kernel.org, sukadev@linux.vnet.ibm.com, acme@redhat.com, wangnan0@huawei.com, mingo@kernel.org, jpoimboe@redhat.com, peterz@infradead.org, ak@linux.intel.com Reply-To: tglx@linutronix.de, dsahern@gmail.com, alexander.shishkin@linux.intel.com, hekuang@huawei.com, penberg@kernel.org, kan.liang@intel.com, linux-kernel@vger.kernel.org, tumanova@linux.vnet.ibm.com, hpa@zytor.com, eranian@google.com, adrian.hunter@intel.com, mhiramat@kernel.org, jolsa@kernel.org, wangnan0@huawei.com, mingo@kernel.org, acme@redhat.com, sukadev@linux.vnet.ibm.com, namhyung@kernel.org, jpoimboe@redhat.com, ak@linux.intel.com, peterz@infradead.org In-Reply-To: <1464924803-22214-8-git-send-email-hekuang@huawei.com> References: <1464924803-22214-8-git-send-email-hekuang@huawei.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf unwind: Rename unwind-libunwind.c to unwind-libunwind-local.c Git-Commit-ID: a597b547d6a599b088e3789a9095bd9bf2b28aaa X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: a597b547d6a599b088e3789a9095bd9bf2b28aaa Gitweb: http://git.kernel.org/tip/a597b547d6a599b088e3789a9095bd9bf2b28aaa Author: He Kuang AuthorDate: Fri, 3 Jun 2016 03:33:16 +0000 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 7 Jun 2016 12:08:53 -0300 perf unwind: Rename unwind-libunwind.c to unwind-libunwind-local.c Since unwind-libunwind.c contains code for specific arithecture, we change it's name to unwind-libunwind-local.c, and let it only be built if local libunwind is supported. Signed-off-by: He Kuang Acked-by: Jiri Olsa Cc: Adrian Hunter Cc: Alexander Shishkin Cc: Andi Kleen Cc: David Ahern Cc: Ekaterina Tumanova Cc: Josh Poimboeuf Cc: Kan Liang Cc: Masami Hiramatsu Cc: Namhyung Kim Cc: Pekka Enberg Cc: Peter Zijlstra Cc: Stephane Eranian Cc: Sukadev Bhattiprolu Cc: Wang Nan Link: http://lkml.kernel.org/r/1464924803-22214-8-git-send-email-hekuang@huawei.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/Build | 2 +- tools/perf/util/{unwind-libunwind.c => unwind-libunwind-local.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/util/Build b/tools/perf/util/Build index 8c6c8a0..5e23d85 100644 --- a/tools/perf/util/Build +++ b/tools/perf/util/Build @@ -99,7 +99,7 @@ libperf-$(CONFIG_DWARF) += probe-finder.o libperf-$(CONFIG_DWARF) += dwarf-aux.o libperf-$(CONFIG_LIBDW_DWARF_UNWIND) += unwind-libdw.o -libperf-$(CONFIG_LIBUNWIND) += unwind-libunwind.o +libperf-$(CONFIG_LOCAL_LIBUNWIND) += unwind-libunwind-local.o libperf-$(CONFIG_LIBBABELTRACE) += data-convert-bt.o diff --git a/tools/perf/util/unwind-libunwind.c b/tools/perf/util/unwind-libunwind-local.c similarity index 100% rename from tools/perf/util/unwind-libunwind.c rename to tools/perf/util/unwind-libunwind-local.c