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, Wang Shilong <wshilong@ddn.com>,
	Chao Yu <yuchao0@huawei.com>, Jaegeuk Kim <jaegeuk@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 167/422] f2fs: fix setattr project check upon fssetxattr ioctl
Date: Tue, 19 Nov 2019 06:16:04 +0100	[thread overview]
Message-ID: <20191119051409.248417021@linuxfoundation.org> (raw)
In-Reply-To: <20191119051400.261610025@linuxfoundation.org>

From: Wang Shilong <wangshilong1991@gmail.com>

[ Upstream commit c8e927579e00a182eda07e4c45df9c8c699c8ded ]

Currently, project quota could be changed by fssetxattr
ioctl, and existed permission check inode_owner_or_capable()
is obviously not enough, just think that common users could
change project id of file, that could make users to
break project quota easily.

This patch try to follow same regular of xfs project
quota:

"Project Quota ID state is only allowed to change from
within the init namespace. Enforce that restriction only
if we are trying to change the quota ID state.
Everything else is allowed in user namespaces."

Besides that, check and set project id'state should
be an atomic operation, protect whole operation with
inode lock.

Signed-off-by: Wang Shilong <wshilong@ddn.com>
Reviewed-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/f2fs/file.c | 60 +++++++++++++++++++++++++++++++-------------------
 1 file changed, 37 insertions(+), 23 deletions(-)

diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index 6972c6d7c3893..c7ea122997695 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -2618,34 +2618,26 @@ static int f2fs_ioc_setproject(struct file *filp, __u32 projid)
 	if (projid_eq(kprojid, F2FS_I(inode)->i_projid))
 		return 0;
 
-	err = mnt_want_write_file(filp);
-	if (err)
-		return err;
-
 	err = -EPERM;
-	inode_lock(inode);
-
 	/* Is it quota file? Do not allow user to mess with it */
 	if (IS_NOQUOTA(inode))
-		goto out_unlock;
+		return err;
 
 	ipage = f2fs_get_node_page(sbi, inode->i_ino);
-	if (IS_ERR(ipage)) {
-		err = PTR_ERR(ipage);
-		goto out_unlock;
-	}
+	if (IS_ERR(ipage))
+		return PTR_ERR(ipage);
 
 	if (!F2FS_FITS_IN_INODE(F2FS_INODE(ipage), fi->i_extra_isize,
 								i_projid)) {
 		err = -EOVERFLOW;
 		f2fs_put_page(ipage, 1);
-		goto out_unlock;
+		return err;
 	}
 	f2fs_put_page(ipage, 1);
 
 	err = dquot_initialize(inode);
 	if (err)
-		goto out_unlock;
+		return err;
 
 	transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
 	if (!IS_ERR(transfer_to[PRJQUOTA])) {
@@ -2659,9 +2651,6 @@ static int f2fs_ioc_setproject(struct file *filp, __u32 projid)
 	inode->i_ctime = current_time(inode);
 out_dirty:
 	f2fs_mark_inode_dirty_sync(inode, true);
-out_unlock:
-	inode_unlock(inode);
-	mnt_drop_write_file(filp);
 	return err;
 }
 #else
@@ -2737,6 +2726,30 @@ static int f2fs_ioc_fsgetxattr(struct file *filp, unsigned long arg)
 	return 0;
 }
 
+static int f2fs_ioctl_check_project(struct inode *inode, struct fsxattr *fa)
+{
+	/*
+	 * Project Quota ID state is only allowed to change from within the init
+	 * namespace. Enforce that restriction only if we are trying to change
+	 * the quota ID state. Everything else is allowed in user namespaces.
+	 */
+	if (current_user_ns() == &init_user_ns)
+		return 0;
+
+	if (__kprojid_val(F2FS_I(inode)->i_projid) != fa->fsx_projid)
+		return -EINVAL;
+
+	if (F2FS_I(inode)->i_flags & F2FS_PROJINHERIT_FL) {
+		if (!(fa->fsx_xflags & FS_XFLAG_PROJINHERIT))
+			return -EINVAL;
+	} else {
+		if (fa->fsx_xflags & FS_XFLAG_PROJINHERIT)
+			return -EINVAL;
+	}
+
+	return 0;
+}
+
 static int f2fs_ioc_fssetxattr(struct file *filp, unsigned long arg)
 {
 	struct inode *inode = file_inode(filp);
@@ -2764,19 +2777,20 @@ static int f2fs_ioc_fssetxattr(struct file *filp, unsigned long arg)
 		return err;
 
 	inode_lock(inode);
+	err = f2fs_ioctl_check_project(inode, &fa);
+	if (err)
+		goto out;
 	flags = (fi->i_flags & ~F2FS_FL_XFLAG_VISIBLE) |
 				(flags & F2FS_FL_XFLAG_VISIBLE);
 	err = __f2fs_ioc_setflags(inode, flags);
-	inode_unlock(inode);
-	mnt_drop_write_file(filp);
 	if (err)
-		return err;
+		goto out;
 
 	err = f2fs_ioc_setproject(filp, fa.fsx_projid);
-	if (err)
-		return err;
-
-	return 0;
+out:
+	inode_unlock(inode);
+	mnt_drop_write_file(filp);
+	return err;
 }
 
 int f2fs_pin_file_control(struct inode *inode, bool inc)
-- 
2.20.1




  parent reply	other threads:[~2019-11-19  5:31 UTC|newest]

Thread overview: 478+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-19  5:13 [PATCH 4.19 000/422] 4.19.85-stable review Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 001/422] KVM: x86: introduce is_pae_paging Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 002/422] MIPS: BCM63XX: fix switch core reset on BCM6368 Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 003/422] scsi: core: Handle drivers which set sg_tablesize to zero Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 004/422] ax88172a: fix information leak on short answers Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 005/422] ipmr: Fix skb headroom in ipmr_get_route() Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 006/422] net: gemini: add missed free_netdev Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 007/422] net: usb: qmi_wwan: add support for Foxconn T77W968 LTE modules Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 008/422] slip: Fix memory leak in slip_open error path Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 009/422] devlink: disallow reload operation during device cleanup Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 010/422] ALSA: usb-audio: Fix missing error check at mixer resolution test Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 011/422] ALSA: usb-audio: not submit urb for stopped endpoint Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 012/422] ALSA: usb-audio: Fix incorrect NULL check in create_yamaha_midi_quirk() Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 013/422] ALSA: usb-audio: Fix incorrect size check for processing/extension units Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 014/422] Btrfs: fix log context list corruption after rename exchange operation Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 015/422] Input: ff-memless - kill timer in destroy() Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 016/422] Input: synaptics-rmi4 - fix video buffer size Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 017/422] Input: synaptics-rmi4 - disable the relative position IRQ in the F12 driver Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 018/422] Input: synaptics-rmi4 - do not consume more data than we have (F11, F12) Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 019/422] Input: synaptics-rmi4 - clear IRQ enables for F54 Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 020/422] Input: synaptics-rmi4 - destroy F54 poller workqueue when removing Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 021/422] IB/hfi1: Ensure full Gen3 speed in a Gen4 system Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 022/422] IB/hfi1: Use a common pad buffer for 9B and 16B packets Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 023/422] i2c: acpi: Force bus speed to 400KHz if a Silead touchscreen is present Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 024/422] x86/quirks: Disable HPET on Intel Coffe Lake platforms Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 025/422] ecryptfs_lookup_interpose(): lower_dentry->d_inode is not stable Greg Kroah-Hartman
2019-11-19 22:00   ` Pavel Machek
2019-11-19  5:13 ` [PATCH 4.19 026/422] ecryptfs_lookup_interpose(): lower_dentry->d_parent is not stable either Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 027/422] net: ethernet: dwmac-sun8i: Use the correct function in exit path Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 028/422] iommu/vt-d: Fix QI_DEV_IOTLB_PFSID and QI_DEV_EIOTLB_PFSID macros Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 029/422] mm: mempolicy: fix the wrong return value and potential pages leak of mbind Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 030/422] mm: memcg: switch to css_tryget() in get_mem_cgroup_from_mm() Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 031/422] mm: hugetlb: switch to css_tryget() in hugetlb_cgroup_charge_cgroup() Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 032/422] mmc: sdhci-of-at91: fix quirk2 overwrite Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 033/422] iio: adc: max9611: explicitly cast gain_selectors Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 034/422] tee: optee: take DT status property into account Greg Kroah-Hartman
2019-11-20  2:18   ` Nobuhiro Iwamatsu
2019-11-21  6:54     ` Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 035/422] ath10k: fix kernel panic by moving pci flush after napi_disable Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 036/422] iio: dac: mcp4922: fix error handling in mcp4922_write_raw Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 037/422] clk: sunxi-ng: h6: fix PWM gate/reset offset Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 038/422] soundwire: Initialize completion for defer messages Greg Kroah-Hartman
2019-11-20 21:54   ` Pavel Machek
2019-11-20 22:52     ` Pierre-Louis Bossart
2019-11-19  5:13 ` [PATCH 4.19 039/422] soundwire: intel: Fix uninitialized adev deref Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 040/422] arm64: dts: allwinner: a64: Orange Pi Win: Fix SD card node Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 041/422] arm64: dts: allwinner: a64: Olinuxino: fix DRAM voltage Greg Kroah-Hartman
2019-11-19  5:13 ` [PATCH 4.19 042/422] arm64: dts: allwinner: a64: NanoPi-A64: Fix DCDC1 voltage Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 043/422] ALSA: pcm: signedness bug in snd_pcm_plug_alloc() Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 044/422] soc/tegra: pmc: Fix pad voltage configuration for Tegra186 Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 045/422] arm64: dts: tegra210-p2180: Correct sdmmc4 vqmmc-supply Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 046/422] y2038: make do_gettimeofday() and get_seconds() inline Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 047/422] ARM: dts: rcar: Correct SATA device sizes to 2 MiB Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 048/422] ARM: dts: at91/trivial: Fix USART1 definition for at91sam9g45 Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 049/422] rtc: sysfs: fix NULL check in rtc_add_groups() Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 050/422] rtc: rv8803: fix the rv8803 id in the OF table Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 051/422] remoteproc/davinci: Use %zx for formating size_t Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 052/422] extcon: cht-wc: Return from default case to avoid warnings Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 053/422] cfg80211: Avoid regulatory restore when COUNTRY_IE_IGNORE is set Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 054/422] ALSA: seq: Do error checks at creating system ports Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 055/422] ath10k: skip resetting rx filter for WCN3990 Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 056/422] ath9k: fix tx99 with monitor mode interface Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 057/422] wil6210: drop Rx multicast packets that are looped-back to STA Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 058/422] wil6210: set edma variables only for Talyn-MB devices Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 059/422] wil6210: prevent usage of tx ring 0 for eDMA Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 060/422] wil6210: fix invalid memory access for rx_buff_mgmt debugfs Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 061/422] ath10k: limit available channels via DT ieee80211-freq-limit Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 062/422] ice: Update request resource command to latest specification Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 063/422] ice: Prevent control queue operations during reset Greg Kroah-Hartman
2019-11-20 21:48   ` Pavel Machek
2019-11-21 23:52     ` Jeff Kirsher
2019-11-19  5:14 ` [PATCH 4.19 064/422] gfs2: Dont set GFS2_RDF_UPTODATE when the lvb is updated Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 065/422] ice: Fix and update driver version string Greg Kroah-Hartman
2019-11-20 21:59   ` Pavel Machek
2019-11-20 22:02     ` Jeff Kirsher
2019-11-21  6:42     ` Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 066/422] ASoC: dapm: Dont fail creating new DAPM control on NULL pinctrl Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 067/422] ASoC: dpcm: Properly initialise hw->rate_max Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 068/422] ASoC: meson: axg-fifo: report interrupt request failure Greg Kroah-Hartman
2019-11-21 10:14   ` Pavel Machek
2019-11-19  5:14 ` [PATCH 4.19 069/422] ASoC: AMD: Change MCLK to 48Mhz Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 070/422] pinctrl: ingenic: Probe driver at subsys_initcall Greg Kroah-Hartman
2019-11-21 10:17   ` Pavel Machek
2019-11-22 18:25     ` Paul Cercueil
2019-11-19  5:14 ` [PATCH 4.19 071/422] MIPS: BCM47XX: Enable USB power on Netgear WNDR3400v3 Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 072/422] ARM: dts: exynos: Use i2c-gpio for HDMI-DDC on Arndale Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 073/422] ARM: dts: exynos: Fix HDMI-HPD line handling " Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 074/422] ARM: dts: exynos: Fix sound in Snow-rev5 Chromebook Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 075/422] liquidio: fix race condition in instruction completion processing Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 076/422] arm64: dts: stratix10: i2c clock running out of spec Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 077/422] ARM: dts: exynos: Fix regulators configuration on Peach Pi/Pit Chromebooks Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 078/422] i40evf: Validate the number of queues a PF sends Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 079/422] i40e: use correct length for strncpy Greg Kroah-Hartman
2019-11-21 10:35   ` Pavel Machek
2019-11-21 15:34     ` Williams, Mitch A
2019-11-21 23:53     ` Jeff Kirsher
2019-11-19  5:14 ` [PATCH 4.19 080/422] i40evf: set IFF_UNICAST_FLT flag for the VF Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 081/422] i40e: Check and correct speed values for link on open Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 082/422] i40evf: Dont enable vlan stripping when rx offload is turned on Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 083/422] i40e: hold the rtnl lock on clearing interrupt scheme Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 084/422] i40evf: cancel workqueue sync for adminq when a VF is removed Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 085/422] i40e: Prevent deleting MAC address from VF when set by PF Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 086/422] IB/rxe: avoid back-to-back retries Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 087/422] IB/rxe: fixes for rdma read retry Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 088/422] iwlwifi: drop packets with bad status in CD Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 089/422] iwlwifi: dont WARN on trying to dump dead firmware Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 090/422] iwlwifi: mvm: avoid sending too many BARs Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 091/422] media: vicodec: fix out-of-range values when decoding Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 092/422] media: i2c: Fix pm_runtime_get_if_in_use() usage in sensor drivers Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 093/422] media: ov772x: Disable clk on error path Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 094/422] ARM: dts: pxa: fix the rtc controller Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 095/422] ARM: dts: pxa: fix power i2c base address Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 096/422] rtl8187: Fix warning generated when strncpy() destination length matches the sixe argument Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 097/422] mwifiex: do no submit URB in suspended state Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 098/422] mwifex: free rx_cmd skb " Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 099/422] brcmfmac: fix wrong strnchr usage Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 100/422] mt76: Fix comparisons with invalid hardware key index Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 101/422] soc: imx: gpc: fix PDN delay Greg Kroah-Hartman
2019-11-19  5:14 ` [PATCH 4.19 102/422] ASoC: rsnd: ssi: Fix issue in dma data address assignment Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 103/422] net: hns3: Fix for multicast failure Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 104/422] net: hns3: Fix error of checking used vlan id Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 105/422] net: hns3: Fix for loopback selftest failed problem Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 106/422] net: hns3: Change the dst mac addr of loopback packet Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 107/422] net/mlx5: Fix atomic_mode enum values Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 108/422] net: phy: mscc: read vsc8531,vddmac as an u32 Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 109/422] net: phy: mscc: read vsc8531, edge-slowdown " Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 110/422] ARM: dts: meson8: fix the clock controller register size Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 111/422] ARM: dts: meson8b: " Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 112/422] mtd: rawnand: marvell: use regmap_update_bits() for syscon access Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 113/422] mtd: rawnand: fsl_ifc: check result of SRAM initialization Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 114/422] mtd: rawnand: fsl_ifc: fixup SRAM init for newer ctrl versions Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 115/422] mtd: rawnand: qcom: dont include dma-direct.h Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 116/422] IB/mlx5: Change TX affinity assignment in RoCE LAG mode Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 117/422] qxl: fix null-pointer crash during suspend Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 118/422] mac80211: fix saving a few HE values Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 119/422] cfg80211: validate wmm rule when setting Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 120/422] f2fs: avoid wrong decrypted data from disk Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 121/422] net: lan78xx: Bail out if lan78xx_get_endpoints fails Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 122/422] rtnetlink: move type calculation out of loop Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 123/422] ASoC: sgtl5000: avoid division by zero if lo_vag is zero Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 124/422] ath10k: avoid possible memory access violation Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 125/422] ARM: dts: exynos: Disable pull control for S5M8767 PMIC Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 126/422] ath10k: wmi: disable softirqs while calling ieee80211_rx Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 127/422] i2c: mediatek: Use DMA safe buffers for i2c transactions Greg Kroah-Hartman
2019-11-20  1:44   ` Nobuhiro Iwamatsu
2019-11-21  6:53     ` Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 128/422] IB/mlx5: Dont hold spin lock while checking device state Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 129/422] IB/ipoib: Ensure that MTU isnt less than minimum permitted Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 130/422] RDMA/core: Rate limit MAD error messages Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 131/422] RDMA/core: Follow correct unregister order between sysfs and cgroup Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 132/422] mips: txx9: fix iounmap related issue Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 133/422] udf: Fix crash during mount Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 134/422] ASoC: dapm: Avoid uninitialised variable warning Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 135/422] ASoC: Intel: hdac_hdmi: Limit sampling rates at dai creation Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 136/422] ata: Disable AHCI ALPM feature for Ampere Computing eMAG SATA Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 137/422] of: make PowerMac cache node search conditional on CONFIG_PPC_PMAC Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 138/422] ARM: dts: omap3-gta04: give spi_lcd node a label so that we can overwrite in other DTS files Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 139/422] ARM: dts: omap3-gta04: fixes for tvout / venc Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 140/422] ARM: dts: omap3-gta04: tvout: enable as display1 alias Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 141/422] ARM: dts: omap3-gta04: fix touchscreen tsc2007 Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 142/422] ARM: dts: omap3-gta04: make NAND partitions compatible with recent U-Boot Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 143/422] ARM: dts: omap3-gta04: keep vpll2 always on Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 144/422] f2fs: submit bio after shutdown Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 145/422] failover: Fix error return code in net_failover_create Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 146/422] sched/debug: Explicitly cast sched_feat() to bool Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 147/422] sched/debug: Use symbolic names for task state constants Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 148/422] firmware: arm_scmi: use strlcpy to ensure NULL-terminated strings Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 149/422] arm64: dts: rockchip: Fix VCC5V0_HOST_EN on rk3399-sapphire Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 150/422] tty/serial: atmel: Change the driver to work under at91-usart MFD Greg Kroah-Hartman
2019-11-19 12:01   ` Richard Genoud
2019-11-19 13:17     ` Richard Genoud
2019-11-19 15:45       ` Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 151/422] ARM: dts: exynos: Disable pull control for PMIC IRQ line on Artik5 board Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 152/422] usb: mtu3: disable vbus rise/fall interrupts of ltssm Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 153/422] dmaengine: dma-jz4780: Dont depend on MACH_JZ4780 Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 154/422] dmaengine: dma-jz4780: Further residue status fix Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 155/422] EDAC, sb_edac: Return early on ADDRV bit and address type test Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 156/422] rtc: mt6397: fix possible race condition Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 157/422] rtc: pl030: " Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 158/422] ath9k: add back support for using active monitor interfaces for tx99 Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 159/422] dmaengine: at_xdmac: remove a stray bottom half unlock Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 160/422] RDMA/hns: Fix an error code in hns_roce_v2_init_eq_table() Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 161/422] IB/hfi1: Missing return value in error path for user sdma Greg Kroah-Hartman
2019-11-19  5:15 ` [PATCH 4.19 162/422] signal: Always ignore SIGKILL and SIGSTOP sent to the global init Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 163/422] signal: Properly deliver SIGILL from uprobes Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 164/422] signal: Properly deliver SIGSEGV from x86 uprobes Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 165/422] f2fs: fix memory leak of write_io in fill_super() Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 166/422] f2fs: fix memory leak of percpu counter " Greg Kroah-Hartman
2019-11-21 13:39   ` Pavel Machek
2019-11-19  5:16 ` Greg Kroah-Hartman [this message]
2019-11-19  5:16 ` [PATCH 4.19 168/422] scsi: qla2xxx: Use correct qpair for ABTS/CMD Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 169/422] scsi: qla2xxx: Fix iIDMA error Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 170/422] scsi: qla2xxx: Defer chip reset until target mode is enabled Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 171/422] scsi: qla2xxx: Terminate Plogi/PRLI if WWN is 0 Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 172/422] scsi: qla2xxx: Fix deadlock between ATIO and HW lock Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 173/422] scsi: qla2xxx: Increase abort timeout value Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 174/422] scsi: qla2xxx: Check for Register disconnect Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 175/422] scsi: qla2xxx: Fix port speed display on chip reset Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 176/422] scsi: qla2xxx: Fix dropped srb resource Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 177/422] scsi: qla2xxx: Fix duplicate switchs Nport ID entries Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 178/422] scsi: lpfc: Fix GFT_ID and PRLI logic for RSCN Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 179/422] scsi: lpfc: Correct invalid EQ doorbell write on if_type=6 Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 180/422] scsi: lpfc: Fix errors in log messages Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 181/422] scsi: sym53c8xx: fix NULL pointer dereference panic in sym_int_sir() Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 182/422] ARM: imx6: register pm_power_off handler if "fsl,pmic-stby-poweroff" is set Greg Kroah-Hartman
2019-11-19 20:19   ` Pavel Machek
2019-11-19  5:16 ` [PATCH 4.19 183/422] scsi: pm80xx: Corrected dma_unmap_sg() parameter Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 184/422] scsi: pm80xx: Fixed system hang issue during kexec boot Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 185/422] kprobes: Dont call BUG_ON() if there is a kprobe in use on free list Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 186/422] net: aquantia: fix hw_atl_utils_fw_upload_dwords Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 187/422] Drivers: hv: vmbus: Fix synic per-cpu context initialization Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 188/422] nvmem: core: return error code instead of NULL from nvmem_device_get Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 189/422] media: dt-bindings: adv748x: Fix decimal unit addresses Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 190/422] ALSA: hda: Fix implicit definition of pci_iomap() on SH Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 191/422] media: fix: media: pci: meye: validate offset to avoid arbitrary access Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 192/422] media: dvb: fix compat ioctl translation Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 193/422] net: bcmgenet: Fix speed selection for reverse MII Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 194/422] arm64: dts: meson: libretech: update board model Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 195/422] arm64: dts: meson-axg: use the proper compatible for ethmac Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 196/422] ALSA: intel8x0m: Register irq handler after register initializations Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 197/422] arm64: dts: renesas: salvator-common: adv748x: Override secondary addresses Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 198/422] arm64: dts: renesas: r8a77965: Attach the SYS-DMAC to the IPMMU Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 199/422] arm64: dts: renesas: r8a77965: Fix HS-USB compatible Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 200/422] arm64: dts: renesas: r8a77965: Fix clock/reset for usb2_phy1 Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 201/422] pinctrl: at91-pio4: fix has_config check in atmel_pctl_dt_subnode_to_map() Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 202/422] llc: avoid blocking in llc_sap_close() Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 203/422] ARM: dts: qcom: ipq4019: fix cpu0s qcom,saw2 reg value Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 204/422] soc: qcom: geni: Dont ignore clk_round_rate() errors in geni_se_clk_tbl_get() Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 205/422] soc: qcom: geni: geni_se_clk_freq_match() should always accept multiples Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 206/422] soc: qcom: wcnss_ctrl: Avoid string overflow Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 207/422] soc: qcom: apr: " Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 208/422] drivers: qcom: rpmh-rsc: clear wait_for_compl after use Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 209/422] arm64: dts: broadcom: Fix I2C and SPI bus warnings Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 210/422] ARM: dts: bcm: Fix " Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 211/422] ARM: dts: aspeed: Fix I2C " Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 212/422] powerpc/vdso: Correct call frame information Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 213/422] ARM: dts: socfpga: Fix I2C bus unit-address error Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 214/422] ARM: dts: sunxi: Fix I2C bus warnings Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 215/422] pinctrl: at91: dont use the same irqchip with multiple gpiochips Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 216/422] ARM: dts: sun9i: Fix I2C bus warnings Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 217/422] android: binder: no outgoing transaction when thread todo has transaction Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 218/422] cxgb4: Fix endianness issue in t4_fwcache() Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 219/422] arm64: fix for bad_mode() handler to always result in panic Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 220/422] block, bfq: inject other-queue I/O into seeky idle queues on NCQ flash Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 221/422] blok, bfq: do not plug I/O if all queues are weight-raised Greg Kroah-Hartman
2019-11-19  5:16 ` [PATCH 4.19 222/422] arm64: dts: meson: Fix erroneous SPI bus warnings Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 223/422] power: supply: ab8500_fg: silence uninitialized variable warnings Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 224/422] power: reset: at91-poweroff: do not procede if at91_shdwc is allocated Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 225/422] power: supply: max8998-charger: Fix platform data retrieval Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 226/422] component: fix loop condition to call unbind() if bind() fails Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 227/422] kernfs: Fix range checks in kernfs_get_target_path Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 228/422] ip_gre: fix parsing gre header in ipgre_err Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 229/422] scsi: ufshcd: Fix NULL pointer dereference for in ufshcd_init Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 230/422] ARM: dts: rockchip: Fix erroneous SPI bus dtc warnings on rk3036 Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 231/422] arm64: dts: rockchip: Fix I2C bus unit-address error on rk3399-puma-haikou Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 232/422] ACPI / LPSS: Exclude I2C busses shared with PUNIT from pmc_atom_d3_mask Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 233/422] netfilter: nf_tables: avoid BUG_ON usage Greg Kroah-Hartman
2019-11-21 20:16   ` Pavel Machek
2019-11-21 20:25     ` Greg Kroah-Hartman
2019-11-21 20:35     ` Florian Westphal
2019-11-19  5:17 ` [PATCH 4.19 234/422] ath9k: Fix a locking bug in ath9k_add_interface() Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 235/422] s390/qeth: uninstall IRQ handler on device removal Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 236/422] s390/qeth: invoke softirqs after napi_schedule() Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 237/422] media: vsp1: Fix vsp1_regs.h license header Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 238/422] media: vsp1: Fix YCbCr planar formats pitch calculation Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 239/422] media: ov2680: dont register the v4l2 subdevice before checking chip ID Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 240/422] PCI/ACPI: Correct error message for ASPM disabling Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 241/422] net: socionext: Fix two sleep-in-atomic-context bugs in ave_rxfifo_reset() Greg Kroah-Hartman
2019-11-21 20:21   ` Pavel Machek
2019-11-21 20:26     ` Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 242/422] PCI: mediatek: Fix unchecked return value Greg Kroah-Hartman
2019-11-19 21:58   ` Pavel Machek
2019-11-19  5:17 ` [PATCH 4.19 243/422] ARM: dts: xilinx: Fix I2C and SPI bus warnings Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 244/422] serial: uartps: Fix suspend functionality Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 245/422] serial: samsung: Enable baud clock for UART reset procedure in resume Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 246/422] serial: mxs-auart: Fix potential infinite loop Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 247/422] tty: serial: qcom_geni_serial: Fix serial when not used as console Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 248/422] arm64: dts: ti: k3-am65: Change #address-cells and #size-cells of interconnect to 2 Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 249/422] samples/bpf: fix a compilation failure Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 250/422] spi/bcm63xx-hsspi: keep pll clk enabled Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 251/422] spi: mediatek: Dont modify spi_transfer when transfer Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 252/422] ASoC: rt5682: Fix the boost volume at the begining of playback Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 253/422] ipmi_si_pci: fix NULL device in ipmi_si error message Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 254/422] ipmi_si: fix potential integer overflow on large shift Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 255/422] ipmi:dmi: Ignore IPMI SMBIOS entries with a zero base address Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 256/422] ipmi: fix return value of ipmi_set_my_LUN Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 257/422] net: hns3: fix return type of ndo_start_xmit function Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 258/422] net: cavium: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 259/422] net: ibm: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 260/422] powerpc/iommu: Avoid derefence before pointer check Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 261/422] selftests/powerpc: Do not fail with reschedule Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 262/422] powerpc/64s/hash: Fix stab_rr off by one initialization Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 263/422] powerpc/pseries/memory-hotplug: Only update DT once per memory DLPAR request Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 264/422] powerpc/pseries: Disable CPU hotplug across migrations Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 265/422] powerpc: Fix duplicate const clang warning in user access code Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 266/422] RDMA/i40iw: Fix incorrect iterator type Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 267/422] ARM: dts: atmel: Fix I2C and SPI bus warnings Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 268/422] OPP: Protect dev_list with opp_table lock Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 269/422] of/unittest: Fix I2C bus unit-address error Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 270/422] libfdt: Ensure INT_MAX is defined in libfdt_env.h Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 271/422] power: supply: twl4030_charger: fix charging current out-of-bounds Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 272/422] power: supply: twl4030_charger: disable eoc interrupt on linear charge Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 273/422] net: mvpp2: fix the number of queues per cpu for PPv2.2 Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 274/422] net: marvell: fix return type of ndo_start_xmit function Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 275/422] net: toshiba: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 276/422] net: xilinx: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 277/422] net: broadcom: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 278/422] net: amd: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 279/422] net: sun: " Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 280/422] net: hns3: Fix for setting speed for phy failed problem Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 281/422] net: hns3: Fix cmdq registers initialization issue for vf Greg Kroah-Hartman
2019-11-19  5:17 ` [PATCH 4.19 282/422] net: hns3: Clear client pointer when initialize client failed or unintialize finished Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 283/422] net: hns3: Fix client initialize state issue when roce client initialize failed Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 284/422] net: hns3: Fix parameter type for q_id in hclge_tm_q_to_qs_map_cfg() Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 285/422] nfp: provide a better warning when ring allocation fails Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 286/422] usb: chipidea: imx: enable OTG overcurrent in case USB subsystem is already started Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 287/422] usb: chipidea: Fix otg event handler Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 288/422] usb: usbtmc: Fix ioctl USBTMC_IOCTL_ABORT_BULK_OUT Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 289/422] s390/zcrypt: enable AP bus scan without a valid default domain Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 290/422] s390/vdso: avoid 64-bit vdso mapping for compat tasks Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 291/422] s390/vdso: correct CFI annotations of vDSO functions Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 292/422] brcmfmac: increase buffer for obtaining firmware capabilities Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 293/422] brcmsmac: Use kvmalloc() for ucode allocations Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 294/422] mlxsw: spectrum: Init shaper for TCs 8..15 Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 295/422] PCI: portdrv: Initialize service drivers directly Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 296/422] ARM: dts: am335x-evm: fix number of cpsw Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 297/422] ARM: dts: ti: Fix SPI and I2C bus warnings Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 298/422] f2fs: avoid infinite loop in f2fs_alloc_nid Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 299/422] f2fs: fix to recover inodes uid/gid during POR Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 300/422] ARM: dts: ux500: Correct SCU unit address Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 301/422] ARM: dts: ux500: Fix LCDA clock line muxing Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 302/422] ARM: dts: ste: Fix SPI controller node names Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 303/422] spi: pic32: Use proper enum in dmaengine_prep_slave_rg Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 304/422] crypto: chacha20 - Fix chacha20_block() keystream alignment (again) Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 305/422] cpufeature: avoid warning when compiling with clang Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 306/422] crypto: arm/crc32 - avoid warning when compiling with Clang Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 307/422] ARM: dts: marvell: Fix SPI and I2C bus warnings Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 308/422] x86/mce-inject: Reset injection struct after injection Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 309/422] ARM: dts: stm32: enable display on stm32mp157c-ev1 board Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 310/422] ARM: dts: clearfog: fix sdhci supply property name Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 311/422] ARM: dts: stm32: Fix SPI controller node names Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 312/422] bnx2x: Ignore bandwidth attention in single function mode Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 313/422] PCI/AER: Take reference on error devices Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 314/422] PCI/AER: Dont read upstream ports below fatal errors Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 315/422] PCI/ERR: Use slot reset if available Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 316/422] samples/bpf: fix compilation failure Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 317/422] net: phy: mdio-bcm-unimac: Allow configuring MDIO clock divider Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 318/422] net: micrel: fix return type of ndo_start_xmit function Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 319/422] net: freescale: " Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 320/422] x86/CPU: Use correct macros for Cyrix calls Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 321/422] x86/CPU: Change query logic so CPUID is enabled before testing Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 322/422] EDAC: Correct DIMM capacity unit symbol Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 323/422] MIPS: kexec: Relax memory restriction Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 324/422] arm64: dts: rockchip: Fix microSD in rk3399 sapphire board Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 325/422] mlxsw: Make MLXSW_SP1_FWREV_MINOR a hard requirement Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 326/422] media: imx: work around false-positive warning, again Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 327/422] media: pci: ivtv: Fix a sleep-in-atomic-context bug in ivtv_yuv_init() Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 328/422] media: au0828: Fix incorrect error messages Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 329/422] media: davinci: Fix implicit enum conversion warning Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 330/422] ARM: dts: rockchip: explicitly set vcc_sd0 pin to gpio on rk3188-radxarock Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 331/422] usb: gadget: uvc: configfs: Drop leaked references to config items Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 332/422] usb: gadget: uvc: configfs: Prevent format changes after linking header Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 333/422] usb: gadget: uvc: configfs: Sort frame intervals upon writing Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 334/422] ARM: dts: exynos: Correct audio subsystem parent clock on Peach Chromebooks Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 335/422] i2c: aspeed: fix invalid clock parameters for very large divisors Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 336/422] gpiolib: Fix gpio_direction_* for single direction GPIOs Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 337/422] ARM: at91: pm: call put_device instead of of_node_put in at91_pm_config_ws Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 338/422] phy: brcm-sata: allow PHY_BRCM_SATA driver to be built for DSL SoCs Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 339/422] phy: renesas: rcar-gen3-usb2: fix vbus_ctrl for role sysfs Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 340/422] phy: phy-twl4030-usb: fix denied runtime access Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 341/422] ARM: dts: imx6ull: update vdd_soc voltage for 900MHz operating point Greg Kroah-Hartman
2019-11-19  5:18 ` [PATCH 4.19 342/422] usb: gadget: uvc: Factor out video USB request queueing Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 343/422] usb: gadget: uvc: Only halt video streaming endpoint in bulk mode Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 344/422] coresight: Use ERR_CAST instead of ERR_PTR Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 345/422] coresight: Fix handling of sinks Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 346/422] coresight: perf: Fix per cpu path management Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 347/422] coresight: perf: Disable trace path upon source error Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 348/422] coresight: tmc-etr: Handle driver mode specific ETR buffers Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 349/422] coresight: etm4x: Configure EL2 exception level when kernel is running in HYP Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 350/422] coresight: tmc: Fix byte-address alignment for RRP Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 351/422] coresight: dynamic-replicator: Handle multiple connections Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 352/422] slimbus: ngd: register ngd driver only once Greg Kroah-Hartman
2019-11-20 12:31   ` Pavel Machek
2019-11-19  5:19 ` [PATCH 4.19 353/422] slimbus: ngd: return proper error code instead of zero Greg Kroah-Hartman
2019-11-20 12:36   ` Pavel Machek
2019-11-19  5:19 ` [PATCH 4.19 354/422] silmbus: ngd: register controller after power up Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 355/422] misc: kgdbts: Fix restrict error Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 356/422] misc: genwqe: should return proper error value Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 357/422] vmbus: keep pointer to ring buffer page Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 358/422] vfio/pci: Fix potential memory leak in vfio_msi_cap_len Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 359/422] vfio/pci: Mask buggy SR-IOV VF INTx support Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 360/422] iw_cxgb4: Use proper enumerated type in c4iw_bar2_addrs Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 361/422] scsi: libsas: always unregister the old device if going to discover new Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 362/422] f2fs: fix remount problem of option io_bits Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 363/422] phy: lantiq: Fix compile warning Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 364/422] ARM: dts: meson8b: odroidc1: enable the SAR ADC Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 365/422] arm64: dts: fsl: Fix I2C and SPI bus warnings Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 366/422] ARM: dts: imx51-zii-rdu1: Fix the rtc compatible string Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 367/422] arm64: tegra: I2C on Tegra194 is not compatible with Tegra114 Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 368/422] ARM: dts: tegra30: fix xcvr-setup-use-fuses Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 369/422] ARM: dts: tegra20: restore address order Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 370/422] ARM: tegra: apalis_t30: fix mmc1 cmd pull-up Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 371/422] ARM: tegra: apalis_t30: fix mcp2515 can controller interrupt polarity Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 372/422] ARM: tegra: colibri_t30: " Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 373/422] ARM: dts: paz00: fix wakeup gpio keycode Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 374/422] net: smsc: fix return type of ndo_start_xmit function Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 375/422] net: faraday: " Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 376/422] PCI/ERR: Run error recovery callbacks for all affected devices Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 377/422] f2fs: update i_size after DIO completion Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 378/422] f2fs: fix to recover inodes project id during POR Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 379/422] f2fs: mark inode dirty explicitly in recover_inode() Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 380/422] RDMA: Fix dependencies for rdma_user_mmap_io Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 381/422] EDAC: Raise the maximum number of memory controllers Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 382/422] ARM: dts: realview: Fix SPI controller node names Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 383/422] firmware: dell_rbu: Make payload memory uncachable Greg Kroah-Hartman
2019-11-20 13:28   ` Pavel Machek
2019-11-19  5:19 ` [PATCH 4.19 384/422] Bluetooth: hci_serdev: clear HCI_UART_PROTO_READY to avoid closing proto races Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 385/422] Bluetooth: L2CAP: Detect if remote is not able to use the whole MPS Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 386/422] Bluetooth: btrsi: fix bt tx timeout issue Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 387/422] x86/hyperv: Suppress "PCI: Fatal: No config space access function found" Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 388/422] crypto: s5p-sss: Fix race in error handling Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 389/422] crypto: s5p-sss: Fix Fix argument list alignment Greg Kroah-Hartman
2019-11-20 13:33   ` Pavel Machek
2019-11-19  5:19 ` [PATCH 4.19 390/422] crypto: fix a memory leak in rsa-kcs1pads encryption mode Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 391/422] iwlwifi: dbg: dont crash if the firmware crashes in the middle of a debug dump Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 392/422] iwlwifi: fix non_shared_ant for 22000 devices Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 393/422] iwlwifi: pcie: read correct prph address for newer devices Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 394/422] iwlwifi: api: annotate compressed BA notif array sizes Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 395/422] iwlwifi: pcie: gen2: build A-MSDU only for GSO Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 396/422] iwlwifi: pcie: fit reclaim msg to MAX_MSG_LEN Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 397/422] iwlwifi: mvm: use correct FIFO length Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 398/422] iwlwifi: mvm: Allow TKIP for AP mode Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 399/422] scsi: NCR5380: Clear all unissued commands on host reset Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 400/422] scsi: NCR5380: Have NCR5380_select() return a bool Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 401/422] scsi: NCR5380: Withhold disconnect privilege for REQUEST SENSE Greg Kroah-Hartman
2019-11-19  5:19 ` [PATCH 4.19 402/422] scsi: NCR5380: Use DRIVER_SENSE to indicate valid sense data Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 403/422] scsi: NCR5380: Check for invalid reselection target Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 404/422] scsi: NCR5380: Dont clear busy flag when abort fails Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 405/422] scsi: NCR5380: Dont call dsprintk() following reselection interrupt Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 406/422] scsi: NCR5380: Handle BUS FREE during reselection Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 407/422] scsi: NCR5380: Check for bus reset Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 408/422] arm64: dts: amd: Fix SPI bus warnings Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 409/422] arm64: dts: lg: Fix SPI controller node names Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 410/422] ARM: dts: lpc32xx: " Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 411/422] rtc: isl1208: avoid possible sysfs race Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 412/422] rtc: tx4939: fixup nvmem name and register size Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 413/422] rtc: armada38x: fix possible race condition Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 414/422] netfilter: masquerade: dont flush all conntracks if only one address deleted on device Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 415/422] usb: xhci-mtk: fix ISOC error when interval is zero Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 416/422] usb: usbtmc: uninitialized symbol actual in usbtmc_ioctl_clear Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 417/422] fuse: use READ_ONCE on congestion_threshold and max_background Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 418/422] IB/iser: Fix possible NULL deref at iser_inv_desc() Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 419/422] media: ov2680: fix null dereference at power on Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 420/422] s390/vdso: correct vdso mapping for compat tasks Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 421/422] net: phy: mdio-bcm-unimac: mark PM functions as __maybe_unused Greg Kroah-Hartman
2019-11-19  5:20 ` [PATCH 4.19 422/422] memfd: Use radix_tree_deref_slot_protected to avoid the warning Greg Kroah-Hartman
2019-11-19  8:54 ` [PATCH 4.19 000/422] 4.19.85-stable review Chris Paterson
2019-11-19 12:29   ` Greg Kroah-Hartman
2019-11-19 14:44     ` Chris Paterson
2019-11-19 15:48       ` Greg Kroah-Hartman
2019-11-19 16:38         ` Chris Paterson
2019-11-19 16:52           ` Greg Kroah-Hartman
2019-11-19 18:00             ` Guenter Roeck
2019-11-19 18:16               ` Greg Kroah-Hartman
2019-11-19 20:00                 ` Chris Paterson
2019-11-20  5:58                   ` Greg Kroah-Hartman
2019-11-20  4:57                 ` Naresh Kamboju
2019-11-19 16:46     ` Guenter Roeck
2019-11-19 17:02       ` Greg Kroah-Hartman
2019-11-19 17:08         ` Greg Kroah-Hartman
2019-11-19  9:18 ` Jon Hunter
2019-11-19 12:24   ` Greg Kroah-Hartman
2019-11-19 12:30     ` Greg Kroah-Hartman
2019-11-19 15:07       ` Jon Hunter
2019-11-19 15:48         ` Greg Kroah-Hartman
2019-11-19 12:02 ` kernelci.org bot
2019-11-19 20:35 ` Guenter Roeck
2019-11-20  5:59   ` 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=20191119051409.248417021@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jaegeuk@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=wshilong@ddn.com \
    --cc=yuchao0@huawei.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).