First  |  Prev |  Next  |  Last
Pages: 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
[PATCH 02/15] remove unnecessary includes
Signed-off-by: dann frazier <dannf(a)hp.com> --- drivers/watchdog/hpwdt.c | 10 ---------- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c index 64ea6fc..fc81122 100644 --- a/drivers/watchdog/hpwdt.c +++ b/drivers/watchdog/hpwdt.c @@ -16,30 +... 27 Jul 2010 20:36
[PATCH 09/15] Despecificate driver from iLO2
This driver supports both iLO2 and iLO3, but our user-visible strings currently only reference iLO2. Let's just call it "iLO" to avoid having to update strings for each iLO generation. This driver doesn't support iLO ASICs prior to iLO2, but that is sufficiently explained in Kconfig. Signed-off-by: dann frazier <... 27 Jul 2010 20:36
[PATCH 11/15] Make x86 assembly ifdef guard more strict
The 32-bit assembly is guarded by an #ifndef CONFIG_X86_64. Kconfig prevents us from building this driver on !X86, so that happens to suffice - but we should really lock it down to #ifdef CONFIG_X86_32. Signed-off-by: dann frazier <dannf(a)hp.com> --- drivers/watchdog/hpwdt.c | 12 +++++------- 1 files changed... 27 Jul 2010 20:36
[PATCH 00/15] hpwdt: make NMI code a config option (+ other cleanup)
hwpdt includes an NMI-decoding feature, but the watchdog interface is quite usable without it. This patchset makes it possible to build hpwdt without the NMI functionality, as well as some general cleanup. Kconfig | 22 +++++-- hpwdt.c | 181 ++++++++++++++++++++++++++++++++++++---------------------------- 2... 27 Jul 2010 20:36
[PATCH 12/15] Construct status message w/ kasprintf and emit it with dev_info
Constructing the string dynamically w/ kasprintf will make it easier to ifdef-out parts of it. Also, this is for a device, so let's use dev_info. Signed-off-by: dann frazier <dannf(a)hp.com> --- drivers/watchdog/hpwdt.c | 20 ++++++++++++-------- 1 files changed, 12 insertions(+), 8 deletions(-) diff --git a... 27 Jul 2010 20:36
Question missing menul.lst file
I have already clone the mainline and follw the steps sugested in kernelnewbies in order compile the kenel I was working in ubuntu 10.04 i followed all the instruction in this way $make menuconfig $make #make modules_install #make install but then they put really explicit If you're using Ubuntu, you will... 27 Jul 2010 23:53
[PATCH 03/15] include spinlock.h
We use a spinlock, but lacked the include Signed-off-by: dann frazier <dannf(a)hp.com> --- drivers/watchdog/hpwdt.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c index fc81122..48bb536 100644 --- a/drivers/watchdog/hpwdt.c +++ b/dr... 27 Jul 2010 20:36
asm-generic: Use raw_local_irq_save/restore instead local_irq_save/restore
On Tue, Jul 27, 2010 at 19:18, Andrew Morton wrote: On Mon, 26 Jul 2010 10:49:50 +0200 Michal Simek wrote: start/stop_critical_timing function for preemptirqsoff, preemptoff and irqsoff tracers contains atomic_inc and atomic_dec operations. Atomic operations used local_irq_save/restore macros to ensu... 28 Jul 2010 02:03
powerpc: Simplify update_vsyscall
On Tue, Jul 13, 2010 at 05:56:21PM -0700, John Stultz wrote: Currently powerpc's update_vsyscall calls an inline update_gtod. However, both are straightforward, and there are no other users, so this patch merges update_gtod into update_vsyscall. Compiles, but otherwise untested. This and the follow... 27 Jul 2010 21:42
[PATCH v2] tracing: sanitize value returned from write(trace_marker, "...", len)
Now with corrected changelog. --- From: Marcin Slusarz <marcin.slusarz(a)gmail.com> Subject: [PATCH] tracing: sanitize value returned from write(trace_marker, "...", len) When userspace code writes non-new-line-terminated string to trace_marker file, write handler appends new-line and returns number of bytes wri... 27 Jul 2010 20:35
First  |  Prev |  Next  |  Last
Pages: 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383