staging/dream: add missing include files/fix compilation
On Fri, Dec 25, 2009 at 09:59:18PM +0100, Pavel Machek wrote: This adds missing include files, so it should now compile. ifdef guards were added to Kconfig, so it should not cause problems on non-arch-msm machines. Signed-off-by: Pavel Machek <pavel(a)ucw.cz> Odd, this doesn't apply to the linux-next t... 1 Mar 2010 17:36
[PATCH] ACPICA: wrong acpi_parse_state assigned acpi_ps_init_scope() ?
Assign the package end, not the last AML byte. Signed-off-by: Roel Kluin <roel.kluin(a)gmail.com> --- Is this right? diff --git a/drivers/acpi/acpica/psscope.c b/drivers/acpi/acpica/psscope.c index 2feca5c..a8dfe16 100644 --- a/drivers/acpi/acpica/psscope.c +++ b/drivers/acpi/acpica/psscope.c @@ -118,7 +118,7... 14 Jan 2010 20:17
[PATCH] net/core/sock.c: quiet sparse noise
net/core/sock.c: quiet sparse noise In sock_getsockopt the symbol 'lv' is declared as an unsigned int type, probably due to sizeof returning a size_t which is really an unsigned int. This produces a sparse warning for SO_PEERNAME due to the sock->ops->getname() call: warning: incorrect type in argument 3 (d... 14 Jan 2010 20:17
[PATCH] powerpc/kvm: kvm_sregs->...sr[] were assigned twice in kvm_arch_vcpu_ioctl_get_sregs()
Once is enough. Signed-off-by: Roel Kluin <roel.kluin(a)gmail.com> --- diff --git a/arch/powerpc/kvm/book3s.c b/arch/powerpc/kvm/book3s.c index 3e294bd..85bb787 100644 --- a/arch/powerpc/kvm/book3s.c +++ b/arch/powerpc/kvm/book3s.c @@ -777,7 +777,6 @@ int kvm_arch_vcpu_ioctl_get_sregs(struct kvm_vcpu *vcpu, }... 14 Jan 2010 19:10
[2/9] hwmon: (adt7462) Fix pin 28 monitoring
2.6.31-stable review patch. If anyone has any objections, please let us know. ------------------ From: Roger Blofeld <blofeldus(a)yahoo.com> commit bb595c923bc51dff9cdd112de18deb57ac7945d2 upstream. The ADT7462_PIN28_VOLT value is a 4-bit field, so the corresponding shift must be 4. Signed-off-by: Roger ... 14 Jan 2010 18:03
[PATCH 08/52] sunrpc: fix peername failed on closed listener
From: Xiaotian Feng <dfeng(a)redhat.com> commit b292cf9ce70d221c3f04ff62db5ab13d9a249ca8 upstream. There're some warnings of "nfsd: peername failed (err 107)!" socket error -107 means Transport endpoint is not connected. This warning message was outputed by svc_tcp_accept() [net/sunrpc/svcsock.c], when kernel_ge... 14 Jan 2010 18:03
[PATCH 31/52] ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2
From: Daniel T Chen <crimsun(a)ubuntu.com> commit dfb12eeb0f04b37e5eb3858864d074af4ecd2ac7 upstream. BugLink: https://bugs.launchpad.net/ubuntu/+bug/498863 This mainboard needs ac97_codec=0. Tested-by: Apoorv Parle <apparle(a)yahoo.co.in> Signed-off-by: Daniel T Chen <crimsun(a)ubuntu.com> Signed-off-by: Takash... 14 Jan 2010 18:03
[PATCH 3/3] macvlan: use rtnl_link_ops->dellink during unregister notications
Different macvlan device types will need to release resources in their own type specific dellink operation. This change ensures they will for unregister notifications on the lower level device. Signed-off-by: Patrick Mullaney <pmullaney(a)novell.com> --- drivers/net/macvlan.c | 2 +- 1 files changed, 1 inse... 14 Jan 2010 18:03
[PATCH] drm/i915: disable LVDS downclock by default
On Thu, 14 Jan 2010, Peter Clifton wrote: Would it not be a better idea to turn this feature on by default, then use quirks to disable it on the afflicted borken machines? No. "Working" is good. "Broken" is bad. We don't default to clearly unsafe models. Maybe a few years from now, when people... 14 Jan 2010 16:55
[PATCH] [NET]: da.s_net not copied but assigned to itself in aarp_rcv()
da.s_net was not copied but assigned to itself. Signed-off-by: Roel Kluin <roel.kluin(a)gmail.com> --- diff --git a/net/appletalk/aarp.c b/net/appletalk/aarp.c index 9d4adfd..f2b3b56 100644 --- a/net/appletalk/aarp.c +++ b/net/appletalk/aarp.c @@ -819,7 +819,7 @@ static int aarp_rcv(struct sk_buff *skb, struct n... 14 Jan 2010 15:48