[GIT PULL v2 0/5] perf tools fixes and improvements
Hi Ingo, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf The probe ones have the issues pointed out by Masami addressed, please let me know if now it is ok, thanks for reviewing them! Regards, - Arnaldo Arnaldo Carvalho de Melo (4): perf tools: Remove s... 18 May 2010 22:31
[PATCH v2 3/5] perf probe: Fix some error exit paths
From: Arnaldo Carvalho de Melo <acme(a)redhat.com> That could leave filedescriptors open and leak memory. Also stop using xmalloc, use malloc and handle results just like other error cases in the same routine that used it. Cc: Frédéric Weisbecker <fweisbec(a)gmail.com> Cc: Masami Hiramatsu <mhiramat(a)redhat.com> C... 18 May 2010 22:31
[PATCH 5/5] perf tools: remove xstrndup, xmalloc, xzalloc
From: Arnaldo Carvalho de Melo <acme(a)redhat.com> All the functions that call this can handle the equivalent, non panic'ing wrapped routines. Cc: Frédéric Weisbecker <fweisbec(a)gmail.com> Cc: Mike Galbraith <efault(a)gmx.de> Cc: Paul Mackerras <paulus(a)samba.org> Cc: Peter Zijlstra <a.p.zijlstra(a)chello.nl> Cc: To... 18 May 2010 22:31
[PATCH v2 4/5] perf probe: Don't call die()
From: Arnaldo Carvalho de Melo <acme(a)redhat.com> Functions that were calling xzalloc also returned -1 when, for other reasons, it could fail, and the calleds are coping with failures, so stop using die() and xzalloc(). Cc: Frédéric Weisbecker <fweisbec(a)gmail.com> Cc: Masami Hiramatsu <mhiramat(a)redhat.com> Cc:... 18 May 2010 22:31
perf: core, add pmu register and lookup functions
On Wed, 2010-05-19 at 02:38 +0800, Cyrill Gorcunov wrote: On Wed, May 19, 2010 at 01:45:02AM +0000, Lin Ming wrote: ... +int perf_event_register_pmu(struct pmu *pmu) +{ + struct pmu *tmp; + int ret = 1; + + rcu_read_lock(); + list_for_each_entry_rcu(tmp, &pmus, entry) { + ... 18 May 2010 22:31
s3c-fb: enable fimd driver for s5pv210.
On Tue, May 18, 2010 at 10:51:24PM +0900, InKi Dae wrote: I'm sorry for being late. this patch is for s5pv210. to support s5pv210, CH_ENABLE bit of SHADOW register should be enabled to enable window layer on s5pv210. I'd like to hold this until the chnages for multi-hardware support and header file cle... 18 May 2010 22:31
[PATCH 12/25] sparc,sunzilog: Add console polling support for sunzilog serial driver
Allow kgdboc to work on sparc hardware with the Zilog serial chips. Signed-off-by: Jason Wessel <jason.wessel(a)windriver.com> Acked-by: David S. Miller <davem(a)davemloft.net> --- drivers/serial/sunzilog.c | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 insertions(+), 0 deletions(-) di... 18 May 2010 22:31
[PATCH 25/25] kdb,debug_core: Allow the debug core to receive a panic notification
It is highly desirable to trap into kdb on panic. The debug core will attempt to register as the first in line for the panic notifier. CC: Ingo Molnar <mingo(a)elte.hu> CC: Andrew Morton <akpm(a)linux-foundation.org> CC: Eric W. Biederman <ebiederm(a)xmission.com> Signed-off-by: Jason Wessel <jason.wessel(a)windriver.c... 18 May 2010 22:31
[PATCH 04/25] kgdb,sparc: Add in kgdb_arch_set_pc for sparc
The new debug core api requires all architectures that use to debug core to implement a function to set the program counter. Signed-off-by: Jason Wessel <jason.wessel(a)windriver.com> Acked-by: David S. Miller <davem(a)davemloft.net> --- arch/sparc/kernel/kgdb_32.c | 6 ++++++ arch/sparc/kernel/kgdb_64.c | 6... 18 May 2010 22:31
[PATCH 3/7] x86,kgdb: Implement early hardware breakpoint debugging
It is not possible to use the hw_breakpoint.c API prior to mm_init(), but it is possible to use hardware breakpoints with the kernel debugger. Prior to smp_init() it is possible to simply write to the dr registers of the boot cpu directly. This can be used up until the kgdb_arch_late() is invoked, at which poin... 18 May 2010 22:31