[PATCH] virtio-scsi: Skip setting affinity on uninitialized vq

2014-04-11 Thread Fam Zheng
virtscsi_init calls virtscsi_remove_vqs on err, even before initializing the vqs. The latter calls virtscsi_set_affinity, so let's check the pointer there before setting affinity on it. This fixes a panic when setting device's num_queues=2 on RHEL 6.5: qemu-system-x86_64 ... \ -device

Re: [PATCH] drm/nouveau/bios: fix bug introduced in 457e77b2

2014-04-11 Thread Ben Skeggs
On Thu, Apr 10, 2014 at 5:33 AM, Andreas Noever andreas.noe...@gmail.com wrote: 457e77b2 effectively replaces (... 0xff00) 8 with (... 8) 8. Which does not do the same and breaks boot on my machine. Restore the old behaviour and remove the unnecessary cast. Signed-off-by: Andreas

Re: Backport cpuidle: Check the result of cpuidle_get_driver() against NULL

2014-04-11 Thread Luis Henriques
(re-sending, now with a fixed stable mailing-list address) On Thu, Apr 10, 2014 at 05:55:40PM +0100, Mark Brown wrote: I'd like to propose 34e02c05bb1e (cpuidle: Check the result of cpuidle_get_driver() against NULL) for backporting to -stable. This is a small, non-invasive patch readily

Re: [PATCH] drm/radeon: fix runpm handling on APUs (v4)

2014-04-11 Thread Christian König
Am 11.04.2014 04:29, schrieb Alex Deucher: Don't try and runtime suspend the APU in PX systems. We only want to power down the dGPU. v2: fix harder v3: fix stupid typo v4: consolidate runpm enablement to a single flag bugs: https://bugs.freedesktop.org/show_bug.cgi?id=75127

RE: [PATCH] drm/radeon: fix runpm handling on APUs (v4)

2014-04-11 Thread Deucher, Alexander
-Original Message- From: Christian König [mailto:deathsim...@vodafone.de] Sent: Friday, April 11, 2014 9:10 AM To: Alex Deucher; dri-de...@lists.freedesktop.org Cc: Deucher, Alexander; stable@vger.kernel.org Subject: Re: [PATCH] drm/radeon: fix runpm handling on APUs (v4) Am

Re: Re: [PATCH] PCI: Add new PCI id for Intel GPU interrupt quirk

2014-04-11 Thread Thomas Jarosch
Hi Greg, On Monday, 7. April 2014 09:58:08 Greg KH wrote: On Mon, Apr 07, 2014 at 03:10:32PM +0200, Thomas Jarosch wrote: After a CPU upgrade while keeping the same mainboard, we faced spurious interrupt problems again. .. formletter This is not the correct way to submit patches for

Re: [PATCH] virtio-scsi: Skip setting affinity on uninitialized vq

2014-04-11 Thread Greg KH
On Fri, Apr 11, 2014 at 03:23:45PM +0800, Fam Zheng wrote: virtscsi_init calls virtscsi_remove_vqs on err, even before initializing the vqs. The latter calls virtscsi_set_affinity, so let's check the pointer there before setting affinity on it. This fixes a panic when setting device's

Re: [Intel-gfx] [PATCH] drm/i915: Allow user modes to exceed DVI 165MHz limit

2014-04-11 Thread Jani Nikula
Pushed to -fixes, thanks for the patch and Daniel's r-b on IRC. BR, Jani. On Thu, 27 Mar 2014, ville.syrj...@linux.intel.com wrote: From: Ville Syrjälä ville.syrj...@linux.intel.com In commit commit 6375b768a9850b6154478993e5fb566fa4614a9c Author: Ville Syrjälä

[PATCH 3/3] drm/radeon: re-enable mclk dpm on R7 260X asics

2014-04-11 Thread Alex Deucher
If the new mc ucode is available. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/ci_dpm.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/ci_dpm.c b/drivers/gpu/drm/radeon/ci_dpm.c

[PATCH 1/3] drm/radeon: add support for newer mc ucode on SI

2014-04-11 Thread Alex Deucher
May fix stability issues with some newer cards. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/radeon_ucode.h | 3 +++ drivers/gpu/drm/radeon/si.c | 34 +- 2 files changed, 24 insertions(+),

[PATCH 2/3] drm/radeon: add support for newer mc ucode on CI

2014-04-11 Thread Alex Deucher
Fixes mclk stability on certain asics. bug: https://bugs.freedesktop.org/show_bug.cgi?id=75992 Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/cik.c | 25 - drivers/gpu/drm/radeon/radeon_ucode.h | 4

Re: [PATCH 1/3] drm/radeon: add support for newer mc ucode on SI

2014-04-11 Thread Christian König
Am 11.04.2014 16:52, schrieb Alex Deucher: May fix stability issues with some newer cards. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org Why adding *_mc2.bin for the MC firmware? To distinct if people have the new or the old firmware? If that's the case I

RE: [PATCH 1/3] drm/radeon: add support for newer mc ucode on SI

2014-04-11 Thread Deucher, Alexander
-Original Message- From: Christian König [mailto:deathsim...@vodafone.de] Sent: Friday, April 11, 2014 11:03 AM To: Alex Deucher; dri-de...@lists.freedesktop.org Cc: Deucher, Alexander; stable@vger.kernel.org Subject: Re: [PATCH 1/3] drm/radeon: add support for newer mc ucode on SI

[PATCH 1/3] drm/radeon: add support for newer mc ucode on SI (v2)

2014-04-11 Thread Alex Deucher
May fix stability issues with some newer cards. v2: print out mc firmware version used and size Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/radeon_ucode.h | 3 +++ drivers/gpu/drm/radeon/si.c | 35

[PATCH 2/3] drm/radeon: add support for newer mc ucode on CI (v2)

2014-04-11 Thread Alex Deucher
Fixes mclk stability on certain asics. v2: print out mc firmware version used and size bug: https://bugs.freedesktop.org/show_bug.cgi?id=75992 Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/cik.c | 26

[PATCH 3/3] drm/radeon: re-enable mclk dpm on R7 260X asics

2014-04-11 Thread Alex Deucher
If the new mc ucode is available. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/ci_dpm.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/ci_dpm.c b/drivers/gpu/drm/radeon/ci_dpm.c

Re: [PATCH 1/3] drm/radeon: add support for newer mc ucode on SI (v2)

2014-04-11 Thread Christian König
Am 11.04.2014 17:21, schrieb Alex Deucher: May fix stability issues with some newer cards. v2: print out mc firmware version used and size Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org All three added to my drm-fixes-3.15 queue. Christian. ---

pls backport two thinkpad-acpi patches for X1 carbon 2nd generation

2014-04-11 Thread Shuduo Sang
Hi stable tree maintainer, Pls backport two patches for Thinkpad X1 carbon 2nd generation's fancy adaptive keyboard: 330947b84382479459e5296a0024c670367b0b57 save and restore adaptive keyboard mode for suspend and resume 3a9d20bda1d6daae9d81a4cc4cc67238c5574d31 support Thinkpad X1 Carbon 2nd

Re: pls backport two thinkpad-acpi patches for X1 carbon 2nd generation

2014-04-11 Thread Greg KH
On Fri, Apr 11, 2014 at 11:33:41PM +0800, Shuduo Sang wrote: Hi stable tree maintainer, Pls backport two patches for Thinkpad X1 carbon 2nd generation's fancy adaptive keyboard: 330947b84382479459e5296a0024c670367b0b57 save and restore adaptive keyboard mode for suspend and resume

Patch ipmr: fix mfc notification flags has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ipmr: fix mfc notification flags to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ipv6: Avoid unnecessary temporary addresses being generated has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ipv6: Avoid unnecessary temporary addresses being generated to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch bridge: multicast: add sanity check for query source addresses has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled bridge: multicast: add sanity check for query source addresses to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch inet: frag: make sure forced eviction removes all frags has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled inet: frag: make sure forced eviction removes all frags to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ipv6: ip6_append_data_mtu do not handle the mtu of the second fragment properly has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ipv6: ip6_append_data_mtu do not handle the mtu of the second fragment properly to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The

Patch ip6mr: fix mfc notification flags has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ip6mr: fix mfc notification flags to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch netpoll: fix the skb check in pkt_is_ns has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled netpoll: fix the skb check in pkt_is_ns to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch netlink: don't compare the nul-termination in nla_strcmp has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled netlink: don't compare the nul-termination in nla_strcmp to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ipv6: don't set DST_NOCOUNT for remotely added routes has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ipv6: don't set DST_NOCOUNT for remotely added routes to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch rtnetlink: fix fdb notification flags has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled rtnetlink: fix fdb notification flags to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch net: fix for a race condition in the inet frag code has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled net: fix for a race condition in the inet frag code to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ipv6: some ipv6 statistic counters failed to disable bh has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ipv6: some ipv6 statistic counters failed to disable bh to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ipv6: Fix exthdrs offload registration. has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ipv6: Fix exthdrs offload registration. to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch tcp: tcp_release_cb() should release socket ownership has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled tcp: tcp_release_cb() should release socket ownership to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch isdnloop: Validate NUL-terminated strings from user. has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled isdnloop: Validate NUL-terminated strings from user. to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch isdnloop: several buffer overflows has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled isdnloop: several buffer overflows to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch tg3: Do not include vlan acceleration features in vlan_features has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled tg3: Do not include vlan acceleration features in vlan_features to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch net: unix: non blocking recvmsg() should not return -EINTR has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled net: unix: non blocking recvmsg() should not return -EINTR to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch usbnet: include wait queue head in device structure has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled usbnet: include wait queue head in device structure to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch rds: prevent dereference of a NULL device in rds_iw_laddr_check has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled rds: prevent dereference of a NULL device in rds_iw_laddr_check to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch net: socket: error on a negative msg_namelen has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled net: socket: error on a negative msg_namelen to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch net: sctp: fix skb leakage in COOKIE ECHO path of chunk-auth_chunk has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled net: sctp: fix skb leakage in COOKIE ECHO path of chunk-auth_chunk to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the

Patch vhost: validate vhost_get_vq_desc return value has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled vhost: validate vhost_get_vq_desc return value to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch vhost: fix total length when packets are too short has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled vhost: fix total length when packets are too short to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch vxlan: fix potential NULL dereference in arp_reduce() has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled vxlan: fix potential NULL dereference in arp_reduce() to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch xen-netback: remove pointless clause from if statement has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled xen-netback: remove pointless clause from if statement to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch vlan: Set hard_header_len according to available acceleration has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled vlan: Set hard_header_len according to available acceleration to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch vlan: Set correct source MAC address with TX VLAN offload enabled has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled vlan: Set correct source MAC address with TX VLAN offload enabled to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the

Re: [PATCHES] Networking

2014-04-11 Thread Greg KH
On Thu, Apr 10, 2014 at 09:54:20PM -0400, David Miller wrote: Please queue up the following networking fixes for 3.2.x, 3.4.x, 3.10.x, 3.13.x, and 3.14.x -stable, respectively. I've applied the 3.10, 3.13, and 3.14 patches now, I'll wait on the 3.4 series until after this next 3.4 release

Re: patch for stable (v3.12.x+), was Re: queue boot: 37 pass, 1 fail (v3.12.17)

2014-04-11 Thread Greg KH
On Wed, Apr 09, 2014 at 07:17:20AM -0400, Jason Cooper wrote: Greg, We found another boot fix that needs to be backported to v3.12.x and above. Please cherry-pick: b42285f66f87 PCI: mvebu: move clock enable before register access Looks like it's only relevant for 3.12, which I'm not

Re: Fwd: [crypto:master 60/60] arch/x86/crypto/ghash-clmulni-intel_glue.c:71:25: sparse: cast to restricted __be64

2014-04-11 Thread gre...@linuxfoundation.org
On Fri, Apr 04, 2014 at 10:11:19AM +0200, Ard Biesheuvel wrote: Greg, This pertains to commit 8ceee72808d1 (crypto: ghash-clmulni-intel - use C implementation for setkey()) that has been pulled by Linus during the current merge window. It is missing two things: - a cc to stable

Patch ARC: [nsimosci] Unbork console has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ARC: [nsimosci] Unbork console to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ARC: [nsimosci] Change .dts to use generic 8250 UART has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ARC: [nsimosci] Change .dts to use generic 8250 UART to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch cpufreq: Fix governor start/stop race condition has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled cpufreq: Fix governor start/stop race condition to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch cpufreq: Fix timer/workqueue corruption due to double queueing has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled cpufreq: Fix timer/workqueue corruption due to double queueing to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of

Patch crypto: ghash-clmulni-intel - use C implementation for setkey() has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled crypto: ghash-clmulni-intel - use C implementation for setkey() to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch m68k: Skip futex_atomic_cmpxchg_inatomic() test has been added to the 3.10-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled m68k: Skip futex_atomic_cmpxchg_inatomic() test to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ARC: [nsimosci] Unbork console has been added to the 3.13-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ARC: [nsimosci] Unbork console to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ARC: [nsimosci] Change .dts to use generic 8250 UART has been added to the 3.13-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ARC: [nsimosci] Change .dts to use generic 8250 UART to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Re: [stable request =3.7] acpi-cpufreq: set current frequency based on target P-State

2014-04-11 Thread Greg KH
On Tue, Mar 25, 2014 at 10:18:03PM +, rosslagerw...@gmail.com wrote: On Tue, Mar 25, 2014 at 03:04:16PM -0700, Vinson Lee wrote: Hi. Please backport upstream commit 8673b83bf2f013379453b4779047bf3c6ae387e4 acpi-cpufreq: set current frequency based on target P-State to stable

Patch futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test has been added to the 3.13-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of

Patch iwlwifi: mvm: rs: fix search cycle rules has been added to the 3.14-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled iwlwifi: mvm: rs: fix search cycle rules to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch m68k: Skip futex_atomic_cmpxchg_inatomic() test has been added to the 3.13-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled m68k: Skip futex_atomic_cmpxchg_inatomic() test to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test has been added to the 3.14-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of

Patch crypto: ghash-clmulni-intel - use C implementation for setkey() has been added to the 3.14-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled crypto: ghash-clmulni-intel - use C implementation for setkey() to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch crypto: ghash-clmulni-intel - use C implementation for setkey() has been added to the 3.13-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled crypto: ghash-clmulni-intel - use C implementation for setkey() to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch

Patch ARC: [nsimosci] Change .dts to use generic 8250 UART has been added to the 3.14-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ARC: [nsimosci] Change .dts to use generic 8250 UART to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch ARC: [nsimosci] Unbork console has been added to the 3.14-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled ARC: [nsimosci] Unbork console to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch m68k: Skip futex_atomic_cmpxchg_inatomic() test has been added to the 3.14-stable tree

2014-04-11 Thread gregkh
This is a note to let you know that I've just added the patch titled m68k: Skip futex_atomic_cmpxchg_inatomic() test to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

[PATCH 3.10 00/41] 3.10.37-stable review

2014-04-11 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 3.10.37 release. There are 41 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Sun Apr 13 16:09:00 UTC 2014. Anything

[PATCH 3.10 11/41] net: unix: non blocking recvmsg() should not return -EINTR

2014-04-11 Thread Greg Kroah-Hartman
3.10-stable review patch. If anyone has any objections, please let me know. -- From: Eric Dumazet eduma...@google.com [ Upstream commit de1443916791d75fdd26becb116898277bb0273f ] Some applications didn't expect recvmsg() on a non blocking socket could return -EINTR. This

[PATCH 3.14 22/23] m68k: Skip futex_atomic_cmpxchg_inatomic() test

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Finn Thain fth...@telegraphics.com.au commit e571c58f313d35c56e0018470e3375ddd1fd320e upstream. Skip the futex_atomic_cmpxchg_inatomic() test in futex_init(). It causes a fatal exception on

[PATCH 3.14 23/23] crypto: ghash-clmulni-intel - use C implementation for setkey()

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Ard Biesheuvel ard.biesheu...@linaro.org commit 8ceee72808d1ae3fb191284afc2257a2be964725 upstream. The GHASH setkey() function uses SSE registers but fails to call

[PATCH 3.14 20/23] ARC: [nsimosci] Unbork console

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Vineet Gupta vgu...@synopsys.com commit 61fb4bfc010b0d2940f7fd87acbce6a0f03217cb upstream. Despite the switch to right UART driver (prev patch), serial console still doesn't work due to

[PATCH 3.14 19/23] ARC: [nsimosci] Change .dts to use generic 8250 UART

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Mischa Jonker mjon...@synopsys.com commit 6eda477b3c54b8236868c8784e5e042ff14244f0 upstream. The Synopsys APB DW UART has a couple of special features that are not in the System C model. In

[PATCH 3.14 17/23] net/at91_ether: avoid NULL pointer dereference

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Gilles Chanteperdrix gilles.chanteperd...@xenomai.org [ Upstream commit c293fb785bdda64d88f197e6758a3c16ae83e569 ] The at91_ether driver calls macb_mii_init passing a 'struct macb' structure

[PATCH 3.14 18/23] iwlwifi: mvm: rs: fix search cycle rules

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Eyal Shapira e...@wizery.com commit 8930b05090acd321b1fc7c642528c697cb105c42 upstream. We should explore all possible columns when searching to be as resilient as possible to changing

[PATCH 3.14 14/23] isdnloop: Validate NUL-terminated strings from user.

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: YOSHIFUJI Hideaki yoshf...@linux-ipv6.org [ Upstream commit 77bc6bed7121936bb2e019a8c336075f4c8eef62 ] Return -EINVAL unless all of user-given strings are correctly NUL-terminated.

[PATCH 3.14 16/23] rds: prevent dereference of a NULL device in rds_iw_laddr_check

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Sasha Levin sasha.le...@oracle.com [ Upstream commit bf39b4247b8799935ea91d90db250ab608a58e50 ] Binding might result in a NULL device which is later dereferenced without checking.

[PATCH 3.14 15/23] isdnloop: several buffer overflows

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Dan Carpenter dan.carpen...@oracle.com [ Upstream commit 7563487cbf865284dcd35e9ef5a95380da046737 ] There are three buffer overflows addressed in this patch. 1) In isdnloop_fake_err() we add

[PATCH 3.14 13/23] net: vxlan: fix crash when interface is created with no group

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Mike Rapoport mike.rapop...@ravellosystems.com [ Upstream commit 5933a7bbb5de66482ea8aa874a7ebaf8e67603c4 ] If the vxlan interface is created without explicit group definition, there are

[PATCH 3.14 05/23] futex: avoid race between requeue and wake

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Linus Torvalds torva...@linux-foundation.org commit 69cd9eba38867a493a043bb13eb9b33cad5f1a9a upstream. Jan Stancek reported: pthread_cond_broadcast/4-1.c testcase from openposix testsuite

[PATCH 3.14 11/23] xen-netback: disable rogue vif in kthread context

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com [ Upstream commit e9d8b2c2968499c1f96563e6522c56958d5a1d0d ] When netback discovers frontend is sending malformed packet it will disables the interface which serves

[PATCH 3.14 12/23] Call efx_set_channels() before efx-type-dimension_resources()

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Daniel Pieczko dpiec...@solarflare.com [ Upstream commit 52ad762b85ed7947ec9eff6b036eb985352f6874 ] When using the separate_tx_channels=1 module parameter, the TX queues are initially numbered

[PATCH 3.14 10/23] netlink: dont compare the nul-termination in nla_strcmp

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Pablo Neira pa...@netfilter.org [ Upstream commit 8b7b932434f5eee495b91a2804f5b64ebb2bc835 ] nla_strcmp compares the string length plus one, so it's implicitly including the nul-termination in

[PATCH 3.14 09/23] ipv6: some ipv6 statistic counters failed to disable bh

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Hannes Frederic Sowa han...@stressinduktion.org [ Upstream commit 43a43b6040165f7b40b5b489fe61a4cb7f8c4980 ] After commit c15b1ccadb323ea (ipv6: move DAD and addrconf_verify processing to

[PATCH 3.14 08/23] xen-netback: BUG_ON in xenvif_rx_action() not catching overflow

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Paul Durrant paul.durr...@citrix.com [ Upstream commit 1425c7a4e8d3d2eebf308bcbdc3fa3c1247686b4 ] The BUG_ON to catch ring overflow in xenvif_rx_action() makes the assumption that

[PATCH 3.14 07/23] xen-netback: worse-case estimate in xenvif_rx_action is underestimating

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Paul Durrant paul.durr...@citrix.com [ Upstream commit a02eb4732cf975d7fc71b6d1a71c058c9988b949 ] The worse-case estimate for skb ring slot usage in xenvif_rx_action() fails to take fragment

[PATCH 3.14 06/23] xen-netback: remove pointless clause from if statement

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Paul Durrant paul.durr...@citrix.com [ Upstream commit 0576eddf24df716d8570ef8ca11452a9f98eaab2 ] This patch removes a test in start_new_rx_buffer() that checks whether a copy operation is

[PATCH 3.14 04/23] x86/efi: Make efi virtual runtime map passing more robust

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Borislav Petkov b...@suse.de commit b7b898ae0c0a82489511a1ce1b35f26215e6beb5 upstream. Currently, running SetVirtualAddressMap() and passing the physical address of the virtual map array was

[PATCH 3.14 03/23] x86, pageattr: Export page unmapping interface

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Borislav Petkov b...@suse.de commit 42a5477251f0e0f33ad5f6a95c48d685ec03191e upstream. We will use it in efi so expose it. Signed-off-by: Borislav Petkov b...@suse.de Tested-by: Toshi Kani

[PATCH 3.14 00/23] 3.14.1-stable review

2014-04-11 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 3.14.1 release. There are 23 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know. Responses should be made by Sun Apr 13 16:11:46 UTC 2014. Anything

[PATCH 3.14 02/23] selinux: correctly label /proc inodes in use before the policy is loaded

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Paul Moore pmo...@redhat.com commit f64410ec665479d7b4b77b7519e814253ed0f686 upstream. This patch is based on an earlier patch by Eric Paris, he describes the problem below: If an inode is

[PATCH 3.14 01/23] Revert ALSA: hda - Increment default stream numbers for AMD HDMI controllers

2014-04-11 Thread Greg Kroah-Hartman
3.14-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de This reverts commit 7546abfb8e1f9933b549f05898377e9444ee4cb2. The commit [7546abfb: ALSA: hda - Increment default stream numbers for AMD HDMI controllers] introduced

[PATCH 3.13 62/65] ARC: [nsimosci] Unbork console

2014-04-11 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Vineet Gupta vgu...@synopsys.com commit 61fb4bfc010b0d2940f7fd87acbce6a0f03217cb upstream. Despite the switch to right UART driver (prev patch), serial console still doesn't work due to

[PATCH 3.13 63/65] futex: Allow architectures to skip futex_atomic_cmpxchg_inatomic() test

2014-04-11 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Heiko Carstens heiko.carst...@de.ibm.com commit 03b8c7b623c80af264c4c8d6111e5c6289933666 upstream. If an architecture has futex_atomic_cmpxchg_inatomic() implemented and there is no runtime

[PATCH 3.13 65/65] crypto: ghash-clmulni-intel - use C implementation for setkey()

2014-04-11 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Ard Biesheuvel ard.biesheu...@linaro.org commit 8ceee72808d1ae3fb191284afc2257a2be964725 upstream. The GHASH setkey() function uses SSE registers but fails to call

[PATCH 3.13 64/65] m68k: Skip futex_atomic_cmpxchg_inatomic() test

2014-04-11 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Finn Thain fth...@telegraphics.com.au commit e571c58f313d35c56e0018470e3375ddd1fd320e upstream. Skip the futex_atomic_cmpxchg_inatomic() test in futex_init(). It causes a fatal exception on

[PATCH 3.13 52/65] xen-netback: disable rogue vif in kthread context

2014-04-11 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Wei Liu wei.l...@citrix.com [ Upstream commit e9d8b2c2968499c1f96563e6522c56958d5a1d0d ] When netback discovers frontend is sending malformed packet it will disables the interface which serves

[PATCH 3.13 61/65] ARC: [nsimosci] Change .dts to use generic 8250 UART

2014-04-11 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Mischa Jonker mjon...@synopsys.com commit 6eda477b3c54b8236868c8784e5e042ff14244f0 upstream. The Synopsys APB DW UART has a couple of special features that are not in the System C model. In

  1   2   3   >