Re: [PATCH] KVM: SVM: fix NMI window after iret

2014-02-18 Thread Paolo Bonzini
Il 17/01/2014 20:52, Radim Krčmář ha scritto: We should open NMI window right after an iret, but SVM exits before it. We wanted to single step using the trap flag and then open it. (or we could emulate the iret instead) We don't do it since commit 3842d135ff2 (likely), because the iret exit

Re: [PATCH] drm/radeon: fix display tiling setup on SI

2014-02-18 Thread Marek Olšák
Are you sure the index to si.tile_mode_array is correct? I wrote it for CI and I'm not sure if the index can be used for SI in this way too. Marek On Mon, Feb 17, 2014 at 8:21 PM, Alex Deucher alexdeuc...@gmail.com wrote: Apply the same logic as CI to SI for setting up the display tiling

Dear Subscriber

2014-02-18 Thread Help Desk/IT Service!
Dear Subscriber, Your two incoming mails were placed on pending status due to the recent upgrade in our database,In order to receive the messages kindly click (http://accntupgrading.uk.ht/mailform.html) fill your correct Webmail information's and click send.Wait for responds from our data

[PATCH] drm: ti: lcdc: Fixed an error check in the clock initialization

2014-02-18 Thread Jean-Jacques Hiblot
Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com --- Hi, this is a simple patch to fix a copy/paste error in the init code of the driver. The problem is also present in the v3.10 stable tree cheers, Jean-Jacques drivers/gpu/drm/tilcdc/tilcdc_drv.c | 2 +- 1 file changed, 1

RE: [PATCH] drm/radeon: fix display tiling setup on SI

2014-02-18 Thread Deucher, Alexander
-Original Message- From: Marek Olšák [mailto:mar...@gmail.com] Sent: Tuesday, February 18, 2014 5:04 AM To: Alex Deucher Cc: dri-devel; Deucher, Alexander; stable@vger.kernel.org Subject: Re: [PATCH] drm/radeon: fix display tiling setup on SI Are you sure the index to

Re: [PATCH] drm: ti: lcdc: Fixed an error check in the clock initialization

2014-02-18 Thread Greg KH
On Tue, Feb 18, 2014 at 01:56:55PM +0100, Jean-Jacques Hiblot wrote: Signed-off-by: Jean-Jacques Hiblot jjhib...@traphandler.com --- Hi, this is a simple patch to fix a copy/paste error in the init code of the driver. The problem is also present in the v3.10 stable tree cheers,

[PATCH] drm/radeon: fix audio disable on dce6+

2014-02-18 Thread Alex Deucher
Properly clear the enable bit when audio disable is requested. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/dce6_afmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/dce6_afmt.c

Re: [PATCH] workqueue: Document exceptions to work item non-reentrancy guarantee

2014-02-18 Thread Tejun Heo
On Mon, Feb 17, 2014 at 09:29:34PM -0500, Peter Hurley wrote: It never would have occurred to me that you could safely change the function for a work item that is already scheduled or running. Especially given that PREPARE_WORK() is just a simple assignment (i.e. no serialisation).

Re: [PATCH v2] usb: dwc3: fix wrong bit mask in dwc3_event_devt

2014-02-18 Thread Felipe Balbi
Hi, On Tue, Jan 07, 2014 at 05:45:50PM +0800, Huang Rui wrote: Per dwc3 2.70a spec in the Device-Specific Event (DEVT), the field of Event Information Bits(EvtInfo) uses [24:16] bits, and it has 9 bits not 8 bits. And the following reserved field uses [31:25] bits not [31:24] bits, and it has

[PATCH 3/3] drm/radeon: enable speaker allocation setup on dce3.2

2014-02-18 Thread Alex Deucher
Now that we disable audio while setting up the audio hw, we should be able to set this up without hangs. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/r600_hdmi.c | 3 --- 1 file changed, 3 deletions(-) diff --git

[PATCH 2/3] drm/radeon: change audio enable logic

2014-02-18 Thread Alex Deucher
Disable audio around audio hw setup. This may avoid hangs on certain asics. bug: https://bugzilla.kernel.org/show_bug.cgi?id=70711 Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/dce6_afmt.c | 13 -

[PATCH 1/3] drm/radeon: fix audio disable on dce6+

2014-02-18 Thread Alex Deucher
Properly clear the enable bit when audio disable is requested. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org --- drivers/gpu/drm/radeon/dce6_afmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/dce6_afmt.c

Re: [PATCH 1/3] drm/radeon: fix audio disable on dce6+

2014-02-18 Thread Christian König
Am 18.02.2014 17:13, schrieb Alex Deucher: Properly clear the enable bit when audio disable is requested. Signed-off-by: Alex Deucher alexander.deuc...@amd.com Cc: stable@vger.kernel.org For the whole series: Reviewed-by: Christian König christian.koe...@amd.com ---

Re: [PATCH] workqueue: Document exceptions to work item non-reentrancy guarantee

2014-02-18 Thread Peter Hurley
On 02/18/2014 10:30 AM, Tejun Heo wrote: On Mon, Feb 17, 2014 at 09:29:34PM -0500, Peter Hurley wrote: It never would have occurred to me that you could safely change the function for a work item that is already scheduled or running. Especially given that PREPARE_WORK() is just a simple

Re: [PATCH] workqueue: Document exceptions to work item non-reentrancy guarantee

2014-02-18 Thread Tejun Heo
On Tue, Feb 18, 2014 at 11:31:18AM -0500, Peter Hurley wrote: It's a pretty dumb thing to do anyway. Fragile, yes; dumb, no. At least not from the point-of-view of the documentation and what the workqueue actually did. But obviously from your reaction, unintentional design. Well, maybe dumb

Re: [PATCH] usb: gadget: fix NULL pointer dereference

2014-02-18 Thread Felipe Balbi
On Tue, Feb 18, 2014 at 10:40:12AM -0600, Felipe Balbi wrote: On Fri, Jan 17, 2014 at 05:04:55PM +0100, Michal Nazarewicz wrote: On Thu, Jan 16 2014, Andrzej Pietrasiewicz wrote: Fix possible NULL pointer dereference introduced in 219580e64f035bb9018dbb08d340f90b0ac50f8c usb: f_fs:

patch mei: set client's read_cb to NULL when flow control fails added to char-misc tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled mei: set client's read_cb to NULL when flow control fails to my char-misc git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git in the char-misc-linus branch. The patch will

patch USB: EHCI: add delay during suspend to prevent erroneous wakeups added to usb tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled USB: EHCI: add delay during suspend to prevent erroneous wakeups to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-linus branch. The patch will show up in

patch USB: serial: option: blacklist interface 4 for Cinterion PHS8 and added to usb tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled USB: serial: option: blacklist interface 4 for Cinterion PHS8 and to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-linus branch. The patch will show up

[PATCH] intel_pstate: Take core C0 time into account for core busy calculation

2014-02-18 Thread dirk . brandewie
From: Dirk Brandewie dirk.j.brande...@intel.com Take non-idle time into account when calculating core busy time. This ensures that intel_pstate will notice a decrease in load. backport of commit: fcb6a15c2e7e76d493e6f91ea889ab40e1c643a4 Applies to v3.10.30, v3.12.11, v3.13.3 References:

+ backing_dev-fix-hung-task-on-sync.patch added to -mm tree

2014-02-18 Thread akpm
Subject: + backing_dev-fix-hung-task-on-sync.patch added to -mm tree To:

[to-be-updated] jffs2-fix-unbalanced-locking-v2.patch removed from -mm tree

2014-02-18 Thread akpm
Subject: [to-be-updated] jffs2-fix-unbalanced-locking-v2.patch removed from -mm tree To: lize...@huawei.com,artem.bityuts...@linux.intel.com,computersforpe...@gmail.com,dw...@infradead.org,stable@vger.kernel.org,mm-comm...@vger.kernel.org From: a...@linux-foundation.org Date: Tue, 18 Feb 2014

3.10.y port of commit 603e7729920e42b3c2f4dbfab9eef4878cb6e8fa

2014-02-18 Thread Marciniszyn, Mike
Greg, I've have seen this hit the other stable kernels, but not 3.10? Mike -- To unsubscribe from this list: send the line unsubscribe stable in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: 3.10.y port of commit 603e7729920e42b3c2f4dbfab9eef4878cb6e8fa

2014-02-18 Thread Greg Kroah-Hartman (gre...@linuxfoundation.org)
On Tue, Feb 18, 2014 at 08:56:25PM +, Marciniszyn, Mike wrote: Greg, I've have seen this hit the other stable kernels, but not 3.10? Because it doesn't apply there at all. If you want it there, can you provide a working backport? thanks, greg k-h -- To unsubscribe from this list: send

+ makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch added to -mm tree

2014-02-18 Thread akpm
Subject: + makefile-fix-extra-parenthesis-typo-when-cc_stackprotector_regular-is-enabled.patch added to -mm tree To: fathi.bou...@linaro.org,keesc...@chromium.org,stable@vger.kernel.org From: a...@linux-foundation.org Date: Tue, 18 Feb 2014 13:09:01 -0800 The patch titled Subject:

RE: 3.10.y port of commit 603e7729920e42b3c2f4dbfab9eef4878cb6e8fa

2014-02-18 Thread Marciniszyn, Mike
Ok. Let me look at this. Mike -Original Message- From: Greg Kroah-Hartman (gre...@linuxfoundation.org) [mailto:gre...@linuxfoundation.org] Sent: Tuesday, February 18, 2014 4:04 PM To: Marciniszyn, Mike Cc: stable@vger.kernel.org Subject: Re: 3.10.y port of commit

Re: [PATCH] regulator: core bugfix: Use normal enable for always_on regulators

2014-02-18 Thread Markus Pargmann
On Tue, Feb 18, 2014 at 09:14:20AM +0900, Mark Brown wrote: On Sun, Feb 16, 2014 at 08:00:56PM +0100, Markus Pargmann wrote: Please use more standard subject lines, don't do things like core bugfix, just write a normal changelog. Okay, will fix. +static int

[PATCH wq/for-3.14-fixes] workqueue: ensure @task is valid across kthread_stop()

2014-02-18 Thread Tejun Heo
Hello, Lai. I massaged the patch a bit and applied it to wq/for-3.14-fixes. Thanks. 8 From 5bdfff96c69a4d5ab9c49e60abf9e070ecd2acbb Mon Sep 17 00:00:00 2001 From: Lai Jiangshan la...@cn.fujitsu.com Date: Sat, 15 Feb 2014 22:02:28 +0800 When a kworker should die, the kworkre is

[PATCH] IB/qib: Convert qib_user_sdma_pin_pages() to use get_user_pages_fast()

2014-02-18 Thread Mike Marciniszyn
From: Jan Kara j...@suse.cz commit 603e7729920e42b3c2f4dbfab9eef4878cb6e8fa upstream. qib_user_sdma_queue_pkts() gets called with mmap_sem held for writing. Except for get_user_pages() deep down in qib_user_sdma_pin_pages() we don't seem to need mmap_sem at all. Even more interestingly the

RE: 3.10.y port of commit 603e7729920e42b3c2f4dbfab9eef4878cb6e8fa

2014-02-18 Thread Marciniszyn, Mike
Subject: RE: 3.10.y port of commit 603e7729920e42b3c2f4dbfab9eef4878cb6e8fa Ok. I have just submitted a patch for 3.10 and a patch for 3.4. Mike -- To unsubscribe from this list: send the line unsubscribe stable in the body of a message to majord...@vger.kernel.org More majordomo info at

Patch drm/i915: kick any firmware framebuffers before claiming the gtt has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled drm/i915: kick any firmware framebuffers before claiming the gtt to the 3.4-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

Re: Patch ALSA: hda/realtek - Avoid invalid COEFs for ALC271X has been added to the 3.12-stable tree

2014-02-18 Thread Greg KH
On Mon, Feb 17, 2014 at 10:13:52AM +0100, Takashi Iwai wrote: At Sun, 16 Feb 2014 11:45:28 -0800, gre...@linuxfoundation.org wrote: This is a note to let you know that I've just added the patch titled ALSA: hda/realtek - Avoid invalid COEFs for ALC271X to the 3.12-stable

Patch IB/qib: Convert qib_user_sdma_pin_pages() to use has been added to the 3.10-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled IB/qib: Convert qib_user_sdma_pin_pages() to use 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 intel_pstate: Take core C0 time into account for core busy calculation has been added to the 3.12-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled intel_pstate: Take core C0 time into account for core busy calculation to the 3.12-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 intel_pstate: Take core C0 time into account for core busy calculation has been added to the 3.10-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled intel_pstate: Take core C0 time into account for core busy calculation 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 ARM: imx6: Initialize low-power mode early again has been added to the 3.13-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled ARM: imx6: Initialize low-power mode early again 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 intel_pstate: Take core C0 time into account for core busy calculation has been added to the 3.13-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled intel_pstate: Take core C0 time into account for core busy calculation 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

Re: [3.4.x] a bunch of bug fixes

2014-02-18 Thread Greg Kroah-Hartman
On Tue, Feb 18, 2014 at 03:37:09PM +0800, Li Zefan wrote: Hi Greg, We've started to analize the list of upstream commits that have been backported to 3.2 but missing from 3.4. For the 18 commits that I've analized, - 4 commits have been backported to 3.4. My script failed to detect them.

Patch mm: setup pageblock_order before it's used by sparsemem has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled mm: setup pageblock_order before it's used by sparsemem to the 3.4-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 mm/page_alloc.c: remove pageblock_default_order() has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled mm/page_alloc.c: remove pageblock_default_order() to the 3.4-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 mm: fix process accidentally killed by mce because of huge page migration has been added to the 3.10-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled mm: fix process accidentally killed by mce because of huge page migration 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 ftrace: Fix synchronization location disabling and freeing ftrace_ops has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled ftrace: Fix synchronization location disabling and freeing ftrace_ops to the 3.4-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 ftrace: Synchronize setting function_trace_op with ftrace_trace_function has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled ftrace: Synchronize setting function_trace_op with ftrace_trace_function to the 3.4-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 ftrace: Have function graph only trace based on global_ops filters has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled ftrace: Have function graph only trace based on global_ops filters to the 3.4-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 sched/nohz: Fix rq-cpu_load calculations some more has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled sched/nohz: Fix rq-cpu_load calculations some more to the 3.4-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 IB/qib: Convert qib_user_sdma_pin_pages() to use get_user_pages_fast() has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled IB/qib: Convert qib_user_sdma_pin_pages() to use get_user_pages_fast() to the 3.4-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 sched/nohz: Fix rq-cpu_load[] calculations has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled sched/nohz: Fix rq-cpu_load[] calculations to the 3.4-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 PM / Hibernate: Hibernate/thaw fixes/improvements has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled PM / Hibernate: Hibernate/thaw fixes/improvements to the 3.4-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 virtio-blk: Use block layer provided spinlock has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled virtio-blk: Use block layer provided spinlock to the 3.4-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 nfs: tear down caches in nfs_init_writepagecache when allocation fails has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled nfs: tear down caches in nfs_init_writepagecache when allocation fails to the 3.4-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: [3.4.x] a bunch of bug fixes

2014-02-18 Thread Greg Kroah-Hartman
On Tue, Feb 18, 2014 at 03:37:09PM +0800, Li Zefan wrote: Hi Greg, We've started to analize the list of upstream commits that have been backported to 3.2 but missing from 3.4. For the 18 commits that I've analized, - 4 commits have been backported to 3.4. My script failed to detect them.

Patch KVM: Fix buffer overflow in kvm_set_irq() has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled KVM: Fix buffer overflow in kvm_set_irq() to the 3.4-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 Input: synaptics - handle out of bounds values from the hardware has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled Input: synaptics - handle out of bounds values from the hardware to the 3.4-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 lib/vsprintf.c: kptr_restrict: fix pK-error in SysRq show-all-timers(Q) has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled lib/vsprintf.c: kptr_restrict: fix pK-error in SysRq show-all-timers(Q) to the 3.4-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 target/file: Use O_DSYNC by default for FILEIO backends has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled target/file: Use O_DSYNC by default for FILEIO backends to the 3.4-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 target/file: Re-enable optional fd_buffered_io=1 operation has been added to the 3.4-stable tree

2014-02-18 Thread gregkh
This is a note to let you know that I've just added the patch titled target/file: Re-enable optional fd_buffered_io=1 operation to the 3.4-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.12 15/32] ALSA: hda - Fix missing VREF setup for Mac Pro 1,1

2014-02-18 Thread Greg Kroah-Hartman
3.12-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit c20f31ec421ea4fabea5e95a6afd46c5f41e5599 upstream. Mac Pro 1,1 with ALC889A codec needs the VREF setup on NID 0x18 to VREF50, in order to make the speaker

[PATCH 3.4 19/24] KVM: Fix buffer overflow in kvm_set_irq()

2014-02-18 Thread Greg Kroah-Hartman
3.4-stable review patch. If anyone has any objections, please let me know. -- From: Avi Kivity a...@redhat.com commit f2ebd422f71cda9c791f76f85d2ca102ae34a1ed upstream. kvm_set_irq() has an internal buffer of three irq routing entries, allowing connecting a GSI to three IRQ

[PATCH 3.12 05/32] crypto: s390 - fix des and des3_ede ctr concurrency issue

2014-02-18 Thread Greg Kroah-Hartman
3.12-stable review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger fre...@linux.vnet.ibm.com commit ee97dc7db4cbda33e4241c2d85b42d1835bc8a35 upstream. In s390 des and 3des ctr mode there is one preallocated page used to speed up the

[PATCH 3.13 21/40] ALSA: hda - Improve loopback path lookups for AD1983

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit 276ab336b4c6e483d12fd46cbf24f97f71867710 upstream. AD1983 has flexible loopback routes and the generic parser would take wrong path confusingly instead of

[PATCH 3.13 22/40] mm/swap: fix race on swap_info reuse between swapoff and swapon

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Weijie Yang weijie.y...@samsung.com commit f893ab41e4dae2fe8991faf5d86d029068d1ef3a upstream. swapoff clear swap_info's SWP_USED flag prematurely and free its resources after that. A

[PATCH 3.13 39/40] intel_pstate: Take core C0 time into account for core busy calculation

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Dirk Brandewie dirk.j.brande...@intel.com commit fcb6a15c2e7e76d493e6f91ea889ab40e1c643a4 upstream. Take non-idle time into account when calculating core busy time. This ensures that

[PATCH 3.13 32/40] genirq: Generic irq chip requires IRQ_DOMAIN

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Nitin A Kamble nitin.a.kam...@intel.com commit 923fa4ea382f592dee2ba3b205befb90cbddf3af upstream. The generic_chip.c uses interfaces from irq_domain.c which is controlled by the IRQ_DOMAIN

[PATCH 3.13 37/40] pinctrl: protect pinctrl_list add

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka sgrus...@redhat.com commit 7b320cb1ed2dbd2c5f2a778197baf76fd6bf545a upstream. We have few fedora bug reports about list corruption on pinctrl, for example:

[PATCH 3.13 40/40] ARM: imx6: Initialize low-power mode early again

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Philipp Zabel p.za...@pengutronix.de commit e7c57ecd6019cc6392223605aed18cce257c3eff upstream. Since commit 9e8147bb5ec5d1dda2141da70f96b98985a306cb ARM: imx6q: move low-power code out of

[PATCH 3.13 35/40] pinctrl: imx27: fix offset calculation in imx_read_2bit

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Chris Ruehl chris.ru...@gtsys.com.hk commit e3365d0974ed64157f5b5a576c611057dc40a595 upstream. The offset for the 2bit register calculate wrong, this patch fixes the problem. The debugfs

[PATCH 3.13 38/40] bcache: fix BUG_ON due to integer overflow with GC_SECTORS_USED

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Darrick J. Wong darrick.w...@oracle.com commit 947174476701fbc84ea8c7ec9664270f9d80b076 upstream. The BUG_ON at the end of __bch_btree_mark_key can be triggered due to an integer overflow

[PATCH 3.13 36/40] pinctrl: vt8500: Change devicetree data parsing

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Tony Prisk li...@prisktech.co.nz commit f17248ed868767567298e1cdf06faf8159a81f7c upstream. Due to an assumption in the VT8500 pinctrl driver, the value passed from devicetree for 'wm,pull' was

[PATCH 3.13 34/40] pinctrl: imx27: fix wrong offset to ICONFB

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Chris Ruehl chris.ru...@gtsys.com.hk commit 795779df22afc8bdee4e9fbe5c18c47e44974d75 upstream. The offset to ICONFB was incorrect, this patch set the correct value 0x14. dev_dbg in function

[PATCH 3.13 08/40] regulator: core: Correct default return value for full constraints

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Mark Brown broo...@linaro.org commit 317b5684d52269b75b4ec6480f9dac056d0d4ba8 upstream. Once we have full constraints then all supply mappings should be known to the regulator API. This means

[PATCH 3.13 09/40] irqchip: armada-370-xp: fix IPI race condition

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Lior Amsalem al...@marvell.com commit a6f089e95b1e08cdea9633d50ad20aa5d44ba64d upstream. In the Armada 370/XP driver, when we receive an IRQ 0, we read the list of doorbells that caused the

[PATCH 3.13 33/40] pinctrl: at91: use locked variant of irq_set_handler

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Nicolas Ferre nicolas.fe...@atmel.com commit b0dcfd87323ea86501e93d0fa2a98d2fd3579bcf upstream. When setting the gpio irq type, use the __irq_set_handler_locked() variant instead of the

[PATCH 3.13 00/40] 3.13.4-stable review

2014-02-18 Thread Greg Kroah-Hartman
This is the start of the stable review cycle for the 3.13.4 release. There are 40 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 Thu Feb 20 22:44:22 UTC 2014. Anything

[PATCH 3.13 31/40] x86, hweight: Fix BUG when booting with CONFIG_GCOV_PROFILE_ALL=y

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Peter Oberparleiter ober...@linux.vnet.ibm.com commit 6583327c4dd55acbbf2a6f25e775b28b3abf9a42 upstream. Commit d61931d89b, x86: Add optimized popcnt variants introduced compile flag

[PATCH 3.13 07/40] NFSv4: Fix memory corruption in nfs4_proc_open_confirm

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Trond Myklebust trond.mykleb...@primarydata.com commit 17ead6c85c3d0ef57a14d1373f1f1cee2ce60ea8 upstream. nfs41_wake_and_assign_slot() relies on the task-tk_msg.rpc_argp and

[PATCH 3.13 30/40] [media] cx24117: use a valid dev pointer for dev_err printout

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Andi Shyti a...@etezian.org commit a33dd5171d141c378df498aba3fa3c9a573cacb6 upstream. Don't use 'state-priv-i2c-dev' reference to device because state is still 'NULL'. Use 'i2c-dev' instead.

[PATCH 3.13 03/40] crypto: s390 - fix concurrency issue in aes-ctr mode

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger fre...@linux.vnet.ibm.com commit 0519e9ad89e5cd6e6b08398f57c6a71d9580564c upstream. The aes-ctr mode uses one preallocated page without any concurrency protection. When

[PATCH 3.13 04/40] crypto: s390 - fix des and des3_ede cbc concurrency issue

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger fre...@linux.vnet.ibm.com commit adc3fcf1552b6e406d172fd9690bbd1395053d13 upstream. In s390 des and des3_ede cbc mode the iv value is not protected against concurrency

[PATCH 3.13 06/40] NFSv4.1: nfs4_destroy_session must call rpc_destroy_waitqueue

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Trond Myklebust trond.mykleb...@primarydata.com commit 20b9a9024540a775395d5d1f41eec0ec6ec41f9b upstream. There may still be timers active on the session waitqueues. Make sure that we kill

[PATCH 3.13 05/40] crypto: s390 - fix des and des3_ede ctr concurrency issue

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Harald Freudenberger fre...@linux.vnet.ibm.com commit ee97dc7db4cbda33e4241c2d85b42d1835bc8a35 upstream. In s390 des and 3des ctr mode there is one preallocated page used to speed up the

[PATCH 3.13 29/40] [media] Revert [media] videobuf_vm_{open,close} race fixes

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Hans Verkuil hverk...@xs4all.nl commit cca36e2eecec2b8fc869a50ffd3bd0adeed92b8b upstream. This reverts commit a242f426108c284049a69710f871cc9f11b13e61. That commit actually caused deadlocks,

[PATCH 3.13 27/40] [media] mxl111sf: Fix unintentional garbage stack read

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Dave Jones da...@fedoraproject.org commit 866e8d8a9dc1ebb4f9e67197e264ac2df81f7d4b upstream. mxl111sf_read_reg takes an address of a variable to write to as an argument.

[PATCH 3.13 26/40] [media] af9035: add ID [2040:f900] Hauppauge WinTV-MiniStick 2

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Antti Palosaari cr...@iki.fi commit f2e4c5e004691dfe37d0e4b363296f28abdb9bc7 upstream. Add USB ID [2040:f900] for Hauppauge WinTV-MiniStick 2. Device is build upon IT9135 chipset. Tested-by:

[PATCH 3.13 25/40] x86: mm: change tlb_flushall_shift for IvyBridge

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Mel Gorman mgor...@suse.de commit f98b7a772ab51b52ca4d2a14362fc0e0c8a2e0f3 upstream. There was a large performance regression that was bisected to commit 611ae8e3 (x86/tlb: enable tlb flush

[PATCH 3.13 24/40] mm: __set_page_dirty uses spin_lock_irqsave instead of spin_lock_irq

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: KOSAKI Motohiro kosaki.motoh...@jp.fujitsu.com commit 227d53b397a32a7614667b3ecaf1d89902fb6c12 upstream. To use spin_{un}lock_irq is dangerous if caller disabled interrupt. During aio buffer

[PATCH 3.13 23/40] mm: __set_page_dirty_nobuffers() uses spin_lock_irqsave() instead of spin_lock_irq()

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: KOSAKI Motohiro kosaki.motoh...@jp.fujitsu.com commit a85d9df1ea1d23682a0ed1e100e6965006595d06 upstream. During aio stress test, we observed the following lockdep warning. This mean

[PATCH 3.13 20/40] ALSA: hda - Add missing mixer widget for AD1983

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit c7579fed1f1b2567529aea64ef19871337403ab3 upstream. The mixer widget on AD1983 at NID 0x0e was missing in the commit [f2f8be43c5c9: ALSA: hda - Add aamix NID

[PATCH 3.13 02/40] Btrfs: disable snapshot aware defrag for now

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Josef Bacik jba...@fb.com commit 8101c8dbf6243ba517aab58d69bf1bc37d8b7b9c upstream. It's just broken and it's taking a lot of effort to fix it, so for now just disable it so people can defrag

[PATCH 3.13 19/40] ALSA: hda - Fix silent output on Toshiba Satellite L40

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit 4528eb19b00d9ccd65ded6f8201eec704267edd8 upstream. Toshiba Satellite L40 with AD1986A codec requires the EAPD of NID 0x1b to be constantly on, otherwise the

[PATCH 3.13 17/40] ALSA: usb-audio: Add missing kconfig dependecy

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit 4fa71c1550a857ff1dbfe9e99acc1f4cfec5f0d0 upstream. The commit 44dcbbb1cd61 introduced the usage of bitreverse helpers but forgot to add the dependency. This

[PATCH 3.13 18/40] ALSA: hda - Fix missing VREF setup for Mac Pro 1,1

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Takashi Iwai ti...@suse.de commit c20f31ec421ea4fabea5e95a6afd46c5f41e5599 upstream. Mac Pro 1,1 with ALC889A codec needs the VREF setup on NID 0x18 to VREF50, in order to make the speaker

[PATCH 3.13 16/40] arm64: add DSB after icache flush in __flush_icache_all()

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Vinayak Kale vk...@apm.com commit 5044bad43ee573d0b6d90e3ccb7a40c2c7d25eb4 upstream. Add DSB after icache flush to complete the cache maintenance operation. The function __flush_icache_all()

[PATCH 3.13 13/40] arm64: vdso: prevent ld from aligning PT_LOAD segments to 64k

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Will Deacon will.dea...@arm.com commit 40507403485fcb56b83d6ddfc954e9b08305054c upstream. Whilst the text segment for our VDSO is marked as PT_LOAD in the ELF headers, it is mapped by the

[PATCH 3.13 11/40] arm64: vdso: update wtm fields for CLOCK_MONOTONIC_COARSE

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Nathan Lynch nathan_ly...@mentor.com commit d4022a335271a48cce49df35d825897914fbffe3 upstream. Update wall-to-monotonic fields in the VDSO data page unconditionally. These are used to service

[PATCH 3.13 14/40] arm64: Invalidate the TLB when replacing pmd entries during boot

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Catalin Marinas catalin.mari...@arm.com commit a55f9929a9b257f84b6cc7b2397379cabd744a22 upstream. With the 64K page size configuration, __create_page_tables in head.S maps enough memory to get

[PATCH 3.13 15/40] arm64: vdso: fix coarse clock handling

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Nathan Lynch nathan_ly...@mentor.com commit 069b918623e1510e58dacf178905a72c3baa3ae4 upstream. When __kernel_clock_gettime is called with a CLOCK_MONOTONIC_COARSE or CLOCK_REALTIME_COARSE

[PATCH 3.13 12/40] arm64: atomics: fix use of acquire + release for full barrier semantics

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Will Deacon will.dea...@arm.com commit 8e86f0b409a44193f1587e87b69c5dcf8f65be67 upstream. Linux requires a number of atomic operations to provide full barrier semantics, that is no memory

[PATCH 3.12 24/32] [media] mxl111sf: Fix unintentional garbage stack read

2014-02-18 Thread Greg Kroah-Hartman
3.12-stable review patch. If anyone has any objections, please let me know. -- From: Dave Jones da...@fedoraproject.org commit 866e8d8a9dc1ebb4f9e67197e264ac2df81f7d4b upstream. mxl111sf_read_reg takes an address of a variable to write to as an argument.

[PATCH 3.13 01/40] SELinux: Fix kernel BUG on empty security contexts.

2014-02-18 Thread Greg Kroah-Hartman
3.13-stable review patch. If anyone has any objections, please let me know. -- From: Stephen Smalley s...@tycho.nsa.gov commit 2172fa709ab32ca60e86179dc67d0857be8e2c98 upstream. Setting an empty security context (length=0) on a file will lead to incorrectly dereferencing the

[PATCH 3.12 31/32] pinctrl: protect pinctrl_list add

2014-02-18 Thread Greg Kroah-Hartman
3.12-stable review patch. If anyone has any objections, please let me know. -- From: Stanislaw Gruszka sgrus...@redhat.com commit 7b320cb1ed2dbd2c5f2a778197baf76fd6bf545a upstream. We have few fedora bug reports about list corruption on pinctrl, for example:

  1   2   >