linux-kernel.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, Dongli Zhang <dongli.zhang@oracle.com>,
	James Smart <james.smart@broadcom.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>,
	Hannes Reinecke <hare@suse.com>, Ming Lei <ming.lei@redhat.com>,
	Jens Axboe <axboe@kernel.dk>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.1 061/405] blk-mq: split blk_mq_alloc_and_init_hctx into two parts
Date: Wed, 29 May 2019 20:00:59 -0700	[thread overview]
Message-ID: <20190530030544.028497142@linuxfoundation.org> (raw)
In-Reply-To: <20190530030540.291644921@linuxfoundation.org>

[ Upstream commit 7c6c5b7c9186e3fb5b10afb8e5f710ae661144c6 ]

Split blk_mq_alloc_and_init_hctx into two parts, and one is
blk_mq_alloc_hctx() for allocating all hctx resources, another
is blk_mq_init_hctx() for initializing hctx, which serves as
counter-part of blk_mq_exit_hctx().

Cc: Dongli Zhang <dongli.zhang@oracle.com>
Cc: James Smart <james.smart@broadcom.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>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Tested-by: James Smart <james.smart@broadcom.com>
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 block/blk-mq.c | 139 ++++++++++++++++++++++++++-----------------------
 1 file changed, 75 insertions(+), 64 deletions(-)

diff --git a/block/blk-mq.c b/block/blk-mq.c
index b0e5e67e20a28..8a41cc5974fe1 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -2284,15 +2284,65 @@ static void blk_mq_exit_hw_queues(struct request_queue *q,
 	}
 }
 
+static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
+{
+	int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
+
+	BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
+			   __alignof__(struct blk_mq_hw_ctx)) !=
+		     sizeof(struct blk_mq_hw_ctx));
+
+	if (tag_set->flags & BLK_MQ_F_BLOCKING)
+		hw_ctx_size += sizeof(struct srcu_struct);
+
+	return hw_ctx_size;
+}
+
 static int blk_mq_init_hctx(struct request_queue *q,
 		struct blk_mq_tag_set *set,
 		struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
 {
-	int node;
+	hctx->queue_num = hctx_idx;
+
+	cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
+
+	hctx->tags = set->tags[hctx_idx];
+
+	if (set->ops->init_hctx &&
+	    set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
+		goto unregister_cpu_notifier;
 
-	node = hctx->numa_node;
+	if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx,
+				hctx->numa_node))
+		goto exit_hctx;
+	return 0;
+
+ exit_hctx:
+	if (set->ops->exit_hctx)
+		set->ops->exit_hctx(hctx, hctx_idx);
+ unregister_cpu_notifier:
+	blk_mq_remove_cpuhp(hctx);
+	return -1;
+}
+
+static struct blk_mq_hw_ctx *
+blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set,
+		int node)
+{
+	struct blk_mq_hw_ctx *hctx;
+	gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY;
+
+	hctx = kzalloc_node(blk_mq_hw_ctx_size(set), gfp, node);
+	if (!hctx)
+		goto fail_alloc_hctx;
+
+	if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node))
+		goto free_hctx;
+
+	atomic_set(&hctx->nr_active, 0);
 	if (node == NUMA_NO_NODE)
-		node = hctx->numa_node = set->numa_node;
+		node = set->numa_node;
+	hctx->numa_node = node;
 
 	INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
 	spin_lock_init(&hctx->lock);
@@ -2300,58 +2350,45 @@ static int blk_mq_init_hctx(struct request_queue *q,
 	hctx->queue = q;
 	hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
 
-	cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
-
-	hctx->tags = set->tags[hctx_idx];
-
 	/*
 	 * Allocate space for all possible cpus to avoid allocation at
 	 * runtime
 	 */
 	hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
-			GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node);
+			gfp, node);
 	if (!hctx->ctxs)
-		goto unregister_cpu_notifier;
+		goto free_cpumask;
 
 	if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
-				GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node))
+				gfp, node))
 		goto free_ctxs;
-
 	hctx->nr_ctx = 0;
 
 	spin_lock_init(&hctx->dispatch_wait_lock);
 	init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
 	INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
 
-	if (set->ops->init_hctx &&
-	    set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
-		goto free_bitmap;
-
 	hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size,
-			GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
+			gfp);
 	if (!hctx->fq)
-		goto exit_hctx;
-
-	if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx, node))
-		goto free_fq;
+		goto free_bitmap;
 
 	if (hctx->flags & BLK_MQ_F_BLOCKING)
 		init_srcu_struct(hctx->srcu);
+	blk_mq_hctx_kobj_init(hctx);
 
-	return 0;
+	return hctx;
 
- free_fq:
-	blk_free_flush_queue(hctx->fq);
- exit_hctx:
-	if (set->ops->exit_hctx)
-		set->ops->exit_hctx(hctx, hctx_idx);
  free_bitmap:
 	sbitmap_free(&hctx->ctx_map);
  free_ctxs:
 	kfree(hctx->ctxs);
- unregister_cpu_notifier:
-	blk_mq_remove_cpuhp(hctx);
-	return -1;
+ free_cpumask:
+	free_cpumask_var(hctx->cpumask);
+ free_hctx:
+	kfree(hctx);
+ fail_alloc_hctx:
+	return NULL;
 }
 
 static void blk_mq_init_cpu_queues(struct request_queue *q,
@@ -2695,51 +2732,25 @@ struct request_queue *blk_mq_init_sq_queue(struct blk_mq_tag_set *set,
 }
 EXPORT_SYMBOL(blk_mq_init_sq_queue);
 
-static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
-{
-	int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
-
-	BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
-			   __alignof__(struct blk_mq_hw_ctx)) !=
-		     sizeof(struct blk_mq_hw_ctx));
-
-	if (tag_set->flags & BLK_MQ_F_BLOCKING)
-		hw_ctx_size += sizeof(struct srcu_struct);
-
-	return hw_ctx_size;
-}
-
 static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
 		struct blk_mq_tag_set *set, struct request_queue *q,
 		int hctx_idx, int node)
 {
 	struct blk_mq_hw_ctx *hctx;
 
-	hctx = kzalloc_node(blk_mq_hw_ctx_size(set),
-			GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
-			node);
+	hctx = blk_mq_alloc_hctx(q, set, node);
 	if (!hctx)
-		return NULL;
-
-	if (!zalloc_cpumask_var_node(&hctx->cpumask,
-				GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
-				node)) {
-		kfree(hctx);
-		return NULL;
-	}
-
-	atomic_set(&hctx->nr_active, 0);
-	hctx->numa_node = node;
-	hctx->queue_num = hctx_idx;
+		goto fail;
 
-	if (blk_mq_init_hctx(q, set, hctx, hctx_idx)) {
-		free_cpumask_var(hctx->cpumask);
-		kfree(hctx);
-		return NULL;
-	}
-	blk_mq_hctx_kobj_init(hctx);
+	if (blk_mq_init_hctx(q, set, hctx, hctx_idx))
+		goto free_hctx;
 
 	return hctx;
+
+ free_hctx:
+	kobject_put(&hctx->kobj);
+ fail:
+	return NULL;
 }
 
 static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
-- 
2.20.1




  parent reply	other threads:[~2019-05-30  3:10 UTC|newest]

Thread overview: 414+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-30  2:59 [PATCH 5.1 000/405] 5.1.6-stable review Greg Kroah-Hartman
2019-05-30  2:59 ` [PATCH 5.1 001/405] x86: Hide the int3_emulate_call/jmp functions from UML Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 002/405] ext4: do not delete unlinked inode from orphan list on failed truncate Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 003/405] ext4: wait for outstanding dio during truncate in nojournal mode Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 004/405] KVM: x86: fix return value for reserved EFER Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 005/405] x86/kvm/pmu: Set AMDs virt PMU version to 1 Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 006/405] bio: fix improper use of smp_mb__before_atomic() Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 007/405] sbitmap: " Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 008/405] Revert "scsi: sd: Keep disk read-only when re-reading partition" Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 009/405] crypto: hash - fix incorrect HASH_MAX_DESCSIZE Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 010/405] crypto: vmx - CTR: always increment IV as quadword Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 011/405] mmc: sdhci-iproc: cygnus: Set NO_HISPD bit to fix HS50 data hold time problem Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 012/405] mmc: sdhci-iproc: " Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 013/405] tracing: Add a check_val() check before updating cond_snapshot() track_val Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 014/405] dax: Arrange for dax_supported check to span multiple devices Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 015/405] kvm: Check irqchip mode before assign irqfd Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 016/405] kvm: svm/avic: fix off-by-one in checking host APIC ID Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 017/405] KVM: nVMX: Fix using __this_cpu_read() in preemptible context Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 018/405] libnvdimm/pmem: Bypass CONFIG_HARDENED_USERCOPY overhead Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 019/405] arm64/kernel: kaslr: reduce module randomization range to 2 GB Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 020/405] arm64: Kconfig: Make ARM64_PSEUDO_NMI depend on BROKEN for now Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 021/405] arm64/iommu: handle non-remapped addresses in ->mmap and ->get_sgtable Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 022/405] gfs2: Fix sign extension bug in gfs2_update_stats Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 023/405] btrfs: dont double unlock on error in btrfs_punch_hole Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 024/405] btrfs: Check the compression level before getting a workspace Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 025/405] Btrfs: do not abort transaction at btrfs_update_root() after failure to COW path Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 026/405] Btrfs: avoid fallback to transaction commit during fsync of files with holes Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 027/405] Btrfs: fix race between ranged fsync and writeback of adjacent ranges Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 028/405] btrfs: sysfs: Fix error path kobject memory leak Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 029/405] btrfs: sysfs: dont leak memory when failing add fsid Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 030/405] fbdev: fix divide error in fb_var_to_videomode Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 031/405] arm64: errata: Add workaround for Cortex-A76 erratum #1463225 Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 032/405] ovl: relax WARN_ON() for overlapping layers use case Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 033/405] fbdev: fix WARNING in __alloc_pages_nodemask bug Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 034/405] media: cpia2: Fix use-after-free in cpia2_exit Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 035/405] media: serial_ir: Fix use-after-free in serial_ir_init_module Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 036/405] media: vb2: add waiting_in_dqbuf flag Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 037/405] media: vivid: use vfree() instead of kfree() for dev->bitmap_cap Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 038/405] ssb: Fix possible NULL pointer dereference in ssb_host_pcmcia_exit Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 039/405] bpf: devmap: fix use-after-free Read in __dev_map_entry_free Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 040/405] batman-adv: mcast: fix multicast tt/tvlv worker locking Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 041/405] at76c50x-usb: Dont register led_trigger if usb_register_driver failed Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 042/405] acct_on(): dont mess with freeze protection Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 043/405] netfilter: ctnetlink: Resolve conntrack L3-protocol flush regression Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 044/405] Revert "btrfs: Honour FITRIM range constraints during free space trim" Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 045/405] gfs2: Fix lru_count going negative Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 046/405] cxgb4: Fix error path in cxgb4_init_module Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 047/405] afs: Fix getting the afs.fid xattr Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 048/405] NFS: make nfs_match_client killable Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 049/405] gfs2: fix race between gfs2_freeze_func and unmount Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 050/405] io_uring: use cpu_online() to check p->sq_thread_cpu instead of cpu_possible() Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 051/405] IB/hfi1: Fix WQ_MEM_RECLAIM warning Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 052/405] gfs2: Fix occasional glock use-after-free Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 053/405] mmc: core: Verify SD bus width Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 054/405] tools/bpf: fix perf build error with uClibc (seen on ARC) Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 055/405] i40e: Fix of memory leak and integer truncation in i40e_virtchnl.c Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 056/405] libbpf: fix invalid munmap call Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 057/405] selftests/bpf: set RLIMIT_MEMLOCK properly for test_libbpf_open.c Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 058/405] bpftool: exclude bash-completion/bpftool from .gitignore pattern Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 059/405] ice: Separate if conditions for ice_set_features() Greg Kroah-Hartman
2019-05-30  3:00 ` [PATCH 5.1 060/405] ice: Preserve VLAN Rx stripping settings Greg Kroah-Hartman
2019-05-30  3:00 ` Greg Kroah-Hartman [this message]
2019-05-30  3:01 ` [PATCH 5.1 062/405] blk-mq: grab .q_usage_counter when queuing request from plug code path Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 063/405] dmaengine: tegra210-dma: free dma controller in remove() Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 064/405] net: ena: gcc 8: fix compilation warning Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 065/405] net: ena: fix: set freed objects to NULL to avoid failing future allocations Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 066/405] hv_netvsc: fix race that may miss tx queue wakeup Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 067/405] Bluetooth: Ignore CC events not matching the last HCI command Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 068/405] pinctrl: zte: fix leaked of_node references Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 069/405] ASoC: Intel: kbl_da7219_max98357a: Map BTN_0 to KEY_PLAYPAUSE Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 070/405] usb: dwc2: gadget: Increase descriptors count for ISOCs Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 071/405] usb: dwc3: move synchronize_irq() out of the spinlock protected block Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 072/405] usb: gadget: f_fs: dont free buffer prematurely Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 073/405] ASoC: hdmi-codec: unlock the device on startup errors Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 074/405] powerpc/perf: Return accordingly on invalid chip-id in Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 075/405] powerpc/boot: Fix missing check of lseek() return value Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 076/405] powerpc/perf: Fix loop exit condition in nest_imc_event_init Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 077/405] spi: atmel-quadspi: fix crash while suspending Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 078/405] ASoC: imx: fix fiq dependencies Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 079/405] spi: pxa2xx: fix SCR (divisor) calculation Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 080/405] net/mlx5: E-Switch, Use atomic rep state to serialize state change Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 081/405] brcm80211: potential NULL dereference in brcmf_cfg80211_vndr_cmds_dcmd_handler() Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 082/405] ACPI / property: fix handling of data_nodes in acpi_get_next_subnode() Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 083/405] drm/nouveau/bar/nv50: ensure BAR is mapped Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 084/405] media: stm32-dcmi: return appropriate error codes during probe Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 085/405] ARM: vdso: Remove dependency with the arch_timer driver internals Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 086/405] arm64: Fix compiler warning from pte_unmap() with -Wunused-but-set-variable Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 087/405] mt76: remove mt76_queue dependency from tx_queue_skb function pointer Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 088/405] x86/ftrace: Set trampoline pages as executable Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 089/405] powerpc/watchdog: Use hrtimers for per-CPU heartbeat Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 090/405] cpufreq: Fix kobject memleak Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 091/405] scsi: qla2xxx: Fix a qla24xx_enable_msix() error path Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 092/405] scsi: qla2xxx: Fix abort handling in tcm_qla2xxx_write_pending() Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 093/405] scsi: qla2xxx: Avoid that lockdep complains about unsafe locking in tcm_qla2xxx_close_session() Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 094/405] scsi: qla2xxx: Fix hardirq-unsafe locking Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 095/405] x86/modules: Avoid breaking W^X while loading modules Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 096/405] Btrfs: fix data bytes_may_use underflow with fallocate due to failed quota reserve Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 097/405] btrfs: fix panic during relocation after ENOSPC before writeback happens Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 098/405] btrfs: Dont panic when we cant find a root key Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 099/405] iwlwifi: pcie: dont crash on invalid RX interrupt Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 100/405] rtc: 88pm860x: prevent use-after-free on device remove Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 101/405] rtc: stm32: manage the get_irq probe defer case Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 102/405] scsi: qedi: Abort ep termination if offload not scheduled Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 103/405] s390/kexec_file: Fix detection of text segment in ELF loader Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 104/405] ALSA: hda: fix unregister device twice on ASoC driver Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 105/405] sched/nohz: Run NOHZ idle load balancer on HK_FLAG_MISC CPUs Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 106/405] net: ethernet: ti: cpsw: fix allmulti cfg in dual_mac mode Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 107/405] w1: fix the resume command API Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 108/405] net: hns3: fix pause configure fail problem Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 109/405] net: hns3: fix for TX clean num when cleaning TX BD Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 110/405] net: phy: improve genphy_soft_reset Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 111/405] s390: qeth: address type mismatch warning Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 112/405] arm64: futex: Fix FUTEX_WAKE_OP atomic ops with non-zero result value Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 113/405] net: hns3: use atomic_t replace u32 for arqs count Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 114/405] dmaengine: pl330: _stop: clear interrupt status Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 115/405] mac80211/cfg80211: update bss channel on channel switch Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 116/405] drm: prefix header search paths with $(srctree)/ Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 117/405] libbpf: fix samples/bpf build failure due to undefined UINT32_MAX Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 118/405] slimbus: fix a potential NULL pointer dereference in of_qcom_slim_ngd_register Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 119/405] regulator: core: Actually put the gpiod after use Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 120/405] ASoC: fsl_sai: Update is_slave_mode with correct value Greg Kroah-Hartman
2019-05-30  3:01 ` [PATCH 5.1 121/405] Fix nfs4.2 return -EINVAL when do dedupe operation Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 122/405] mwifiex: prevent an array overflow Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 123/405] rsi: Fix NULL pointer dereference in kmalloc Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 124/405] net: cw1200: fix a NULL pointer dereference Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 125/405] nvme: set 0 capacity if namespace block size exceeds PAGE_SIZE Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 126/405] nvme-rdma: fix a NULL deref when an admin connect times out Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 127/405] nvme-tcp: " Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 128/405] crypto: sun4i-ss - Fix invalid calculation of hash end Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 129/405] bcache: avoid potential memleak of list of journal_replay(s) in the CACHE_SYNC branch of run_cache_set Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 130/405] bcache: return error immediately in bch_journal_replay() Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 131/405] bcache: fix failure in journal relplay Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 132/405] bcache: add failure check to run_cache_set() for journal replay Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 133/405] bcache: avoid clang -Wunintialized warning Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 134/405] RDMA/cma: Consider scope_id while binding to ipv6 ll address Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 135/405] vfio-ccw: Do not call flush_workqueue while holding the spinlock Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 136/405] vfio-ccw: Release any channel program when releasing/removing vfio-ccw mdev Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 137/405] x86/build: Move _etext to actual end of .text Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 138/405] smpboot: Place the __percpu annotation correctly Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 139/405] x86/uaccess: Dont leak the AC flag into __put_user() argument evaluation Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 140/405] x86/mm: Remove in_nmi() warning from 64-bit implementation of vmalloc_fault() Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 141/405] mm/uaccess: Use unsigned long to placate UBSAN warnings on older GCC versions Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 142/405] Bluetooth: hci_qca: Fix crash with non-serdev devices Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 143/405] Bluetooth: hci_qca: Give enough time to ROME controller to bootup Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 144/405] Bluetooth: btbcm: Add default address for BCM43341B Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 145/405] Bluetooth: mediatek: Fixed incorrect type in assignment Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 146/405] HID: logitech-hidpp: use RAP instead of FAP to get the protocol version Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 147/405] pinctrl: pistachio: fix leaked of_node references Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 148/405] pinctrl: st: " Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 149/405] pinctrl: samsung: " Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 150/405] clk: rockchip: undo several noc and special clocks as critical on rk3288 Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 151/405] perf/arm-cci: Remove broken race mitigation Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 152/405] dmaengine: at_xdmac: remove BUG_ON macro in tasklet Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 153/405] media: coda: clear error return value before picture run Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 154/405] media: ov6650: Move v4l2_clk_get() to ov6650_video_probe() helper Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 155/405] media: au0828: stop video streaming only when last user stops Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 156/405] media: ov2659: make S_FMT succeed even if requested format doesnt match Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 157/405] audit: fix a memory leak bug Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 158/405] media: stm32-dcmi: fix crash when subdev do not expose any formats Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 159/405] media: au0828: Fix NULL pointer dereference in au0828_analog_stream_enable() Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 160/405] media: pvrusb2: Prevent a buffer overflow Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 161/405] iio: adc: stm32-dfsdm: fix unmet direct dependencies detected Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 162/405] block: fix use-after-free on gendisk Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 163/405] powerpc/numa: improve control of topology updates Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 164/405] powerpc/64: Fix booting large kernels with STRICT_KERNEL_RWX Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 165/405] random: fix CRNG initialization when random.trust_cpu=1 Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 166/405] random: add a spinlock_t to struct batched_entropy Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 167/405] cgroup: protect cgroup->nr_(dying_)descendants by css_set_lock Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 168/405] sched/core: Check quota and period overflow at usec to nsec conversion Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 169/405] sched/rt: Check integer " Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 170/405] sched/core: Handle overflow in cpu_shares_write_u64 Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 171/405] staging: vc04_services: handle kzalloc failure Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 172/405] drm/msm/dpu: release resources on modeset failure Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 173/405] drm/msm: a5xx: fix possible object reference leak Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 174/405] drm/msm: dpu: Dont set frame_busy_mask for async updates Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 175/405] drm/msm: Fix NULL pointer dereference Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 176/405] irq_work: Do not raise an IPI when queueing work on the local CPU Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 177/405] thunderbolt: Take domain lock in switch sysfs attribute callbacks Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 178/405] s390/qeth: handle error from qeth_update_from_chp_desc() Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 179/405] USB: core: Dont unbind interfaces following device reset failure Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 180/405] x86/irq/64: Limit IST stack overflow check to #DB stack Greg Kroah-Hartman
2019-05-30  3:02 ` [PATCH 5.1 181/405] drm: etnaviv: avoid DMA API warning when importing buffers Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 182/405] dt-bindings: phy-qcom-qmp: Add UFS PHY reset Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 183/405] phy: sun4i-usb: Make sure to disable PHY0 passby for peripheral mode Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 184/405] phy: mapphone-mdm6600: add gpiolib dependency Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 185/405] phy: ti: usb2: fix OMAP_CONTROL_PHY dependency Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 186/405] dpaa2-eth: Fix Rx classification status Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 187/405] i40e: Able to add up to 16 MAC filters on an untrusted VF Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 188/405] i40e: dont allow changes to HW VLAN stripping on active port VLANs Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 189/405] ACPI/IORT: Reject platform device creation on NUMA node mapping failure Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 190/405] arm64: vdso: Fix clock_getres() for CLOCK_REALTIME Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 191/405] RDMA/cxgb4: Fix null pointer dereference on alloc_skb failure Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 192/405] fscrypt: use READ_ONCE() to access ->i_crypt_info Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 193/405] perf/x86/msr: Add Icelake support Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 194/405] perf/x86/intel/rapl: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 195/405] perf/x86/intel/cstate: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 196/405] PM / devfreq: Fix static checker warning in try_then_request_governor Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 197/405] hwmon: (vt1211) Use request_muxed_region for Super-IO accesses Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 198/405] hwmon: (smsc47m1) " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 199/405] hwmon: (smsc47b397) " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 200/405] hwmon: (pc87427) " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 201/405] hwmon: (f71805f) " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 202/405] scsi: libsas: Do discovery on empty PHY to update PHY info Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 203/405] mmc: core: make pwrseq_emmc (partially) support sleepy GPIO controllers Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 204/405] mmc_spi: add a status check for spi_sync_locked Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 205/405] mmc: sdhci-of-esdhc: add erratum eSDHC5 support Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 206/405] mmc: sdhci-of-esdhc: add erratum A-009204 support Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 207/405] mmc: sdhci-of-esdhc: add erratum eSDHC-A001 and A-008358 support Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 208/405] net: hns3: free the pending skb when clean RX ring Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 209/405] drm/amdgpu: fix old fence check in amdgpu_fence_emit Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 210/405] PM / core: Propagate dev->power.wakeup_path when no callbacks Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 211/405] clk: rockchip: Fix video codec clocks on rk3288 Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 212/405] extcon: arizona: Disable mic detect if running when driver is removed Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 213/405] clk: rockchip: Make rkpwm a critical clock on rk3288 Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 214/405] clk: zynqmp: fix check for fractional clock Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 215/405] s390: zcrypt: initialize variables before_use Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 216/405] x86/microcode: Fix the ancient deprecated microcode loading method Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 217/405] drm/amd/display: Initialize stream_update with memset Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 218/405] s390/mm: silence compiler warning when compiling without CONFIG_PGSTE Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 219/405] s390: cio: fix cio_irb declaration Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 220/405] drm/amd/display: use proper formula to calculate bandwidth from timing Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 221/405] selftests: cgroup: fix cleanup path in test_memcg_subtree_control() Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 222/405] net: hns3: fix keep_alive_timer not stop problem Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 223/405] qmi_wwan: Add quirk for Quectel dynamic config Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 224/405] net: hns3: add error handler for initializing command queue Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 225/405] cpufreq: ppc_cbe: fix possible object reference leak Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 226/405] cpufreq/pasemi: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 227/405] cpufreq: pmac32: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 228/405] cpufreq: kirkwood: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 229/405] cpufreq: imx6q: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 230/405] cpufreq: ap806: " Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 231/405] block: sed-opal: fix IOC_OPAL_ENABLE_DISABLE_MBR Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 232/405] habanalabs: prevent device PTE read/write during hard-reset Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 233/405] habanalabs: all FD must be closed before removing device Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 234/405] samples/bpf: fix build with new clang Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 235/405] x86/build: Keep local relocations with ld.lld Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 236/405] spi: Dont call spi_get_gpio_descs() before device name is set Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 237/405] regulator: core: Avoid potential deadlock on regulator_unregister Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 238/405] ASoC: core: remove link components before cleaning up card resources Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 239/405] drm/pl111: fix possible object reference leak Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 240/405] iio: ad_sigma_delta: Properly handle SPI bus locking vs CS assertion Greg Kroah-Hartman
2019-05-30  3:03 ` [PATCH 5.1 241/405] iio: hmc5843: fix potential NULL pointer dereferences Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 242/405] iio: common: ssp_sensors: Initialize calculated_time in ssp_common_process_data Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 243/405] iio: adc: ti-ads7950: Fix improper use of mlock Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 244/405] net: hns3: check resetting status in hns3_get_stats() Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 245/405] net: hns3: add protect when handling mac addr list Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 246/405] selftests/bpf: ksym_search wont check symbols exists Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 247/405] rtlwifi: fix a potential NULL pointer dereference Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 248/405] mwifiex: Fix mem leak in mwifiex_tm_cmd Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 249/405] brcmfmac: fix missing checks for kmemdup Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 250/405] b43: shut up clang -Wuninitialized variable warning Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 251/405] brcmfmac: convert dev_init_lock mutex to completion Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 252/405] brcmfmac: fix WARNING during USB disconnect in case of unempty psq Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 253/405] brcmfmac: fix race during disconnect when USB completion is in progress Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 254/405] brcmfmac: fix Oops when bringing up interface during USB disconnect Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 255/405] rtc: xgene: fix possible race condition Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 256/405] spi: Add missing error handling for CS GPIOs Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 257/405] rtlwifi: fix potential NULL pointer dereference Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 258/405] scsi: ufs: Fix regulator load and icc-level configuration Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 259/405] scsi: ufs: Avoid configuring regulator with undefined voltage range Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 260/405] drm/panel: otm8009a: Add delay at the end of initialization Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 261/405] drm/amd/display: Prevent cursor hotspot overflow for RV overlay planes Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 262/405] arm64: cpu_ops: fix a leaked reference by adding missing of_node_put Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 263/405] locking/static_key: Fix false positive warnings on concurrent dec/inc Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 264/405] wil6210: fix return code of wmi_mgmt_tx and wmi_mgmt_tx_ext Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 265/405] x86/uaccess, ftrace: Fix ftrace_likely_update() vs. SMAP Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 266/405] iwlwifi: mvm: IBSS: use BE FIFO for multicast Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 267/405] x86/uaccess, signal: Fix AC=1 bloat Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 268/405] x86/ia32: Fix ia32_restore_sigcontext() AC leak Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 269/405] x86/uaccess: Fix up the fixup Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 270/405] chardev: add additional check for minor range overlap Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 271/405] RDMA/hns: Fix bad endianess of port_pd variable Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 272/405] sh: sh7786: Add explicit I/O cast to sh7786_mm_sel() Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 273/405] HID: core: move Usage Page concatenation to Main item Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 274/405] ASoC: eukrea-tlv320: fix a leaked reference by adding missing of_node_put Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 275/405] ASoC: fsl_utils: " Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 276/405] ASoC: wcd9335: " Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 277/405] cxgb3/l2t: Fix undefined behaviour Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 278/405] clk: renesas: rcar-gen3: Correct parent clock of SYS-DMAC Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 279/405] block: avoid to break XEN by multi-page bvec Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 280/405] block: pass page to xen_biovec_phys_mergeable Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 281/405] clk: renesas: rcar-gen3: Correct parent clock of Audio-DMAC Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 282/405] HID: logitech-hidpp: change low battery level threshold from 31 to 30 percent Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 283/405] spi: tegra114: reset controller on probe Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 284/405] habanalabs: prevent CPU soft lockup on Palladium Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 285/405] kobject: Dont trigger kobject_uevent(KOBJ_REMOVE) twice Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 286/405] media: video-mux: fix null pointer dereferences Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 287/405] media: wl128x: prevent two potential buffer overflows Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 288/405] media: gspca: Kill URBs on USB device disconnect Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 289/405] efifb: Omit memory map check on legacy boot Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 290/405] media: mtk-vcodec: fix access to incorrect planes member Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 291/405] thunderbolt: property: Fix a missing check of kzalloc Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 292/405] thunderbolt: Fix to check the return value of kmemdup Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 293/405] drm: rcar-du: lvds: Set LVEN and LVRES bits together on D3 Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 294/405] drm: rcar-du: lvds: Fix post-DLL divider calculation Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 295/405] timekeeping: Force upper bound for setting CLOCK_REALTIME Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 296/405] IB/mlx5: Compare only index part of a memory window rkey Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 297/405] scsi: qedf: Add missing return in qedf_post_io_req() in the fcport offload check Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 298/405] misc: fastrpc: consider address offset before sending to DSP Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 299/405] misc: fastrpc: make sure memory read and writes are visible Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 300/405] misc: fastrpc: Fix a possible double free Greg Kroah-Hartman
2019-05-30  3:04 ` [PATCH 5.1 301/405] virtio_console: initialize vtermno value for ports Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 302/405] tty: ipwireless: fix missing checks for ioremap Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 303/405] staging: mt7621-mmc: Initialize completions a single time during probe Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 304/405] overflow: Fix -Wtype-limits compilation warnings Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 305/405] x86/mce: Fix machine_check_poll() tests for error types Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 306/405] rcutorture: Fix cleanup path for invalid torture_type strings Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 307/405] x86/mce: Handle varying MCA bank counts Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 308/405] rcuperf: Fix cleanup path for invalid perf_type strings Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 309/405] rcu: Do a single rhp->func read in rcu_head_after_call_rcu() Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 310/405] x86/platform/uv: Fix missing checks of kcalloc() return values Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 311/405] RDMA/rxe: Fix slab-out-bounds access which lead to kernel crash later Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 312/405] spi: stm32-qspi: add spi_master_put in release function Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 313/405] usb: core: Add PM runtime calls to usb_hcd_platform_shutdown Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 314/405] ice: Fix for adaptive interrupt moderation Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 315/405] scsi: qla4xxx: avoid freeing unallocated dma memory Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 316/405] scsi: lpfc: avoid uninitialized variable warning Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 317/405] media: vicodec: bugfix - call v4l2_m2m_buf_copy_metadata also if decoding fails Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 318/405] ice: Prevent unintended multiple chain resets Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 319/405] selinux: avoid uninitialized variable warning Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 320/405] batman-adv: allow updating DAT entry timeouts on incoming ARP Replies Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 321/405] dmaengine: tegra210-adma: use devm_clk_*() helpers Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 322/405] x86/CPU/hygon: Fix phys_proc_id calculation logic for multi-die processors Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 323/405] net/mlx5e: Fix compilation warning in en_tc.c Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 324/405] staging: mt7621-mmc: Check for nonzero number of scatterlist entries Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 325/405] hwrng: omap - Set default quality Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 326/405] thunderbolt: Fix to check return value of ida_simple_get Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 327/405] thunderbolt: Fix to check for kmemdup failure Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 328/405] spi: export tracepoint symbols to modules Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 329/405] regulator: add regulator_get_linear_step() stub helper Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 330/405] drm/amd/display: fix releasing planes when exiting odm Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 331/405] drm/amd/display: Link train only when link is DP and backend is enabled Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 332/405] drm/amd/display: Update ABM crtc state on non-modeset Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 333/405] drm/amd/display: Reset alpha state for planes to the correct values Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 334/405] thunderbolt: property: Fix a NULL pointer dereference Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 335/405] media: v4l2-fwnode: The first default data lane is 0 on C-PHY Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 336/405] media: ov7670: restore default settings after power-up Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 337/405] media: staging/intel-ipu3: mark PM function as __maybe_unused Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 338/405] media: vicodec: reset last_src/dst_buf based on the IS_OUTPUT Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 339/405] ice: Fix issue with VF reset and multiple VFs support on PFs Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 340/405] e1000e: Disable runtime PM on CNP+ Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 341/405] tinydrm/mipi-dbi: Use dma-safe buffers for all SPI transfers Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 342/405] igb: Exclude device from suspend direct complete optimization Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 343/405] media: si2165: fix a missing check of return value Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 344/405] media: dvbsky: Avoid leaking dvb frontend Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 345/405] media: m88ds3103: serialize reset messages in m88ds3103_set_frontend Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 346/405] drm/amd/display: add pipe lock during stream update Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 347/405] media: staging: davinci_vpfe: disallow building with COMPILE_TEST Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 348/405] drm/amd/display: Fix Divide by 0 in memory calculations Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 349/405] drm/amd/display: Re-add custom degamma support Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 350/405] drm/amd/display: half bandwidth for YCbCr420 during validation Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 351/405] drm/amd/display: Set stream->mode_changed when connectors change Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 352/405] scsi: ufs: fix a missing check of devm_reset_control_get Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 353/405] media: vimc: stream: fix thread state before sleep Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 354/405] media: gspca: do not resubmit URBs when streaming has stopped Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 355/405] media: vicodec: avoid clang frame size warning Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 356/405] media: go7007: avoid clang frame overflow warning with KASAN Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 357/405] media: mtk-vcodec: fix access to vb2_v4l2_buffer struct Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 358/405] media: imx: vdic: Restore default case to prepare_vdi_in_buffers() Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 359/405] media: vimc: zero the media_device on probe Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 360/405] media: vim2m: replace devm_kzalloc by kzalloc Greg Kroah-Hartman
2019-05-30  3:05 ` [PATCH 5.1 361/405] media: cedrus: Add a quirk for not setting DMA offset Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 362/405] scsi: lpfc: Fix FDMI manufacturer attribute value Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 363/405] scsi: lpfc: Fix fc4type information for FDMI Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 364/405] scsi: lpfc: Fix io lost on host resets Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 365/405] media: saa7146: avoid high stack usage with clang Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 366/405] scsi: lpfc: Fix SLI3 commands being issued on SLI4 devices Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 367/405] scsi: lpfc: Fix mailbox hang on adapter init Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 368/405] scsi: lpfc: Resolve inconsistent check of hdwq in lpfc_scsi_cmd_iocb_cmpl Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 369/405] scsi: lpfc: Resolve irq-unsafe lockdep heirarchy warning in lpfc_io_free Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 370/405] scsi: lpfc: Fix use-after-free mailbox cmd completion Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 371/405] audit: fix a memleak caused by auditing load module Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 372/405] spi : spi-topcliff-pch: Fix to handle empty DMA buffers Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 373/405] drm: writeback: Fix leak of writeback job Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 374/405] drm/omap: dsi: Fix PM for display blank with paired dss_pll calls Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 375/405] drm/omap: Notify all devices in the pipeline of output disconnection Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 376/405] spi: rspi: Fix sequencer reset during initialization Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 377/405] regulator: wm831x ldo: Fix notifier mutex lock warning Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 378/405] regulator: wm831x isink: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 379/405] regulator: ltc3676: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 380/405] regulator: ltc3589: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 381/405] regulator: pv88060: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 382/405] spi: imx: stop buffer overflow in RX FIFO flush Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 383/405] regulator: lp8755: Fix notifier mutex lock warning Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 384/405] regulator: da9211: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 385/405] regulator: da9063: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 386/405] regulator: pv88080: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 387/405] regulator: wm831x: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 388/405] regulator: pv88090: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 389/405] regulator: da9062: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 390/405] regulator: da9055: " Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 391/405] spi: Fix zero length xfer bug Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 392/405] ASoC: davinci-mcasp: Fix clang warning without CONFIG_PM Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 393/405] ASoC: ti: fix davinci_mcasp_probe dependencies Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 394/405] drm/v3d: Handle errors from IRQ setup Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 395/405] drm/amd/display: Fix exception from AUX acquire failure Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 396/405] drm/amd/display: Reset planes that were disabled in init_pipes Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 397/405] drm/drv: Hold ref on parent device during drm_device lifetime Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 398/405] drm: Wake up next in drm_read() chain if we are forced to putback the event Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 399/405] drm/sun4i: dsi: Change the start delay calculation Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 400/405] drm/sun4i: dsi: Restrict DSI tcon clock divider Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 401/405] vfio-ccw: Prevent quiesce function going into an infinite loop Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 402/405] extcon: axp288: Add a depends on ACPI to the Kconfig entry Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 403/405] ice: Put __ICE_PREPARED_FOR_RESET check in ice_prepare_for_reset Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 404/405] drm/sun4i: dsi: Enforce boundaries on the start delay Greg Kroah-Hartman
2019-05-30  3:06 ` [PATCH 5.1 405/405] NFS: Fix a double unlock from nfs_match,get_client Greg Kroah-Hartman
2019-05-30  7:09 ` [PATCH 5.1 000/405] 5.1.6-stable review kernelci.org bot
2019-05-30 13:23 ` Jon Hunter
2019-05-30 13:32   ` Greg Kroah-Hartman
2019-05-30 18:35 ` Guenter Roeck
2019-05-30 20:18   ` Greg Kroah-Hartman
2019-05-30 19:30 ` shuah
2019-05-30 20:18   ` Greg Kroah-Hartman
2019-05-31 14:16 ` Dan Rue

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=20190530030544.028497142@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=bart.vanassche@wdc.com \
    --cc=dongli.zhang@oracle.com \
    --cc=hare@suse.com \
    --cc=hch@lst.de \
    --cc=james.smart@broadcom.com \
    --cc=jejb@linux.vnet.ibm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=ming.lei@redhat.com \
    --cc=sashal@kernel.org \
    --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 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).