[PATCH] [3/23] x86: Avoid unused by set variables in rdmsr
Avoids quite a lot of warnings with a gcc 4.6 -Wall build because this happens in a commonly used header file (apic.h) Cc: x86(a)kernel.org Signed-off-by: Andi Kleen <ak(a)linux.intel.com> --- arch/x86/include/asm/msr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: linux-2.6.35-rc2-g... 10 Jun 2010 07:47
[PATCH] [6/23] perf: Fix set but unused variables in perf
Just dead code I believe Cc: peterz(a)infradead.org Cc: mingo(a)elte.hu Signed-off-by: Andi Kleen <ak(a)linux.intel.com> --- arch/x86/kernel/cpu/perf_event.c | 5 ----- 1 file changed, 5 deletions(-) Index: linux-2.6.35-rc2-gcc/arch/x86/kernel/cpu/perf_event.c ===========================================... 10 Jun 2010 07:47
[PATCH] [8/23] KGDB: Remove set but unused newPC
I'm not fully sure this is the correct fix, maybe this was a bug and newPC should really have a side effect. Jason? Found by gcc 4.6's new warnings Cc: jason.wessel(a)windriver.com Signed-off-by: Andi Kleen <ak(a)linux.intel.com> --- arch/x86/kernel/kgdb.c | 3 --- 1 file changed, 3 deletions(-) In... 10 Jun 2010 07:47
[PATCH] [22/23] BLOCK: Fix unused but set variables in blk-merge
Just some dead code. Signed-off-by: Andi Kleen <ak(a)linux.intel.com> --- block/blk-merge.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: linux-2.6.35-rc2-gcc/block/blk-merge.c =================================================================== --- linux-2.6.35-rc2-gcc.orig/block/blk-m... 10 Jun 2010 07:47
[PATCH] [11/23] KVM: Fix KVM_SET_SIGNAL_MASK
Real bug fix. When the user passed in a NULL mask pass this on from the ioctl handler. Found by gcc 4.6's new warnings. Cc: avi(a)redhat.com Cc: kvm(a)vger.kernel.org Signed-off-by: Andi Kleen <ak(a)linux.intel.com> --- virt/kvm/kvm_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Inde... 10 Jun 2010 07:47
[PATCH 1/1] VFS: introduce s_dirty accessors
From: Artem Bityutskiy <Artem.Bityutskiy(a)nokia.com> This patch introduces 3 VFS accessors: 'sb_mark_dirty()', 'sb_mark_clean()', and 'sb_is_dirty()'. They simply set 'sb->s_dirt' or test 'sb->s_dirt'. The plan is to make every FS use these accessors later instead of manipulating the 'sb->s_dirt' flag directly. ... 10 Jun 2010 07:47
I am a Manager/financial consultant, A client of mine died in 2007 on Kenya plane crash and he has a lodgment fund to claims US$14.7M. And no other person knows about this account. If you are interested forward to me your names, cell, Phone/fax, p
KINDLY CONTACT ME FOR FURTHER INFORMATION AND CLARIFICATION -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ ... 10 Jun 2010 07:47
perf: Introduce task, softirq and hardirq contexts exclusion
On Thu, 2010-06-10 at 05:49 +0200, Frederic Weisbecker wrote: @@ -642,17 +643,31 @@ event_sched_in(struct perf_event *event, if (event->state <= PERF_EVENT_STATE_OFF) return 0; - event->state = PERF_EVENT_STATE_ACTIVE; + if (event->attr.exclude_task) + ... 10 Jun 2010 07:47
[PATCH 0/1] VFS: introduce s_dirty accessors
Hi Linus, would it be possible to add the following patch to your tree. I'm trying to lessen amount of useless wake-ups in the kernel, and the 'sync_supers' thread if one of those kernel threads which wakes up every 5 seconds to (mostly) do nothing. This is still work in progress, but putting the below patch t... 10 Jun 2010 07:47
perf: Provide a proper stop action for software events
On Thu, 2010-06-10 at 05:49 +0200, Frederic Weisbecker wrote: In order to introduce new context exclusions, software events will have to eventually stop when needed. We'll want perf_event_stop() to act on every events. To achieve this, remove the stub stop/start pmu callbacks of software and tracepoi... 12 Jun 2010 06:06