Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1342875
| From | tip-bot for Jiri Olsa <tipbot@zytor.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [tip:perf/core] perf tools: Make cl_address global |
| Date | 2016-02-25 07:40 +0100 |
| Message-ID | <r5XKG-8ej-13@gated-at.bofh.it> (permalink) |
| References | <r2n11-6UV-27@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Commit-ID: e95cf700b1b267d912ee779c3ab36e582111a52d
Gitweb: http://git.kernel.org/tip/e95cf700b1b267d912ee779c3ab36e582111a52d
Author: Jiri Olsa <jolsa@kernel.org>
AuthorDate: Mon, 15 Feb 2016 09:34:32 +0100
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Tue, 23 Feb 2016 12:09:02 -0300
perf tools: Make cl_address global
It'll be used in following patches.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1455525293-8671-3-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/sort.c | 6 ------
tools/perf/util/sort.h | 5 +++++
2 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/tools/perf/util/sort.c b/tools/perf/util/sort.c
index 6d0f858..5f94ee7 100644
--- a/tools/perf/util/sort.c
+++ b/tools/perf/util/sort.c
@@ -1015,12 +1015,6 @@ static int hist_entry__snoop_snprintf(struct hist_entry *he, char *bf,
return repsep_snprintf(bf, size, "%-*s", width, out);
}
-static inline u64 cl_address(u64 address)
-{
- /* return the cacheline of the address */
- return (address & ~(cacheline_size - 1));
-}
-
static int64_t
sort__dcacheline_cmp(struct hist_entry *left, struct hist_entry *right)
{
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h
index 89a1273..46f159f 100644
--- a/tools/perf/util/sort.h
+++ b/tools/perf/util/sort.h
@@ -162,6 +162,11 @@ static inline float hist_entry__get_percent_limit(struct hist_entry *he)
return period * 100.0 / total_period;
}
+static inline u64 cl_address(u64 address)
+{
+ /* return the cacheline of the address */
+ return (address & ~(cacheline_size - 1));
+}
enum sort_mode {
SORT_MODE__NORMAL,
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[tip:perf/core] perf tools: Make cl_address global tip-bot for Jiri Olsa <tipbot@zytor.com> - 2016-02-25 07:40 +0100
csiph-web