From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753376AbbEFCza (ORCPT ); Tue, 5 May 2015 22:55:30 -0400 Received: from terminus.zytor.com ([198.137.202.10]:35427 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752893AbbEFCzX (ORCPT ); Tue, 5 May 2015 22:55:23 -0400 Date: Tue, 5 May 2015 19:55:04 -0700 From: tip-bot for Namhyung Kim Message-ID: Cc: tglx@linutronix.de, jolsa@redhat.com, a.p.zijlstra@chello.nl, namhyung@kernel.org, acme@redhat.com, mingo@kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com, dsahern@gmail.com Reply-To: jolsa@redhat.com, tglx@linutronix.de, mingo@kernel.org, linux-kernel@vger.kernel.org, namhyung@kernel.org, a.p.zijlstra@chello.nl, acme@redhat.com, hpa@zytor.com, dsahern@gmail.com In-Reply-To: <1429416255-12070-2-git-send-email-namhyung@kernel.org> References: <1429416255-12070-2-git-send-email-namhyung@kernel.org> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf hists: Get rid of position field from struct hist_entry Git-Commit-ID: cc5e461ae8e071a95bf6ee917b50998dc31cae17 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: cc5e461ae8e071a95bf6ee917b50998dc31cae17 Gitweb: http://git.kernel.org/tip/cc5e461ae8e071a95bf6ee917b50998dc31cae17 Author: Namhyung Kim AuthorDate: Sun, 19 Apr 2015 13:04:09 +0900 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 29 Apr 2015 10:37:44 -0300 perf hists: Get rid of position field from struct hist_entry It's not used anywhere, let's get rid of it. Signed-off-by: Namhyung Kim Cc: David Ahern Cc: Jiri Olsa Cc: Peter Zijlstra Link: http://lkml.kernel.org/r/1429416255-12070-2-git-send-email-namhyung@kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/sort.h | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h index 846036a..af192f1 100644 --- a/tools/perf/util/sort.h +++ b/tools/perf/util/sort.h @@ -106,7 +106,6 @@ struct hist_entry { u8 filtered; char *srcline; struct symbol *parent; - unsigned long position; struct rb_root sorted_chain; struct branch_info *branch_info; struct hists *hists;