perf: Generic perf_sample_data initialization
On Wed, Mar 03, 2010 at 05:39:41PM +0100, Peter Zijlstra wrote: This makes it easier to extend perf_sample_data and fixes a bug on arm and sparc, which failed to set ->raw to NULL, which can cause crashes when combined with PERF_SAMPLE_RAW. It also optimizes PowerPC and tracepoint, because the struct ... 3 Mar 2010 16:25
[PATCH 3/3] cpufreq: add sysfs knob for toggling core performance boost
From 1ba7af20a37b72a4375d3e3ddd33a033f204ee21 Mon Sep 17 00:00:00 2001 From: Mark Langsdorf <mark.langsdorf(a)amd.com> Date: Wed, 3 Mar 2010 14:34:47 -0600 Subject: [PATCH 2/2] cpufreq: add sysfs knob for toggling core performance boost Signed-off-by: Borislav Petkov <borislav.petkov(a)amd.com> Tested-by: Mark Langs... 3 Mar 2010 16:25
[PATCH] pid_ns: zap_pid_ns_processes: use SEND_SIG_NOINFO instead of force_sig()
zap_pid_ns_processes() uses force_sig(SIGKILL) to ensure SIGKILL will be delivered to sub-namespace inits as well. This is correct, but we are going to change force_sig_info() semantics. See http://bugzilla.kernel.org/show_bug.cgi?id=15395#c31 We can use send_sig_info(SEND_SIG_NOINFO) instead, since 614c517d7c00... 3 Mar 2010 16:25
Driver-Core: devtmpfs - remove EXPERIMENTAL and enable it by default
On Wed, Mar 3, 2010 at 06:46, Linus Torvalds <torvalds(a)linux-foundation.org> wrote: Greg, please shut down people like Kay that want to enable something by default. We want a _minimal_  working config, not a maximal. If somebody has a distro that needs this, they can enable it _then_. Not "let's try to mak... 3 Mar 2010 17:33
[PATCH] cxgb3: fix hot plug removal crash
From: Divy Le Ray <divy(a)chelsio.com> queue restart tasklets need to be stopped after napi handlers are stopped since the latter can restart them. So stop them after stopping napi. Signed-off-by: Divy Le Ray <divy(a)chelsio.com> --- drivers/net/cxgb3/cxgb3_main.c | 1 + 1 files changed, 1 insertions(+), 0... 3 Mar 2010 15:16
[PATCH 07/18] KVM: SVM: Implement MMU helper functions for Nested Nested Paging
This patch adds the helper functions which will be used in the mmu context for handling nested nested page faults. Signed-off-by: Joerg Roedel <joerg.roedel(a)amd.com> --- arch/x86/kvm/svm.c | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/arch/x86/kvm/sv... 3 Mar 2010 15:16
[PATCH mmotm] xfs: needs LIST_SORT
From: Randy Dunlap <randy.dunlap(a)oracle.com> xfs uses list_sort (library function), so it needs to select it. Fixes these build errors: fs/xfs/linux-2.6/xfs_buf.c:1918: undefined reference to `list_sort' fs/xfs/linux-2.6/xfs_buf.c:1996: undefined reference to `list_sort' fs/xfs/linux-2.6/xfs_buf.c:1950: undefine... 3 Mar 2010 15:16
[PATCH 01/18] KVM: MMU: Check for root_level instead of long mode
The walk_addr function checks for !is_long_mode in its 64 bit version. But what is meant here is a check for pae paging. Change the condition to really check for pae paging so that it also works with nested nested paging. Signed-off-by: Joerg Roedel <joerg.roedel(a)amd.com> --- arch/x86/kvm/paging_tmpl.h | 4 ... 3 Mar 2010 15:16
[PATCH 15/18] KVM: MMU: Propagate the right fault back to the guest after gva_to_gpa
This patch implements logic to make sure that either a page-fault/page-fault-vmexit or a nested-page-fault-vmexit is propagated back to the guest. Signed-off-by: Joerg Roedel <joerg.roedel(a)amd.com> --- arch/x86/kvm/mmu.h | 1 + arch/x86/kvm/paging_tmpl.h | 2 ++ arch/x86/kvm/x86.c | 15... 3 Mar 2010 15:16
[PATCH 02/18] KVM: MMU: Make tdp_enabled a mmu-context parameter
This patch changes the tdp_enabled flag from its global meaning to the mmu-context. This is necessary for Nested SVM with emulation of Nested Paging where we need an extra MMU context to shadow the Nested Nested Page Table. Signed-off-by: Joerg Roedel <joerg.roedel(a)amd.com> --- arch/x86/include/asm/kvm_host.h ... 3 Mar 2010 15:16