Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1303406 > unrolled thread
| Started by | Jiri Olsa <jolsa@kernel.org> |
|---|---|
| First post | 2016-01-07 10:20 +0100 |
| Last post | 2016-01-09 17:40 +0100 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 10/13] perf tools: Remove list entry from struct sort_entry Jiri Olsa <jolsa@kernel.org> - 2016-01-07 10:20 +0100
Re: [PATCH 10/13] perf tools: Remove list entry from struct sort_entry Namhyung Kim <namhyung@kernel.org> - 2016-01-07 12:20 +0100
[tip:perf/core] perf tools: Remove list entry from struct sort_entry tip-bot for Jiri Olsa <tipbot@zytor.com> - 2016-01-09 17:40 +0100
| From | Jiri Olsa <jolsa@kernel.org> |
|---|---|
| Date | 2016-01-07 10:20 +0100 |
| Subject | [PATCH 10/13] perf tools: Remove list entry from struct sort_entry |
| Message-ID | <qOeTF-65o-43@gated-at.bofh.it> |
It's no longer needed.
Link: http://lkml.kernel.org/n/tip-geutga492nuhc5d8rncw8834@git.kernel.org
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
---
tools/perf/util/sort.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h
index dec536b6ab3d..687bbb124428 100644
--- a/tools/perf/util/sort.h
+++ b/tools/perf/util/sort.h
@@ -214,8 +214,6 @@ enum sort_type {
*/
struct sort_entry {
- struct list_head list;
-
const char *se_header;
int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
--
2.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Namhyung Kim <namhyung@kernel.org> |
|---|---|
| Date | 2016-01-07 12:20 +0100 |
| Subject | Re: [PATCH 10/13] perf tools: Remove list entry from struct sort_entry |
| Message-ID | <qOgLM-7kJ-5@gated-at.bofh.it> |
| In reply to | #1303406 |
On Thu, Jan 07, 2016 at 10:14:07AM +0100, Jiri Olsa wrote:
> It's no longer needed.
>
> Link: http://lkml.kernel.org/n/tip-geutga492nuhc5d8rncw8834@git.kernel.org
> Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Thanks,
Namhyung
> ---
> tools/perf/util/sort.h | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h
> index dec536b6ab3d..687bbb124428 100644
> --- a/tools/perf/util/sort.h
> +++ b/tools/perf/util/sort.h
> @@ -214,8 +214,6 @@ enum sort_type {
> */
>
> struct sort_entry {
> - struct list_head list;
> -
> const char *se_header;
>
> int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
> --
> 2.4.3
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | tip-bot for Jiri Olsa <tipbot@zytor.com> |
|---|---|
| Date | 2016-01-09 17:40 +0100 |
| Subject | [tip:perf/core] perf tools: Remove list entry from struct sort_entry |
| Message-ID | <qP4IA-87R-67@gated-at.bofh.it> |
| In reply to | #1303406 |
Commit-ID: bb4ced29f5d5ff1d4d51b602dad34a0d15495a67
Gitweb: http://git.kernel.org/tip/bb4ced29f5d5ff1d4d51b602dad34a0d15495a67
Author: Jiri Olsa <jolsa@kernel.org>
AuthorDate: Thu, 7 Jan 2016 10:14:07 +0100
Committer: Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Fri, 8 Jan 2016 12:58:04 -0300
perf tools: Remove list entry from struct sort_entry
It's no longer needed.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Noel Grandin <noelgrandin@gmail.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1452158050-28061-11-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/sort.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h
index dec536b..687bbb12 100644
--- a/tools/perf/util/sort.h
+++ b/tools/perf/util/sort.h
@@ -214,8 +214,6 @@ enum sort_type {
*/
struct sort_entry {
- struct list_head list;
-
const char *se_header;
int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web