[PATCH 03/24] powerpc: remove unused __page_aligned definition.
From: Tim Abbott <tabbott(a)ksplice.com> There is already an architecture-independent __page_aligned_data macro for this purpose, so removing the powerpc-specific macro should be harmless. Signed-off-by: Tim Abbott <tabbott(a)ksplice.com> Cc: Benjamin Herrenschmidt <benh(a)kernel.crashing.org> Cc: Paul Mackerras <p... 19 Feb 2010 19:59
[PATCH 16/24] Rename .text.page_aligned to .text..page_aligned.
Signed-off-by: Denys Vlasenko <vda.linux(a)googlemail.com> --- arch/x86/kernel/acpi/wakeup_32.S | 2 +- arch/x86/kernel/vmlinux.lds.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/kernel/acpi/wakeup_32.S b/arch/x86/kernel/acpi/wakeup_32.S index 8ded418..13ab720 100644 -... 19 Feb 2010 19:59
[PATCH 07/24] Rename .data.gate to .data..gate.
Signed-off-by: Denys Vlasenko <vda.linux(a)googlemail.com> --- arch/ia64/kernel/Makefile.gate | 2 +- arch/ia64/kernel/gate-data.S | 2 +- arch/ia64/kernel/vmlinux.lds.S | 4 ++-- arch/ia64/xen/gate-data.S | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/ia64/kernel/... 19 Feb 2010 19:59
[PATCH 24/24] Rename .text.start to .text..start.
Signed-off-by: Denys Vlasenko <vda.linux(a)googlemail.com> --- arch/mips/lasat/image/head.S | 2 +- arch/mips/lasat/image/romscript.normal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/mips/lasat/image/head.S b/arch/mips/lasat/image/head.S index efb95f2..e0ecda9 10064... 19 Feb 2010 19:59
PM / Hibernate: remove swsusp.c
Hi. Jiri Slaby wrote: Its contents and entry in Makefile were already removed in 8e60c6a1348e17e68ad73589a52a03876e7059be (Shift remaining code from swsusp.c to hibernate.c) but somehow it remained in-place. Signed-off-by: Jiri Slaby <jslaby(a)suse.cz> Cc: Nigel Cunningham <nigel(a)tuxonice.net> ... 19 Feb 2010 18:52
[PATCH v3 2/2] e1000e: Don't disable jumbo frames on 82573L due to eeprom contents
On Thursday, February 11, 2010 10:15 AM, Matthew Garrett wrote: According to the 82573L errata, jumbo frames will work correctly if ASPM is disabled. Since we disable ASPM on these devices, leave jumbo frames enabled. Signed-off-by: Matthew Garrett <mjg(a)redhat.com> --- Updated to provide t... 19 Feb 2010 17:44
[tip:x86/setup] x86, setup: Don't skip mode setting for the standard VGA modes
Commit-ID: 8e92dc767abb58357e696a48fc3d8ce615a9c01a Gitweb: http://git.kernel.org/tip/8e92dc767abb58357e696a48fc3d8ce615a9c01a Author: H. Peter Anvin <hpa(a)zytor.com> AuthorDate: Fri, 19 Feb 2010 13:21:38 -0800 Committer: H. Peter Anvin <hpa(a)zytor.com> CommitDate: Fri, 19 Feb 2010 13:21:38 -0800 x86, s... 19 Feb 2010 17:44
ldisc n_tty: add new method n_tty_inherit_ops()
On Tue, 16 Feb 2010 10:51:22 +0100 Rodolfo Giometti <giometti(a)linux.it> wrote: }; + +void n_tty_inherit_ops(struct tty_ldisc_ops *ops) +{ + *ops = tty_ldisc_N_TTY; + ops->owner = NULL; + ops->refcount = ops->flags = 0; +} +EXPORT_SYMBOL_GPL(n_tty_inherit_ops); Most (nearly all) functio... 19 Feb 2010 17:44
r8169: enable 64-bit DMA by default for PCI Express devices
From: Robert Hancock <hancockrwd(a)gmail.com> Date: Wed, 17 Feb 2010 21:06:41 -0600 Currently use of 64-bit DMA is disabled in r8169 unless the user passes the use_dac module option. This is reasonable for conventional PCI devices where broken chipsets may not handle dual-address-cycle transfers properly for ... 19 Feb 2010 16:37
[PATCH] i2c: dereference of NULL if request_irq() failsin sh_mobile_i2c_hook_irqs()
In the last iteration k equals 0, so we call platform_get_resource() with -1 as a third argument. Since platform_get_resource() uses an unsigned it is converted to 0xffffffff. platform_get_resource() fails for every index and returns NULL. A test is lacking and we dereference NULL. Also the variable q was assigne... 19 Feb 2010 15:30