stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org,
	Roman Pen <roman.penyaev@profitbricks.com>,
	Gioh Kim <gi-oh.kim@profitbricks.com>,
	Michael Wang <yun.wang@profitbricks.com>,
	Tejun Heo <tj@kernel.org>, Jens Axboe <axboe@kernel.dk>,
	linux-block@vger.kernel.org
Subject: [PATCH 4.5 128/200] workqueue: fix ghost PENDING flag while doing MQ IO
Date: Mon,  2 May 2016 17:12:07 -0700	[thread overview]
Message-ID: <20160503000558.793447889@linuxfoundation.org> (raw)
In-Reply-To: <20160503000554.631204776@linuxfoundation.org>

4.5-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Roman Pen <roman.penyaev@profitbricks.com>

commit 346c09f80459a3ad97df1816d6d606169a51001a upstream.

The bug in a workqueue leads to a stalled IO request in MQ ctx->rq_list
with the following backtrace:

[  601.347452] INFO: task kworker/u129:5:1636 blocked for more than 120 seconds.
[  601.347574]       Tainted: G           O    4.4.5-1-storage+ #6
[  601.347651] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
[  601.348142] kworker/u129:5  D ffff880803077988     0  1636      2 0x00000000
[  601.348519] Workqueue: ibnbd_server_fileio_wq ibnbd_dev_file_submit_io_worker [ibnbd_server]
[  601.348999]  ffff880803077988 ffff88080466b900 ffff8808033f9c80 ffff880803078000
[  601.349662]  ffff880807c95000 7fffffffffffffff ffffffff815b0920 ffff880803077ad0
[  601.350333]  ffff8808030779a0 ffffffff815b01d5 0000000000000000 ffff880803077a38
[  601.350965] Call Trace:
[  601.351203]  [<ffffffff815b0920>] ? bit_wait+0x60/0x60
[  601.351444]  [<ffffffff815b01d5>] schedule+0x35/0x80
[  601.351709]  [<ffffffff815b2dd2>] schedule_timeout+0x192/0x230
[  601.351958]  [<ffffffff812d43f7>] ? blk_flush_plug_list+0xc7/0x220
[  601.352208]  [<ffffffff810bd737>] ? ktime_get+0x37/0xa0
[  601.352446]  [<ffffffff815b0920>] ? bit_wait+0x60/0x60
[  601.352688]  [<ffffffff815af784>] io_schedule_timeout+0xa4/0x110
[  601.352951]  [<ffffffff815b3a4e>] ? _raw_spin_unlock_irqrestore+0xe/0x10
[  601.353196]  [<ffffffff815b093b>] bit_wait_io+0x1b/0x70
[  601.353440]  [<ffffffff815b056d>] __wait_on_bit+0x5d/0x90
[  601.353689]  [<ffffffff81127bd0>] wait_on_page_bit+0xc0/0xd0
[  601.353958]  [<ffffffff81096db0>] ? autoremove_wake_function+0x40/0x40
[  601.354200]  [<ffffffff81127cc4>] __filemap_fdatawait_range+0xe4/0x140
[  601.354441]  [<ffffffff81127d34>] filemap_fdatawait_range+0x14/0x30
[  601.354688]  [<ffffffff81129a9f>] filemap_write_and_wait_range+0x3f/0x70
[  601.354932]  [<ffffffff811ced3b>] blkdev_fsync+0x1b/0x50
[  601.355193]  [<ffffffff811c82d9>] vfs_fsync_range+0x49/0xa0
[  601.355432]  [<ffffffff811cf45a>] blkdev_write_iter+0xca/0x100
[  601.355679]  [<ffffffff81197b1a>] __vfs_write+0xaa/0xe0
[  601.355925]  [<ffffffff81198379>] vfs_write+0xa9/0x1a0
[  601.356164]  [<ffffffff811c59d8>] kernel_write+0x38/0x50

The underlying device is a null_blk, with default parameters:

  queue_mode    = MQ
  submit_queues = 1

Verification that nullb0 has something inflight:

root@pserver8:~# cat /sys/block/nullb0/inflight
       0        1
root@pserver8:~# find /sys/block/nullb0/mq/0/cpu* -name rq_list -print -exec cat {} \;
...
/sys/block/nullb0/mq/0/cpu2/rq_list
CTX pending:
        ffff8838038e2400
...

During debug it became clear that stalled request is always inserted in
the rq_list from the following path:

   save_stack_trace_tsk + 34
   blk_mq_insert_requests + 231
   blk_mq_flush_plug_list + 281
   blk_flush_plug_list + 199
   wait_on_page_bit + 192
   __filemap_fdatawait_range + 228
   filemap_fdatawait_range + 20
   filemap_write_and_wait_range + 63
   blkdev_fsync + 27
   vfs_fsync_range + 73
   blkdev_write_iter + 202
   __vfs_write + 170
   vfs_write + 169
   kernel_write + 56

So blk_flush_plug_list() was called with from_schedule == true.

If from_schedule is true, that means that finally blk_mq_insert_requests()
offloads execution of __blk_mq_run_hw_queue() and uses kblockd workqueue,
i.e. it calls kblockd_schedule_delayed_work_on().

That means, that we race with another CPU, which is about to execute
__blk_mq_run_hw_queue() work.

Further debugging shows the following traces from different CPUs:

  CPU#0                                  CPU#1
  ----------------------------------     -------------------------------
  reqeust A inserted
  STORE hctx->ctx_map[0] bit marked
  kblockd_schedule...() returns 1
  <schedule to kblockd workqueue>
                                         request B inserted
                                         STORE hctx->ctx_map[1] bit marked
                                         kblockd_schedule...() returns 0
  *** WORK PENDING bit is cleared ***
  flush_busy_ctxs() is executed, but
  bit 1, set by CPU#1, is not observed

As a result request B pended forever.

This behaviour can be explained by speculative LOAD of hctx->ctx_map on
CPU#0, which is reordered with clear of PENDING bit and executed _before_
actual STORE of bit 1 on CPU#1.

The proper fix is an explicit full barrier <mfence>, which guarantees
that clear of PENDING bit is to be executed before all possible
speculative LOADS or STORES inside actual work function.

Signed-off-by: Roman Pen <roman.penyaev@profitbricks.com>
Cc: Gioh Kim <gi-oh.kim@profitbricks.com>
Cc: Michael Wang <yun.wang@profitbricks.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: linux-block@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 kernel/workqueue.c |   29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -667,6 +667,35 @@ static void set_work_pool_and_clear_pend
 	 */
 	smp_wmb();
 	set_work_data(work, (unsigned long)pool_id << WORK_OFFQ_POOL_SHIFT, 0);
+	/*
+	 * The following mb guarantees that previous clear of a PENDING bit
+	 * will not be reordered with any speculative LOADS or STORES from
+	 * work->current_func, which is executed afterwards.  This possible
+	 * reordering can lead to a missed execution on attempt to qeueue
+	 * the same @work.  E.g. consider this case:
+	 *
+	 *   CPU#0                         CPU#1
+	 *   ----------------------------  --------------------------------
+	 *
+	 * 1  STORE event_indicated
+	 * 2  queue_work_on() {
+	 * 3    test_and_set_bit(PENDING)
+	 * 4 }                             set_..._and_clear_pending() {
+	 * 5                                 set_work_data() # clear bit
+	 * 6                                 smp_mb()
+	 * 7                               work->current_func() {
+	 * 8				      LOAD event_indicated
+	 *				   }
+	 *
+	 * Without an explicit full barrier speculative LOAD on line 8 can
+	 * be executed before CPU#0 does STORE on line 1.  If that happens,
+	 * CPU#0 observes the PENDING bit is still set and new execution of
+	 * a @work is not queued in a hope, that CPU#1 will eventually
+	 * finish the queued @work.  Meanwhile CPU#1 does not see
+	 * event_indicated is set, because speculative LOAD was executed
+	 * before actual STORE.
+	 */
+	smp_mb();
 }
 
 static void clear_work_data(struct work_struct *work)

  parent reply	other threads:[~2016-05-03  0:12 UTC|newest]

Thread overview: 191+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-03  0:09 [PATCH 4.5 000/200] 4.5.3-stable review Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 001/200] mmc: block: Use the mmc host device index as the mmcblk device index Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 002/200] block: partition: initialize percpuref before sending out KOBJ_ADD Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 003/200] block: loop: fix filesystem corruption in case of aio/dio Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 004/200] efi/arm64: Dont apply MEMBLOCK_NOMAP to UEFI memory map mapping Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 005/200] x86/mce: Avoid using object after free in genpool Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 006/200] kvm: x86: do not leak guest xcr0 into host interrupt handlers Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 007/200] KVM: arm/arm64: Handle forward time correction gracefully Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 008/200] ARM: dts: AM43x-epos: Fix clk parent for synctimer Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 009/200] ARM: dts: am43xx: fix edma memcpy channel allocation Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 010/200] ARM: mvebu: Correct unit address for linksys Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 011/200] ARM: OMAP2: Fix up interconnect barrier initialization for DRA7 Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 012/200] ARM: OMAP2+: hwmod: Fix updating of sysconfig register Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 013/200] assoc_array: dont call compare_object() on a node Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 014/200] usb: xhci: applying XHCI_PME_STUCK_QUIRK to Intel BXT B0 host Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 015/200] xhci: resume USB 3 roothub first Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 016/200] usb: host: xhci: add a new quirk XHCI_NO_64BIT_SUPPORT Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 017/200] usb: host: xhci-plat: fix cannot work if R-Car Gen2/3 run on above 4GB phys Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 018/200] usb: xhci: fix wild pointers in xhci_mem_cleanup Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 019/200] xhci: fix 10 second timeout on removal of PCI hotpluggable xhci controllers Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 020/200] usb: host: xhci-plat: Make enum xhci_plat_type start at a non zero value Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 021/200] usb: hcd: out of bounds access in for_each_companion Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 022/200] usb: gadget: f_fs: Fix use-after-free Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 023/200] dm cache metadata: fix READ_LOCK macros and cleanup WRITE_LOCK macros Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 024/200] dm cache metadata: fix cmd_read_lock() acquiring write lock Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 025/200] lib: lz4: fixed zram with lz4 on big endian machines Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 026/200] debugfs: Make automount point inodes permanently empty Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 027/200] dmaengine: dw: fix master selection Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 028/200] dmaengine: hsu: correct use of channel status register Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 029/200] dmaengine: hsu: correct residue calculation of active descriptor Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 030/200] dmaengine: omap-dma: Fix polled channel completion detection and handling Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 031/200] dmaengine: edma: Remove dynamic TPTC power management feature Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 032/200] dmaengine: pxa_dma: fix the maximum requestor line Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 033/200] mtd: nand: pxa3xx_nand: fix dmaengine initialization Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 034/200] sched/cgroup: Fix/cleanup cgroup teardown/init Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 035/200] x86/mm/xen: Suppress hugetlbfs in PV guests Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 036/200] x86 EDAC, sb_edac.c: Repair damage introduced when "fixing" channel address Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 037/200] x86 EDAC, sb_edac.c: Take account of channel hashing when needed Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 038/200] ALSA: hda - Dont trust the reported actual power state Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 039/200] ALSA: hda/realtek - Add ALC3234 headset mode for Optiplex 9020m Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 040/200] ALSA: hda - Keep powering up ADCs on Cirrus codecs Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 041/200] ALSA: hda - add PCI ID for Intel Broxton-T Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 042/200] ALSA: pcxhr: Fix missing mutex unlock Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 043/200] ALSA: hda - Add dock support for ThinkPad X260 Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 044/200] ALSA: hda - Update BCLK also at hotplug for i915 HSW/BDW Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 045/200] asm-generic/futex: Re-enable preemption in futex_atomic_cmpxchg_inatomic() Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 046/200] futex: Handle unlock_pi race gracefully Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 047/200] futex: Acknowledge a new waiter in counter before plist Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 048/200] drm/nouveau/core: use vzalloc for allocating ramht Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 049/200] drm/qxl: fix cursor position with non-zero hotspot Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 051/200] Revert "drm/radeon: disable runtime pm on PX laptops without dGPU power control" Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 053/200] [media] usbvision: revert commit 588afcc1 Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 054/200] Revert "drm/amdgpu: disable runtime pm on PX laptops without dGPU power control" Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 055/200] cpufreq: intel_pstate: Fix processing for turbo activation ratio Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 056/200] s390/pci: add extra padding to function measurement block Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 057/200] iwlwifi: pcie: lower the debug level for RSA semaphore access Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 058/200] iwlwifi: mvm: fix memory leak in paging Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 059/200] crypto: rsa-pkcs1pad - fix dst len Greg Kroah-Hartman
2016-05-03  0:10 ` [PATCH 4.5 060/200] crypto: ccp - Prevent information leakage on export Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 061/200] crypto: sha1-mb - use corrcet pointer while completing jobs Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 062/200] crypto: talitos - fix crash in talitos_cra_init() Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 063/200] crypto: talitos - fix AEAD tcrypt tests Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 064/200] powerpc: scan_features() updates incorrect bits for REAL_LE Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 065/200] powerpc: Update cpu_user_features2 in scan_features() Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 066/200] powerpc: Update TM user feature bits " Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 067/200] nl80211: check netlink protocol in socket release notification Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 068/200] netlink: dont send NETLINK_URELEASE for unbound sockets Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 069/200] Input: gtco - fix crash on detecting device without endpoints Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 070/200] Input: pmic8xxx-pwrkey - fix algorithm for converting trigger delay Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 071/200] xen kconfig: dont "select INPUT_XEN_KBDDEV_FRONTEND" Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 072/200] pinctrl: mediatek: correct debounce time unit in mtk_gpio_set_debounce Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 073/200] pinctrl: single: Fix pcs_parse_bits_in_pinctrl_entry to use __ffs than ffs Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 074/200] iommu/amd: Fix checking of pci dma aliases Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 075/200] iommu/dma: Restore scatterlist offsets correctly Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 077/200] drm/amdgpu: use defines for CRTCs and AMFT blocks Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 078/200] drm/amdgpu: bump the afmt limit for CZ, ST, Polaris Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 079/200] amdgpu/uvd: add uvd fw version for amdgpu Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 080/200] drm/amdgpu: fix regression on CIK (v2) Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 081/200] drm/radeon: add a quirk for a XFX R9 270X Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 082/200] drm/radeon: fix initial connector audio value Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 084/200] drm/radeon: fix vertical bars appear on monitor (v2) Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 085/200] drm: Loongson-3 doesnt fully support wc memory Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 086/200] drm/nouveau/gr/gf100: select a stream master to fixup tfb offset queries Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 088/200] drm/dp/mst: Restore primary hub guid on resume Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 089/200] drm/dp/mst: Get validated port ref in drm_dp_update_payload_part1() Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 090/200] pwm: brcmstb: Fix check of devm_ioremap_resource() return code Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 096/200] drm/amdkfd: uninitialized variable in dbgdev_wave_control_set_registers() Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 097/200] drm/i915/skl: Fix DMC load on Skylake J0 and K0 Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 098/200] drm/i915/skl: Fix spurious gpu hang with gt3/gt4 revs Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 099/200] drm/i915: Fixup the free space logic in ring_prepare Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 100/200] drm/i915: Force ringbuffers to not be at offset 0 Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 103/200] video: ARM CLCD: runtime check for Versatile Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 104/200] perf intel-pt: Fix segfault tracing transactions Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 105/200] i2c: cpm: Fix build break due to incompatible pointer types Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 106/200] i2c: exynos5: Fix possible ABBA deadlock by keeping I2C clock prepared Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 107/200] ACPICA / Interpreter: Fix a regression triggered because of wrong Linux ECDT support Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 108/200] mmc: sdhci-acpi: Reduce Baytrail eMMC/SD/SDIO hangs Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 109/200] toshiba_acpi: Fix regression caused by hotkey enabling value Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 110/200] EDAC: i7core, sb_edac: Dont return NOTIFY_BAD from mce_decoder callback Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 111/200] ASoC: s3c24xx: use const snd_soc_component_driver pointer Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 112/200] ASoC: ssm4567: Reset device before regcache_sync() Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 113/200] ASoC: dapm: Make sure we have a card when displaying component widgets Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 114/200] ASoC: rt5640: Correct the digital interface data select Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 115/200] [media] vb2-memops: Fix over allocation of frame vectors Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 116/200] [media] media: vb2: Fix regression on poll() for RW mode Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 117/200] [media] videobuf2-core: Check user space planes array in dqbuf Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 118/200] [media] videobuf2-v4l2: Verify planes array in buffer dequeueing Greg Kroah-Hartman
2016-05-11 16:31   ` Mauro Carvalho Chehab
2016-05-03  0:11 ` [PATCH 4.5 119/200] [media] v4l2-dv-timings.h: fix polarity for 4k formats Greg Kroah-Hartman
2016-05-03  0:11 ` [PATCH 4.5 120/200] cxl: Keep IRQ mappings on context teardown Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 121/200] IB/core: Fix oops in ib_cache_gid_set_default_gid Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 122/200] mwifiex: fix IBSS data path issue Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 123/200] IB/mlx5: Expose correct max_sge_rd limit Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 124/200] IB/security: Restrict use of the write() interface Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 125/200] efi: Fix out-of-bounds read in variable_matches() Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 126/200] efi: Expose non-blocking set_variable() wrapper to efivars Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 127/200] x86/apic: Handle zero vector gracefully in clear_vector_irq() Greg Kroah-Hartman
2016-05-03  0:12 ` Greg Kroah-Hartman [this message]
2016-05-03  0:12 ` [PATCH 4.5 129/200] slub: clean up code for kmem cgroup support to kmem_cache_free_bulk Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 130/200] cgroup, cpuset: replace cpuset_post_attach_flush() with cgroup_subsys->post_attach callback Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 131/200] memcg: relocate charge moving from ->attach to ->post_attach Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 132/200] mm: exclude HugeTLB pages from THP page_mapped() logic Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 133/200] mm/huge_memory: replace VM_NO_THP VM_BUG_ON with actual VMA check Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 134/200] numa: fix /proc/<pid>/numa_maps for THP Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 135/200] mm: vmscan: reclaim highmem zone if buffer_heads is over limit Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 136/200] mm/hwpoison: fix wrong num_poisoned_pages accounting Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 137/200] USB: usbip: fix potential out-of-bounds write Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 138/200] locking/mcs: Fix mcs_spin_lock() ordering Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 139/200] spi/rockchip: Make sure spi clk is on in rockchip_spi_set_cs Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 140/200] irqchip/sunxi-nmi: Fix error check of of_io_request_and_map() Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 141/200] irqchip/mxs: " Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 142/200] regulator: s5m8767: fix get_register() error handling Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 143/200] paride: make verbose parameter an int again Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 144/200] scsi_dh: force modular build if SCSI is a module Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 145/200] fbdev: da8xx-fb: fix videomodes of lcd panels Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 146/200] lib/mpi: Endianness fix Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 147/200] misc/bmp085: Enable building as a module Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 148/200] misc: mic/scif: fix wrap around tests Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 149/200] PM / OPP: Initialize u_volt_min/max to a valid value Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 150/200] PM / Domains: Fix removal of a subdomain Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 151/200] rtc: hym8563: fix invalid year calculation Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 153/200] rtc: ds1685: passing bogus values to irq_restore Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 154/200] rtc: rx8025: remove rv8803 id Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 155/200] rtc: max77686: Properly handle regmap_irq_get_virq() error code Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 156/200] drivers/misc/ad525x_dpot: AD5274 fix RDAC read back errors Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 157/200] perf evlist: Reference count the cpu and thread maps at set_maps() Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 158/200] perf tools: Fix perf script python database export crash Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 159/200] spi: rockchip: modify DMA max burst to 1 Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 160/200] x86/mm/kmmio: Fix mmiotrace for hugepages Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 161/200] ext4: fix NULL pointer dereference in ext4_mark_inode_dirty() Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 162/200] f2fs crypto: fix corrupted symlink in encrypted case Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 163/200] f2fs: slightly reorganize read_raw_super_block Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 164/200] f2fs: cover large section in sanity check of super Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 165/200] ext4/fscrypto: avoid RCU lookup in d_revalidate Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 166/200] f2fs: do f2fs_balance_fs when block is allocated Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 167/200] f2fs: dont need to call set_page_dirty for io error Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 168/200] f2fs crypto: handle unexpected lack of encryption keys Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 169/200] f2fs crypto: make sure the encryption info is initialized on opendir(2) Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 170/200] bus: uniphier-system-bus: fix condition of overlap check Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 171/200] mtd: spi-nor: remove micron_quad_enable() Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 172/200] mtd: brcmnand: Fix v7.1 register offsets Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 174/200] perf hists browser: Only offer symbol scripting when a symbol is under the cursor Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 175/200] perf hists browser: Fix dump to show correct callchain style Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 177/200] perf stat: Document --detailed option Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 178/200] ntb: perf test: fix address space confusion Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 179/200] NTB: Remove _addr functions from ntb_hw_amd Greg Kroah-Hartman
2016-05-03  0:12 ` [PATCH 4.5 180/200] perf/core: Dont leak event in the syscall error path Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 181/200] perf/core: Fix time tracking bug with multiplexing Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 182/200] perf hists: Fix determination of a callchain nodes childlessness Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 184/200] ARM: prima2: always enable reset controller Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 185/200] ARM: EXYNOS: select THERMAL_OF Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 186/200] ARM: dts: armada-375: use armada-370-sata for SATA Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 187/200] ARM: dts: pxa: fix dma engine node to pxa3xx-nand Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 188/200] ARM: dts: am33xx: Fix GPMC dma properties Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 189/200] ARM: dts: am437x: " Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 190/200] bus: imx-weim: Take the status property value into account Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 191/200] btrfs: fix memory leak of fs_info in block group cache Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 192/200] btrfs: cleaner_kthread() doesnt need explicit freeze Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 193/200] unbreak allmodconfig KCONFIG_ALLCONFIG= Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 194/200] thermal: rockchip: fix a impossible condition caused by the warning Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 195/200] sunrpc/cache: drop reference when sunrpc_cache_pipe_upcall() detects a race Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 196/200] megaraid_sas: add missing curly braces in ioctl handler Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 197/200] tpm: fix checks for policy digest existence in tpm2_seal_trusted() Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 198/200] tpm: fix: set continueSession attribute for the unseal operation Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 199/200] stm class: Select CONFIG_SRCU Greg Kroah-Hartman
2016-05-03  0:13 ` [PATCH 4.5 200/200] extcon: max77843: Use correct size for reading the interrupt register Greg Kroah-Hartman
2016-05-03  7:39 ` [PATCH 4.5 000/200] 4.5.3-stable review Guenter Roeck
2016-05-03 18:21   ` Greg Kroah-Hartman
2016-05-04  2:25     ` Guenter Roeck
2016-05-03 14:59 ` Shuah Khan
2016-05-03 18:18   ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160503000558.793447889@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=gi-oh.kim@profitbricks.com \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=roman.penyaev@profitbricks.com \
    --cc=stable@vger.kernel.org \
    --cc=tj@kernel.org \
    --cc=yun.wang@profitbricks.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).