All of lore.kernel.org
 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, Andrew Jones <drjones@redhat.com>,
	Bart Van Assche <bart.vanassche@wdc.com>,
	linux-scsi@vger.kernel.org,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Christoph Hellwig <hch@lst.de>,
	"James E.J. Bottomley" <jejb@linux.vnet.ibm.com>,
	"jianchao.wang" <jianchao.w.wang@oracle.com>,
	Ming Lei <ming.lei@redhat.com>, Jens Axboe <axboe@kernel.dk>
Subject: [PATCH 4.18 079/171] SCSI: fix queue cleanup race before queue initialization is done
Date: Mon, 19 Nov 2018 17:27:55 +0100	[thread overview]
Message-ID: <20181119162632.278437995@linuxfoundation.org> (raw)
In-Reply-To: <20181119162618.909354448@linuxfoundation.org>

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

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

From: Ming Lei <ming.lei@redhat.com>

commit 8dc765d438f1e42b3e8227b3b09fad7d73f4ec9a upstream.

c2856ae2f315d ("blk-mq: quiesce queue before freeing queue") has
already fixed this race, however the implied synchronize_rcu()
in blk_mq_quiesce_queue() can slow down LUN probe a lot, so caused
performance regression.

Then 1311326cf4755c7 ("blk-mq: avoid to synchronize rcu inside blk_cleanup_queue()")
tried to quiesce queue for avoiding unnecessary synchronize_rcu()
only when queue initialization is done, because it is usual to see
lots of inexistent LUNs which need to be probed.

However, turns out it isn't safe to quiesce queue only when queue
initialization is done. Because when one SCSI command is completed,
the user of sending command can be waken up immediately, then the
scsi device may be removed, meantime the run queue in scsi_end_request()
is still in-progress, so kernel panic can be caused.

In Red Hat QE lab, there are several reports about this kind of kernel
panic triggered during kernel booting.

This patch tries to address the issue by grabing one queue usage
counter during freeing one request and the following run queue.

Fixes: 1311326cf4755c7 ("blk-mq: avoid to synchronize rcu inside blk_cleanup_queue()")
Cc: Andrew Jones <drjones@redhat.com>
Cc: Bart Van Assche <bart.vanassche@wdc.com>
Cc: linux-scsi@vger.kernel.org
Cc: Martin K. Petersen <martin.petersen@oracle.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: James E.J. Bottomley <jejb@linux.vnet.ibm.com>
Cc: stable <stable@vger.kernel.org>
Cc: jianchao.wang <jianchao.w.wang@oracle.com>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 block/blk-core.c        |    5 ++---
 drivers/scsi/scsi_lib.c |    8 ++++++++
 2 files changed, 10 insertions(+), 3 deletions(-)

--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -793,9 +793,8 @@ void blk_cleanup_queue(struct request_qu
 	 * dispatch may still be in-progress since we dispatch requests
 	 * from more than one contexts.
 	 *
-	 * No need to quiesce queue if it isn't initialized yet since
-	 * blk_freeze_queue() should be enough for cases of passthrough
-	 * request.
+	 * We rely on driver to deal with the race in case that queue
+	 * initialization isn't done.
 	 */
 	if (q->mq_ops && blk_queue_init_done(q))
 		blk_mq_quiesce_queue(q);
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -696,6 +696,12 @@ static bool scsi_end_request(struct requ
 		 */
 		scsi_mq_uninit_cmd(cmd);
 
+		/*
+		 * queue is still alive, so grab the ref for preventing it
+		 * from being cleaned up during running queue.
+		 */
+		percpu_ref_get(&q->q_usage_counter);
+
 		__blk_mq_end_request(req, error);
 
 		if (scsi_target(sdev)->single_lun ||
@@ -703,6 +709,8 @@ static bool scsi_end_request(struct requ
 			kblockd_schedule_work(&sdev->requeue_work);
 		else
 			blk_mq_run_hw_queues(q, true);
+
+		percpu_ref_put(&q->q_usage_counter);
 	} else {
 		unsigned long flags;
 



  parent reply	other threads:[~2018-11-19 16:44 UTC|newest]

Thread overview: 184+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-19 16:26 [PATCH 4.18 000/171] 4.18.20-stable review Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 001/171] powerpc/traps: restore recoverability of machine_check interrupts Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 002/171] powerpc/64/module: REL32 relocation range check Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 003/171] powerpc/mm: Fix page table dump to work on Radix Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 004/171] powerpc/mm: fix always true/false warning in slice.c Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 005/171] drm/amd/display: fix bug of accessing invalid memory Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 006/171] Input: wm97xx-ts - fix exit path Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 007/171] powerpc/Makefile: Fix PPC_BOOK3S_64 ASFLAGS Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 008/171] powerpc/eeh: Fix possible null deref in eeh_dump_dev_log() Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 009/171] tty: check name length in tty_find_polling_driver() Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 010/171] tracing/kprobes: Check the probe on unloaded module correctly Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 011/171] drm/amdgpu/powerplay: fix missing break in switch statements Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 012/171] ARM: imx_v6_v7_defconfig: Select CONFIG_TMPFS_POSIX_ACL Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 013/171] powerpc/nohash: fix undefined behaviour when testing page size support Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 014/171] powerpc/mm: Dont report hugepage tables as memory leaks when using kmemleak Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 015/171] drm/omap: fix memory barrier bug in DMM driver Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 016/171] drm/amd/display: fix gamma not being applied Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 017/171] drm/hisilicon: hibmc: Do not carry error code in HiBMC framebuffer pointer Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 018/171] media: pci: cx23885: handle adding to list failure Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 019/171] media: coda: dont overwrite h.264 profile_idc on decoder instance Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 020/171] MIPS: kexec: Mark CPU offline before disabling local IRQ Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 021/171] powerpc/boot: Ensure _zimage_start is a weak symbol Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 022/171] powerpc/memtrace: Remove memory in chunks Greg Kroah-Hartman
2018-11-19 16:26 ` [PATCH 4.18 023/171] MIPS/PCI: Call pcie_bus_configure_settings() to set MPS/MRRS Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 024/171] sc16is7xx: Fix for multi-channel stall Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 025/171] media: tvp5150: fix width alignment during set_selection() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 026/171] powerpc/selftests: Wait all threads to join Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 027/171] staging:iio:ad7606: fix voltage scales Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 028/171] drm: rcar-du: Update Gen3 output limitations Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 029/171] drm/amdgpu: Fix SDMA TO after GPU reset v3 Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 030/171] staging: most: video: fix registration of an empty comp core_component Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 031/171] 9p locks: fix glock.client_id leak in do_lock Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 032/171] udf: Prevent write-unsupported filesystem to be remounted read-write Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 033/171] ARM: dts: imx6ull: keep IMX6UL_ prefix for signals on both i.MX6UL and i.MX6ULL Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 034/171] 9p: clear dangling pointers in p9stat_free Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 035/171] cdrom: fix improper type cast, which can leat to information leak Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 036/171] ovl: fix error handling in ovl_verify_set_fh() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 037/171] ovl: check whiteout in ovl_create_over_whiteout() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 038/171] serial: sh-sci: Fix could not remove dev_attr_rx_fifo_timeout Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 039/171] scsi: qla2xxx: Fix incorrect port speed being set for FC adapters Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 040/171] scsi: qla2xxx: Fix process response queue for ISP26XX and above Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 041/171] scsi: qla2xxx: Remove stale debug trace message from tcm_qla2xxx Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 042/171] scsi: qla2xxx: shutdown chip if reset fail Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 043/171] scsi: qla2xxx: Fix duplicate switch database entries Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 044/171] scsi: qla2xxx: Fix driver hang when FC-NVMe LUNs are configured Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 045/171] fuse: Fix use-after-free in fuse_dev_do_read() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 046/171] fuse: Fix use-after-free in fuse_dev_do_write() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 047/171] fuse: fix blocked_waitq wakeup Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 048/171] fuse: set FR_SENT while locked Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 049/171] ovl: fix recursive oi->lock in ovl_link() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 050/171] scsi: qla2xxx: Fix re-using LoopID when handle is in use Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 051/171] scsi: qla2xxx: Fix NVMe session hang on unload Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 052/171] arm64: dts: stratix10: Support Ethernet Jumbo frame Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 053/171] arm64: dts: stratix10: fix multicast filtering Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 054/171] clk: meson-gxbb: set fclk_div3 as CLK_IS_CRITICAL Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 055/171] clk: meson: axg: mark fdiv2 and fdiv3 as critical Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 056/171] zram: close udev startup race condition as default groups Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 057/171] MIPS: Loongson-3: Fix CPU UART irq delivery problem Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 058/171] MIPS: Loongson-3: Fix BRIDGE " Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 059/171] xtensa: add NOTES section to the linker script Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 060/171] xtensa: make sure bFLT stack is 16 byte aligned Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 061/171] xtensa: fix boot parameters address translation Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 062/171] um: Drop own definition of PTRACE_SYSEMU/_SINGLESTEP Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 063/171] clk: s2mps11: Fix matching when built as module and DT node contains compatible Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 064/171] clk: at91: Fix division by zero in PLL recalc_rate() Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 065/171] clk: sunxi-ng: h6: fix bus clocks divider position Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 066/171] clk: rockchip: fix wrong mmc sample phase shift for rk3328 Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 067/171] clk: rockchip: Fix static checker warning in rockchip_ddrclk_get_parent call Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 068/171] libceph: bump CEPH_MSG_MAX_DATA_LEN Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 069/171] Revert "ceph: fix dentry leak in splice_dentry()" Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 070/171] thermal: core: Fix use-after-free in thermal_cooling_device_destroy_sysfs Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 071/171] mach64: fix display corruption on big endian machines Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 072/171] mach64: fix image corruption due to reading accelerator registers Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 073/171] acpi/nfit, x86/mce: Handle only uncorrectable machine checks Greg Kroah-Hartman
2018-11-19 16:27   ` [4.18,073/171] " Greg Kroah-Hartman
2018-11-19 16:27   ` [PATCH 4.18 073/171] " Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 074/171] acpi/nfit, x86/mce: Validate a MCEs address before using it Greg Kroah-Hartman
2018-11-19 16:27   ` [4.18,074/171] " Greg Kroah-Hartman
2018-11-19 16:27   ` [PATCH 4.18 074/171] " Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 075/171] acpi, nfit: Fix ARS overflow continuation Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 076/171] reset: hisilicon: fix potential NULL pointer dereference Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 077/171] vhost/scsi: truncate T10 PI iov_iter to prot_bytes Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 078/171] scsi: qla2xxx: Initialize port speed to avoid setting lower speed Greg Kroah-Hartman
2018-11-19 16:27 ` Greg Kroah-Hartman [this message]
2018-11-19 16:27 ` [PATCH 4.18 080/171] Revert "powerpc/8xx: Use L1 entry APG to handle _PAGE_ACCESSED for CONFIG_SWAP" Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 081/171] soc: ti: QMSS: Fix usage of irq_set_affinity_hint Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 082/171] ocfs2: fix a misuse a of brelse after failing ocfs2_check_dir_entry Greg Kroah-Hartman
2018-11-19 16:27 ` [PATCH 4.18 083/171] ocfs2: free up write context when direct IO failed Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 084/171] mm: thp: relax __GFP_THISNODE for MADV_HUGEPAGE mappings Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 085/171] memory_hotplug: cond_resched in __remove_pages Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 086/171] netfilter: conntrack: fix calculation of next bucket number in early_drop Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 087/171] ARM: 8809/1: proc-v7: fix Thumb annotation of cpu_v7_hvc_switch_mm Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 088/171] bonding/802.3ad: fix link_failure_count tracking Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 089/171] mtd: spi-nor: cadence-quadspi: Return error code in cqspi_direct_read_execute() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 090/171] mtd: nand: Fix nanddev_neraseblocks() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 091/171] mtd: docg3: dont set conflicting BCH_CONST_PARAMS option Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 092/171] hwmon: (core) Fix double-free in __hwmon_device_register() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 093/171] perf stat: Handle different PMU names with common prefix Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 094/171] of, numa: Validate some distance map rules Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 095/171] x86/cpu/vmware: Do not trace vmware_sched_clock() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 096/171] x86/hyper-v: Enable PIT shutdown quirk Greg Kroah-Hartman
2018-11-19 16:28 ` Greg Kroah-Hartman
2018-11-19 16:28   ` Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 097/171] termios, tty/tty_baudrate.c: fix buffer overrun Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 098/171] arch/alpha, termios: implement BOTHER, IBSHIFT and termios2 Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 099/171] watchdog/core: Add missing prototypes for weak functions Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 100/171] btrfs: fix pinned underflow after transaction aborted Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 101/171] Btrfs: fix cur_offset in the error case for nocow Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 102/171] Btrfs: fix infinite loop on inode eviction after deduplication of eof block Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 103/171] Btrfs: fix data corruption due to cloning " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 104/171] clockevents/drivers/i8253: Add support for PIT shutdown quirk Greg Kroah-Hartman
2018-11-19 16:28   ` Greg Kroah-Hartman
2018-11-19 16:28 ` Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 105/171] ext4: add missing brelse() update_backups()s error path Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 106/171] ext4: add missing brelse() in set_flexbg_block_bitmap()s " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 107/171] ext4: add missing brelse() add_new_gdb_meta_bg()s " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 108/171] ext4: avoid potential extra brelse in setup_new_flex_group_blocks() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 109/171] ext4: missing !bh check in ext4_xattr_inode_write() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 110/171] ext4: fix possible inode leak in the retry loop of ext4_resize_fs() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 111/171] ext4: avoid buffer leak on shutdown in ext4_mark_iloc_dirty() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 112/171] ext4: avoid buffer leak in ext4_orphan_add() after prior errors Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 113/171] ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 114/171] ext4: avoid possible double brelse() in add_new_gdb() on error path Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 115/171] ext4: fix possible leak of sbi->s_group_desc_leak in " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 116/171] ext4: fix possible leak of s_journal_flag_rwsem " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 117/171] ext4: fix buffer leak in ext4_xattr_get_block() on " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 118/171] ext4: release bs.bh before re-using in ext4_xattr_block_find() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 119/171] ext4: fix buffer leak in ext4_xattr_move_to_block() on error path Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 120/171] ext4: fix buffer leak in ext4_expand_extra_isize_ea() " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 121/171] ext4: fix buffer leak in __ext4_read_dirblock() " Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 122/171] mount: Retest MNT_LOCKED in do_umount Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 123/171] mount: Dont allow copying MNT_UNBINDABLE|MNT_LOCKED mounts Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 124/171] mount: Prevent MNT_DETACH from disconnecting locked mounts Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 125/171] mnt: fix __detach_mounts infinite loop Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 126/171] kdb: use correct pointer when btc calls btt Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 127/171] kdb: print real address of pointers instead of hashed addresses Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 128/171] sunrpc: correct the computation for page_ptr when truncating Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 129/171] NFSv4: Dont exit the state manager without clearing NFS4CLNT_MANAGER_RUNNING Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 130/171] nfsd: COPY and CLONE operations require the saved filehandle to be set Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 131/171] rtc: hctosys: Add missing range error reporting Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 132/171] fuse: fix use-after-free in fuse_direct_IO() Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 133/171] fuse: fix leaked notify reply Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 134/171] selinux: check length properly in SCTP bind hook Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 135/171] configfs: replace strncpy with memcpy Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 136/171] gfs2: Put bitmap buffers in put_super Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 137/171] gfs2: Fix metadata read-ahead during truncate (2) Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 138/171] libata: blacklist SAMSUNG MZ7TD256HAFV-000L9 SSD Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 139/171] crypto: user - fix leaking uninitialized memory to userspace Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 140/171] lib/ubsan.c: dont mark __ubsan_handle_builtin_unreachable as noreturn Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 141/171] hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 142/171] mm/swapfile.c: use kvzalloc for swap_info_struct allocation Greg Kroah-Hartman
2018-11-19 16:28 ` [PATCH 4.18 143/171] efi/arm/libstub: Pack FDT after populating it Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 144/171] drm/rockchip: Allow driver to be shutdown on reboot/kexec Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 145/171] drm/msm: fix OF child-node lookup Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 146/171] drm/amdgpu: Fix typo in amdgpu_vmid_mgr_init Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 147/171] drm/amdgpu: add missing CHIP_HAINAN in amdgpu_ucode_get_load_type Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 148/171] drm/nouveau: Check backlight IDs are >= 0, not > 0 Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 149/171] drm/nouveau: Fix nv50_mstc->best_encoder() Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 150/171] drm/amd/powerplay: Enable/Disable NBPSTATE on On/OFF of UVD Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 151/171] drm/etnaviv: fix bogus fence complete check in timeout handler Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 152/171] drm/dp_mst: Check if primary mstb is null Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 153/171] drm/atomic_helper: Disallow new modesets on unregistered connectors Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 154/171] drm: panel-orientation-quirks: Add quirk for Acer One 10 (S1003) Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 155/171] drm/i915/dp: Link train Fallback on eDP only if fallback link BW can fit panels native mode Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 156/171] drm/i915: Restore vblank interrupts earlier Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 157/171] drm/i915: Dont unset intel_connector->mst_port Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 158/171] drm/i915: Skip vcpi allocation for MSTB ports that are gone Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 159/171] drm/i915: Large page offsets for pread/pwrite Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 160/171] drm/i915/dp: Fix link retraining comment in intel_dp_long_pulse() Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 161/171] drm/i915/dp: Restrict link retrain workaround to external monitors Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 162/171] drm/i915/hdmi: Add HDMI 2.0 audio clock recovery N values Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 163/171] drm/i915: Fix error handling for the NV12 fb dimensions check Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 164/171] drm/i915: Fix ilk+ watermarks when disabling pipes Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 165/171] drm/i915: Compare users 64b GTT offset even on 32b Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 166/171] drm/i915: Dont oops during modeset shutdown after lpe audio deinit Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 167/171] drm/i915: Mark pin flags as u64 Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 168/171] drm/i915/ringbuffer: Delay after EMIT_INVALIDATE for gen4/gen5 Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 169/171] drm/i915/execlists: Force write serialisation into context image vs execution Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 170/171] drm/i915: Fix possible race in intel_dp_add_mst_connector() Greg Kroah-Hartman
2018-11-19 16:29 ` [PATCH 4.18 171/171] CONFIG_XEN_PV breaks xen_create_contiguous_region on ARM Greg Kroah-Hartman
2018-11-19 23:31 ` [PATCH 4.18 000/171] 4.18.20-stable review kernelci.org bot
2018-11-20  0:26 ` shuah
2018-11-20  8:07 ` Naresh Kamboju
2018-11-20 20:40 ` Guenter Roeck

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=20181119162632.278437995@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=bart.vanassche@wdc.com \
    --cc=drjones@redhat.com \
    --cc=hch@lst.de \
    --cc=jejb@linux.vnet.ibm.com \
    --cc=jianchao.w.wang@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=ming.lei@redhat.com \
    --cc=stable@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.