* [GIT PULL 0/1] perf/urgent fix
@ 2015-06-25 16:36 Arnaldo Carvalho de Melo
2015-06-25 16:36 ` [PATCH 1/1] perf bench numa: Fix to show proper convergence stats Arnaldo Carvalho de Melo
2015-06-26 8:37 ` [GIT PULL 0/1] perf/urgent fix Ingo Molnar
0 siblings, 2 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-06-25 16:36 UTC (permalink / raw)
To: Ingo Molnar
Cc: linux-kernel, Arnaldo Carvalho de Melo, Jiri Olsa,
Masami Hiramatsu, Namhyung Kim, Srikar Dronamraju, Vinson Lee,
Arnaldo Carvalho de Melo
Hi Ingo,
Please consider pulling,
- Arnaldo
The following changes since commit 0f02adaa49af23ab9fa05375f4a237da6014401b:
Merge tag 'perf-urgent-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2015-06-20 01:07:02 +0200)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo
for you to fetch changes up to 2b42b09b88c831ba4da2d669581dde371c38c2af:
perf bench numa: Fix to show proper convergence stats (2015-06-25 12:28:35 -0300)
----------------------------------------------------------------
perf/urgent fix:
- Fix to show proper convergence stats in 'perf bench numa' (Srikar Dronamraju)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
----------------------------------------------------------------
Srikar Dronamraju (1):
perf bench numa: Fix to show proper convergence stats
tools/perf/util/cloexec.c | 4 ++++
1 file changed, 4 insertions(+)
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH 1/1] perf bench numa: Fix to show proper convergence stats
2015-06-25 16:36 [GIT PULL 0/1] perf/urgent fix Arnaldo Carvalho de Melo
@ 2015-06-25 16:36 ` Arnaldo Carvalho de Melo
2015-06-26 8:37 ` [GIT PULL 0/1] perf/urgent fix Ingo Molnar
1 sibling, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-06-25 16:36 UTC (permalink / raw)
To: Ingo Molnar
Cc: linux-kernel, Srikar Dronamraju, Jiri Olsa, Masami Hiramatsu,
Namhyung Kim, Vinson Lee, Arnaldo Carvalho de Melo
From: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
With commit: e1e455f4f4d3 (perf tools: Work around lack of sched_getcpu
in glibc < 2.6), perf_bench numa mem with -c or -m option is not able to
correctly calculate convergence.
With the above commit, sched_getcpu always seems to return -1. The
intention of commit e1e455f was to add a sched_getcpu in glibc < 2.6.
Hence keep the sched_getcpu definition under an ifdef.
This regression happened occurred between v4.0 and v4.1
Signed-off-by: Srikar Dronamraju <srikar@linux.vnet.ibm.com>
Acked-by: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Vinson Lee <vlee@twitter.com>
Fixes: e1e455f4f4d3 ("perf tools: Work around lack of sched_getcpu in glibc < 2.6")
Link: http://lkml.kernel.org/r/20150624111004.GA5220@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/cloexec.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tools/perf/util/cloexec.c b/tools/perf/util/cloexec.c
index 85b523885f9d..2babddaa2481 100644
--- a/tools/perf/util/cloexec.c
+++ b/tools/perf/util/cloexec.c
@@ -7,11 +7,15 @@
static unsigned long flag = PERF_FLAG_FD_CLOEXEC;
+#ifdef __GLIBC_PREREQ
+#if !__GLIBC_PREREQ(2, 6)
int __weak sched_getcpu(void)
{
errno = ENOSYS;
return -1;
}
+#endif
+#endif
static int perf_flag_probe(void)
{
--
2.1.0
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [GIT PULL 0/1] perf/urgent fix
2015-06-25 16:36 [GIT PULL 0/1] perf/urgent fix Arnaldo Carvalho de Melo
2015-06-25 16:36 ` [PATCH 1/1] perf bench numa: Fix to show proper convergence stats Arnaldo Carvalho de Melo
@ 2015-06-26 8:37 ` Ingo Molnar
1 sibling, 0 replies; 3+ messages in thread
From: Ingo Molnar @ 2015-06-26 8:37 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo
Cc: linux-kernel, Jiri Olsa, Masami Hiramatsu, Namhyung Kim,
Srikar Dronamraju, Vinson Lee, Arnaldo Carvalho de Melo
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> The following changes since commit 0f02adaa49af23ab9fa05375f4a237da6014401b:
>
> Merge tag 'perf-urgent-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2015-06-20 01:07:02 +0200)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo
>
> for you to fetch changes up to 2b42b09b88c831ba4da2d669581dde371c38c2af:
>
> perf bench numa: Fix to show proper convergence stats (2015-06-25 12:28:35 -0300)
>
> ----------------------------------------------------------------
> perf/urgent fix:
>
> - Fix to show proper convergence stats in 'perf bench numa' (Srikar Dronamraju)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Srikar Dronamraju (1):
> perf bench numa: Fix to show proper convergence stats
>
> tools/perf/util/cloexec.c | 4 ++++
> 1 file changed, 4 insertions(+)
Pulled, thanks Arnaldo!
Ingo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-26 8:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-25 16:36 [GIT PULL 0/1] perf/urgent fix Arnaldo Carvalho de Melo
2015-06-25 16:36 ` [PATCH 1/1] perf bench numa: Fix to show proper convergence stats Arnaldo Carvalho de Melo
2015-06-26 8:37 ` [GIT PULL 0/1] perf/urgent fix Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome