[GIT PULL 0/4] perf tools fixes
Hi Ingo, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf Regards, - Arnaldo Frederic Weisbecker (2): perf hist: Fix hists__browse no-newt case perf hist: Fix missing getline declaration Kirill Smelkov (1): perf trace scripts: Fix typos in perf-tra... 13 May 2010 17:09
lib/btree: Kill unused MAX macro
On Thu, 13 May 2010 01:17:24 +0400 "Denis Kirjanov <kirjanov(a)gmail.com" <kirjanov(a)gmail.com> wrote: Kill unused MAX macro Signed-off-by: Denis Kirjanov <kirjanov(a)gmail.com> --- diff --git a/lib/btree.c b/lib/btree.c index 41859a8..f833949 100644 --- a/lib/btree.c +++ b/lib/btree.c @@ -45,... 14 May 2010 13:55
[PATCH] TPM: ACPI/PNP dependency removal
This patch pushes the ACPI dependency into the device driver code itself. Now, even without ACPI/PNP enabled, the device can be registered using the TIS specified memory space. This will however result in the lack of access to the bios event log, being the only implication of such ACPI removal. Signed-off-by: Ra... 13 May 2010 17:09
[PATCH 2/4] perf hist: Fix missing getline declaration
From: Frederic Weisbecker <fweisbec(a)gmail.com> hist.c needs to include util.h so that it gets stdio.h inclusion with __GNU_SOURCE defined. Fixes: util/hist.c: In function 'hist_entry__parse_objdump_line': util/hist.c:931: erreur: implicit declaration of function 'getline' util/hist.c:931: erreur: nested ex... 13 May 2010 17:09
[PATCH 16/20] drivers/platform/x86: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 17/20] arch/x86/kernel: Use kcalloc
From: Julia Lawall <julia(a)diku.dk> Use kcalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,y,flags; statement S; type T; @@ x = - kmalloc + kcalloc ( - y... 13 May 2010 17:09
[PATCH 6/20] drivers/net: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH 18/20] drivers/video/matrox: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09
[PATCH v2 2/3] EEPROM: 93cx6: Header file cleanup
Change eeprom_93cx6.c header file to format as in conventions Signed-off-by: Abraham Arce <x0066660(a)ti.com> --- drivers/misc/eeprom/eeprom_93cx6.c | 39 ++++++++++++++--------------------- 1 files changed, 16 insertions(+), 23 deletions(-) diff --git a/drivers/misc/eeprom/eeprom_93cx6.c b/drivers/misc/eepro... 13 May 2010 17:09
[PATCH 11/20] drivers/net/wireless/orinoco: Use kzalloc
From: Julia Lawall <julia(a)diku.dk> Use kzalloc rather than the combination of kmalloc and memset. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ expression x,size,flags; statement S; @@ -x = kmalloc(size,flags); +x = kzalloc(size,flags); if (x == N... 13 May 2010 17:09