x86 acpi/irq: Fix harmless typo.
* Eric W. Biederman <ebiederm(a)xmission.com> wrote: YH noticed that the function irq_to_gsi has an off by one error when translating high irq numbers to gsis. Today this bug is harmless because all of the callers restrict their input to the first 16 irqs so this bug does not matter, but we should fix it... 5 May 2010 06:02
[PATCH] x86 acpi/irq: Fix harmless typo.
YH noticed that the function irq_to_gsi has an off by one error when translating high irq numbers to gsis. Today this bug is harmless because all of the callers restrict their input to the first 16 irqs so this bug does not matter, but we should fix it to avoid confusion and later. Signed-off-by: Eric W. Bied... 5 May 2010 06:02
x86, acpi/irq: Handle isa irqs that are not identity mapped to gsi's.
* tip-bot for Eric W. Biederman <ebiederm(a)xmission.com> wrote: Commit-ID: 988856ee1623bd37e384105f7bb2b7fe44c009f6 Gitweb: http://git.kernel.org/tip/988856ee1623bd37e384105f7bb2b7fe44c009f6 Author: Eric W. Biederman <ebiederm(a)xmission.com> AuthorDate: Tue, 30 Mar 2010 01:07:15 -0700 Committe... 5 May 2010 07:07
[PATCH 2/2] serial: Add driver for the Altera UART
Add an UART driver for the UART component available as a SOPC (System on Programmable Chip) component for Altera FPGAs. Signed-off-by: Tobias Klauser <tklauser(a)distanz.ch> --- drivers/serial/Kconfig | 31 +++ drivers/serial/Makefile | 1 + drivers/serial/altera_uart.c | 570 +++++++++++++++++++... 6 May 2010 09:39
[PATCH v5 0/2] serial: Drivers for Altera UARTs
This is the fifth version of the patchset to add the serial drivers for the Altera UARTs. The following changes were made on top of the fourth version submitted on 30 Mar 2010: - Fix Kconfig so altera_uart and altera_jtaguart can be properly built as modules. Add dependecy SERIAL_ALTERA_JTAGUART=y (instead of... 5 May 2010 04:57
don't compute pvclock adjustments if we trust the tsc
On 05/03/2010 06:52 PM, Glauber Costa wrote: If the HV told us we can fully trust the TSC, skip any correction Signed-off-by: Glauber Costa<glommer(a)redhat.com> --- arch/x86/include/asm/kvm_para.h | 5 +++++ arch/x86/include/asm/pvclock-abi.h | 1 + arch/x86/kernel/kvmclock.... 5 May 2010 04:57
[v5 Patch 3/3] bonding: make bonding support netpoll
Based on Andy's work, but I modified a lot. Similar to the patch for bridge, this patch does: 1) implement the 2 methods to support netpoll for bonding; 2) modify netpoll during forwarding packets via bonding; 3) disable netpoll support of bonding when a netpoll-unabled device is added to bonding; ... 5 May 2010 04:57
[PATCH V2] ubi: init even if mtd device cannot be attached, if built into kernel
Ubi can be built into the kernel or be compiled as a kernel module. Further on the command line one can specify mtd devices to be attach to ubi while loading. In the current implementation the ubi driver refuses to load if one of the mtd devices cannot be attached. Consider: 1) ubi compiled into the kernel and ... 5 May 2010 04:57
intel_txt: enable SMX flag for VMXON in KVM
On 05/05/2010 01:38 PM, Shane Wang wrote: Per Intel SDM 3B 20.7, for IA32_FEATURE_CONTROL MSR Bit 1 enables VMXON in SMX operation. If the bit is clear, execution of VMXON in SMX operation causes a general-protection exception. Bit 2 enables VMXON outside SMX operation. If the bit is clear, execution of VMXON ... 5 May 2010 04:57
ubi: init even if mtd device cannot be attached, if built into kernel
Artem Bityutskiy wrote: On Wed, 2010-05-05 at 08:12 +0300, Artem Bityutskiy wrote: +#ifdef CONFIG_MTD_UBI_MODULE +static inline int ubi_is_module(void) { return 1; } +#else +static inline int ubi_is_module(void) { return 0; } +#endif I really hate these ifdefs. Dunno why, but they feel d... 5 May 2010 04:57