stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Zhao Heming <heming.zhao@suse.com>,
	Xiao Ni <xni@redhat.com>, Song Liu <songliubraving@fb.com>
Subject: [PATCH 4.19 335/346] md/cluster: fix deadlock when node is doing resync job
Date: Mon, 28 Dec 2020 13:50:54 +0100	[thread overview]
Message-ID: <20201228124935.962394074@linuxfoundation.org> (raw)
In-Reply-To: <20201228124919.745526410@linuxfoundation.org>

From: Zhao Heming <heming.zhao@suse.com>

commit bca5b0658020be90b6b504ca514fd80110204f71 upstream.

md-cluster uses MD_CLUSTER_SEND_LOCK to make node can exclusively send msg.
During sending msg, node can concurrently receive msg from another node.
When node does resync job, grab token_lockres:EX may trigger a deadlock:
```
nodeA                       nodeB
--------------------     --------------------
a.
send METADATA_UPDATED
held token_lockres:EX
                         b.
                         md_do_sync
                          resync_info_update
                            send RESYNCING
                             + set MD_CLUSTER_SEND_LOCK
                             + wait for holding token_lockres:EX

                         c.
                         mdadm /dev/md0 --remove /dev/sdg
                          + held reconfig_mutex
                          + send REMOVE
                             + wait_event(MD_CLUSTER_SEND_LOCK)

                         d.
                         recv_daemon //METADATA_UPDATED from A
                          process_metadata_update
                           + (mddev_trylock(mddev) ||
                              MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD)
                             //this time, both return false forever
```
Explaination:
a. A send METADATA_UPDATED
   This will block another node to send msg

b. B does sync jobs, which will send RESYNCING at intervals.
   This will be block for holding token_lockres:EX lock.

c. B do "mdadm --remove", which will send REMOVE.
   This will be blocked by step <b>: MD_CLUSTER_SEND_LOCK is 1.

d. B recv METADATA_UPDATED msg, which send from A in step <a>.
   This will be blocked by step <c>: holding mddev lock, it makes
   wait_event can't hold mddev lock. (btw,
   MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD keep ZERO in this scenario.)

There is a similar deadlock in commit 0ba959774e93
("md-cluster: use sync way to handle METADATA_UPDATED msg")
In that commit, step c is "update sb". This patch step c is
"mdadm --remove".

For fixing this issue, we can refer the solution of function:
metadata_update_start. Which does the same grab lock_token action.
lock_comm can use the same steps to avoid deadlock. By moving
MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD from lock_token to lock_comm.
It enlarge a little bit window of MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
but it is safe & can break deadlock.

Repro steps (I only triggered 3 times with hundreds tests):

two nodes share 3 iSCSI luns: sdg/sdh/sdi. Each lun size is 1GB.
```
ssh root@node2 "mdadm -S --scan"
mdadm -S --scan
for i in {g,h,i};do dd if=/dev/zero of=/dev/sd$i oflag=direct bs=1M \
count=20; done

mdadm -C /dev/md0 -b clustered -e 1.2 -n 2 -l mirror /dev/sdg /dev/sdh \
 --bitmap-chunk=1M
ssh root@node2 "mdadm -A /dev/md0 /dev/sdg /dev/sdh"

sleep 5

mkfs.xfs /dev/md0
mdadm --manage --add /dev/md0 /dev/sdi
mdadm --wait /dev/md0
mdadm --grow --raid-devices=3 /dev/md0

mdadm /dev/md0 --fail /dev/sdg
mdadm /dev/md0 --remove /dev/sdg
mdadm --grow --raid-devices=2 /dev/md0
```

test script will hung when executing "mdadm --remove".

```
 # dump stacks by "echo t > /proc/sysrq-trigger"
md0_cluster_rec D    0  5329      2 0x80004000
Call Trace:
 __schedule+0x1f6/0x560
 ? _cond_resched+0x2d/0x40
 ? schedule+0x4a/0xb0
 ? process_metadata_update.isra.0+0xdb/0x140 [md_cluster]
 ? wait_woken+0x80/0x80
 ? process_recvd_msg+0x113/0x1d0 [md_cluster]
 ? recv_daemon+0x9e/0x120 [md_cluster]
 ? md_thread+0x94/0x160 [md_mod]
 ? wait_woken+0x80/0x80
 ? md_congested+0x30/0x30 [md_mod]
 ? kthread+0x115/0x140
 ? __kthread_bind_mask+0x60/0x60
 ? ret_from_fork+0x1f/0x40

mdadm           D    0  5423      1 0x00004004
Call Trace:
 __schedule+0x1f6/0x560
 ? __schedule+0x1fe/0x560
 ? schedule+0x4a/0xb0
 ? lock_comm.isra.0+0x7b/0xb0 [md_cluster]
 ? wait_woken+0x80/0x80
 ? remove_disk+0x4f/0x90 [md_cluster]
 ? hot_remove_disk+0xb1/0x1b0 [md_mod]
 ? md_ioctl+0x50c/0xba0 [md_mod]
 ? wait_woken+0x80/0x80
 ? blkdev_ioctl+0xa2/0x2a0
 ? block_ioctl+0x39/0x40
 ? ksys_ioctl+0x82/0xc0
 ? __x64_sys_ioctl+0x16/0x20
 ? do_syscall_64+0x5f/0x150
 ? entry_SYSCALL_64_after_hwframe+0x44/0xa9

md0_resync      D    0  5425      2 0x80004000
Call Trace:
 __schedule+0x1f6/0x560
 ? schedule+0x4a/0xb0
 ? dlm_lock_sync+0xa1/0xd0 [md_cluster]
 ? wait_woken+0x80/0x80
 ? lock_token+0x2d/0x90 [md_cluster]
 ? resync_info_update+0x95/0x100 [md_cluster]
 ? raid1_sync_request+0x7d3/0xa40 [raid1]
 ? md_do_sync.cold+0x737/0xc8f [md_mod]
 ? md_thread+0x94/0x160 [md_mod]
 ? md_congested+0x30/0x30 [md_mod]
 ? kthread+0x115/0x140
 ? __kthread_bind_mask+0x60/0x60
 ? ret_from_fork+0x1f/0x40
```

At last, thanks for Xiao's solution.

Cc: stable@vger.kernel.org
Signed-off-by: Zhao Heming <heming.zhao@suse.com>
Suggested-by: Xiao Ni <xni@redhat.com>
Reviewed-by: Xiao Ni <xni@redhat.com>
Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/md/md-cluster.c |   67 +++++++++++++++++++++++++++---------------------
 drivers/md/md.c         |    6 ++--
 2 files changed, 42 insertions(+), 31 deletions(-)

--- a/drivers/md/md-cluster.c
+++ b/drivers/md/md-cluster.c
@@ -669,9 +669,27 @@ out:
  * Takes the lock on the TOKEN lock resource so no other
  * node can communicate while the operation is underway.
  */
-static int lock_token(struct md_cluster_info *cinfo, bool mddev_locked)
+static int lock_token(struct md_cluster_info *cinfo)
 {
-	int error, set_bit = 0;
+	int error;
+
+	error = dlm_lock_sync(cinfo->token_lockres, DLM_LOCK_EX);
+	if (error) {
+		pr_err("md-cluster(%s:%d): failed to get EX on TOKEN (%d)\n",
+				__func__, __LINE__, error);
+	} else {
+		/* Lock the receive sequence */
+		mutex_lock(&cinfo->recv_mutex);
+	}
+	return error;
+}
+
+/* lock_comm()
+ * Sets the MD_CLUSTER_SEND_LOCK bit to lock the send channel.
+ */
+static int lock_comm(struct md_cluster_info *cinfo, bool mddev_locked)
+{
+	int rv, set_bit = 0;
 	struct mddev *mddev = cinfo->mddev;
 
 	/*
@@ -682,34 +700,19 @@ static int lock_token(struct md_cluster_
 	 */
 	if (mddev_locked && !test_bit(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
 				      &cinfo->state)) {
-		error = test_and_set_bit_lock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
+		rv = test_and_set_bit_lock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD,
 					      &cinfo->state);
-		WARN_ON_ONCE(error);
+		WARN_ON_ONCE(rv);
 		md_wakeup_thread(mddev->thread);
 		set_bit = 1;
 	}
-	error = dlm_lock_sync(cinfo->token_lockres, DLM_LOCK_EX);
-	if (set_bit)
-		clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
 
-	if (error)
-		pr_err("md-cluster(%s:%d): failed to get EX on TOKEN (%d)\n",
-				__func__, __LINE__, error);
-
-	/* Lock the receive sequence */
-	mutex_lock(&cinfo->recv_mutex);
-	return error;
-}
-
-/* lock_comm()
- * Sets the MD_CLUSTER_SEND_LOCK bit to lock the send channel.
- */
-static int lock_comm(struct md_cluster_info *cinfo, bool mddev_locked)
-{
 	wait_event(cinfo->wait,
 		   !test_and_set_bit(MD_CLUSTER_SEND_LOCK, &cinfo->state));
-
-	return lock_token(cinfo, mddev_locked);
+	rv = lock_token(cinfo);
+	if (set_bit)
+		clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
+	return rv;
 }
 
 static void unlock_comm(struct md_cluster_info *cinfo)
@@ -789,9 +792,11 @@ static int sendmsg(struct md_cluster_inf
 {
 	int ret;
 
-	lock_comm(cinfo, mddev_locked);
-	ret = __sendmsg(cinfo, cmsg);
-	unlock_comm(cinfo);
+	ret = lock_comm(cinfo, mddev_locked);
+	if (!ret) {
+		ret = __sendmsg(cinfo, cmsg);
+		unlock_comm(cinfo);
+	}
 	return ret;
 }
 
@@ -1063,7 +1068,7 @@ static int metadata_update_start(struct
 		return 0;
 	}
 
-	ret = lock_token(cinfo, 1);
+	ret = lock_token(cinfo);
 	clear_bit_unlock(MD_CLUSTER_HOLDING_MUTEX_FOR_RECVD, &cinfo->state);
 	return ret;
 }
@@ -1181,7 +1186,10 @@ static void update_size(struct mddev *md
 	int raid_slot = -1;
 
 	md_update_sb(mddev, 1);
-	lock_comm(cinfo, 1);
+	if (lock_comm(cinfo, 1)) {
+		pr_err("%s: lock_comm failed\n", __func__);
+		return;
+	}
 
 	memset(&cmsg, 0, sizeof(cmsg));
 	cmsg.type = cpu_to_le32(METADATA_UPDATED);
@@ -1330,7 +1338,8 @@ static int add_new_disk(struct mddev *md
 	cmsg.type = cpu_to_le32(NEWDISK);
 	memcpy(cmsg.uuid, uuid, 16);
 	cmsg.raid_slot = cpu_to_le32(rdev->desc_nr);
-	lock_comm(cinfo, 1);
+	if (lock_comm(cinfo, 1))
+		return -EAGAIN;
 	ret = __sendmsg(cinfo, &cmsg);
 	if (ret) {
 		unlock_comm(cinfo);
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -6564,8 +6564,10 @@ static int hot_remove_disk(struct mddev
 		goto busy;
 
 kick_rdev:
-	if (mddev_is_clustered(mddev))
-		md_cluster_ops->remove_disk(mddev, rdev);
+	if (mddev_is_clustered(mddev)) {
+		if (md_cluster_ops->remove_disk(mddev, rdev))
+			goto busy;
+	}
 
 	md_kick_rdev_from_array(rdev);
 	set_bit(MD_SB_CHANGE_DEVS, &mddev->sb_flags);



  parent reply	other threads:[~2020-12-28 13:36 UTC|newest]

Thread overview: 357+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-28 12:45 [PATCH 4.19 000/346] 4.19.164-rc1 review Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 001/346] Kbuild: do not emit debug info for assembly with LLVM_IAS=1 Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 002/346] x86/lib: Change .weak to SYM_FUNC_START_WEAK for arch/x86/lib/mem*_64.S Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 003/346] spi: bcm2835aux: Fix use-after-free on unbind Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 004/346] spi: bcm2835aux: Restore err assignment in bcm2835aux_spi_probe Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 005/346] iwlwifi: pcie: limit memory read spin time Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 006/346] arm64: dts: rockchip: Assign a fixed index to mmc devices on rk3399 boards Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 007/346] iwlwifi: mvm: fix kernel panic in case of assert during CSA Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 008/346] powerpc: Drop -me200 addition to build flags Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 009/346] ARC: stack unwinding: dont assume non-current task is sleeping Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 010/346] scsi: ufs: Make sure clk scaling happens only when HBA is runtime ACTIVE Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 011/346] irqchip/gic-v3-its: Unconditionally save/restore the ITS state on suspend Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 012/346] soc: fsl: dpio: Get the cpumask through cpumask_of(cpu) Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 013/346] platform/x86: thinkpad_acpi: Do not report SW_TABLET_MODE on Yoga 11e Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 014/346] platform/x86: thinkpad_acpi: Add BAT1 is primary battery quirk for Thinkpad Yoga 11e 4th gen Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 015/346] platform/x86: acer-wmi: add automatic keyboard background light toggle key as KEY_LIGHTS_TOGGLE Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 016/346] platform/x86: intel-vbtn: Support for tablet mode on HP Pavilion 13 x360 PC Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 017/346] Input: cm109 - do not stomp on control URB Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 018/346] Input: i8042 - add Acer laptops to the i8042 reset list Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 019/346] pinctrl: amd: remove debounce filter setting in IRQ type setting Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 020/346] mmc: block: Fixup condition for CMD13 polling for RPMB requests Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 021/346] kbuild: avoid static_assert for genksyms Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 022/346] scsi: be2iscsi: Revert "Fix a theoretical leak in beiscsi_create_eqs()" Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 023/346] x86/mm/mem_encrypt: Fix definition of PMD_FLAGS_DEC_WP Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 024/346] x86/membarrier: Get rid of a dubious optimization Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 025/346] x86/apic/vector: Fix ordering in vector assignment Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 026/346] compiler.h: fix barrier_data() on clang Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 027/346] PCI: qcom: Add missing reset for ipq806x Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 028/346] mac80211: mesh: fix mesh_pathtbl_init() error path Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 029/346] net: stmmac: free tx skb buffer in stmmac_resume() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 030/346] tcp: select sane initial rcvq_space.space for big MSS Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 031/346] tcp: fix cwnd-limited bug for TSO deferral where we send nothing Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 032/346] net/mlx4_en: Avoid scheduling restart task if it is already running Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 033/346] lan743x: fix for potential NULL pointer dereference with bare card Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 034/346] net/mlx4_en: Handle TX error CQE Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 035/346] net: stmmac: delete the eee_ctrl_timer after napi disabled Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 036/346] net: stmmac: dwmac-meson8b: fix mask definition of the m250_sel mux Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 037/346] net: bridge: vlan: fix error return code in __vlan_add() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 038/346] ktest.pl: If size of log is too big to email, email error message Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 039/346] USB: dummy-hcd: Fix uninitialized array use in init() Greg Kroah-Hartman
2020-12-28 12:45 ` [PATCH 4.19 040/346] USB: add RESET_RESUME quirk for Snapscan 1212 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 041/346] ALSA: usb-audio: Fix potential out-of-bounds shift Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 042/346] ALSA: usb-audio: Fix control access overflow errors from chmap Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 043/346] xhci: Give USB2 ports time to enter U3 in bus suspend Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 044/346] USB: UAS: introduce a quirk to set no_write_same Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 045/346] USB: sisusbvga: Make console support depend on BROKEN Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 046/346] ALSA: pcm: oss: Fix potential out-of-bounds shift Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 047/346] serial: 8250_omap: Avoid FIFO corruption caused by MDR1 access Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 048/346] drm/xen-front: Fix misused IS_ERR_OR_NULL checks Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 049/346] drm: fix drm_dp_mst_port refcount leaks in drm_dp_mst_allocate_vcpi Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 050/346] arm64: lse: fix LSE atomics with LLVMs integrated assembler Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 051/346] arm64: lse: Fix LSE atomics with LLVM Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 052/346] arm64: Change .weak to SYM_FUNC_START_WEAK_PI for arch/arm64/lib/mem*.S Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 053/346] x86/resctrl: Remove unused struct mbm_state::chunks_bw Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 054/346] x86/resctrl: Fix incorrect local bandwidth when mba_sc is enabled Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 055/346] pinctrl: merrifield: Set default bias in case no particular value given Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 056/346] pinctrl: baytrail: Avoid clearing debounce value when turning it off Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 057/346] ARM: dts: sun8i: v3s: fix GIC node memory range Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 058/346] gpio: mvebu: fix potential user-after-free on probe Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 059/346] scsi: bnx2i: Requires MMU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 060/346] xsk: Fix xsk_poll()s return type Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 061/346] can: softing: softing_netdev_open(): fix error handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 062/346] clk: renesas: r9a06g032: Drop __packed for portability Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 063/346] block: factor out requeue handling from dispatch code Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 064/346] netfilter: x_tables: Switch synchronization to RCU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 065/346] gpio: eic-sprd: break loop when getting NULL device resource Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 066/346] selftests/bpf/test_offload.py: Reset ethtool features after failed setting Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 067/346] RDMA/cm: Fix an attempt to use non-valid pointer when cleaning timewait Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 068/346] ixgbe: avoid premature Rx buffer reuse Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 069/346] drm/tegra: replace idr_init() by idr_init_base() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 070/346] kernel/cpu: add arch override for clear_tasks_mm_cpumask() mm handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 071/346] drm/tegra: sor: Disable clocks on error in tegra_sor_init() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 072/346] arm64: syscall: exit userspace before unmasking exceptions Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 073/346] vxlan: Add needed_headroom for lower device Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 074/346] vxlan: Copy needed_tailroom from lowerdev Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 075/346] scsi: mpt3sas: Increase IOCInit request timeout to 30s Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 076/346] dm table: Remove BUG_ON(in_interrupt()) Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 077/346] soc/tegra: fuse: Fix index bug in get_process_id Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 078/346] USB: serial: option: add interface-number sanity check to flag handling Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 079/346] USB: gadget: f_acm: add support for SuperSpeed Plus Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 080/346] USB: gadget: f_midi: setup SuperSpeed Plus descriptors Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 081/346] usb: gadget: f_fs: Re-use SS descriptors for SuperSpeedPlus Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 082/346] USB: gadget: f_rndis: fix bitrate for SuperSpeed and above Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 083/346] usb: chipidea: ci_hdrc_imx: Pass DISABLE_DEVICE_STREAMING flag to imx6ul Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 084/346] ARM: dts: exynos: fix roles of USB 3.0 ports on Odroid XU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 085/346] ARM: dts: exynos: fix USB 3.0 VBUS control and over-current pins on Exynos5410 Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 086/346] ARM: dts: exynos: fix USB 3.0 pins supply being turned off on Odroid XU Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 087/346] coresight: tmc-etr: Check if page is valid before dma_map_page() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 088/346] scsi: megaraid_sas: Check user-provided offsets Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 089/346] HID: i2c-hid: add Vero K147 to descriptor override Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 090/346] serial_core: Check for port state when tty is in error state Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 091/346] Bluetooth: Fix slab-out-of-bounds read in hci_le_direct_adv_report_evt() Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 092/346] quota: Sanity-check quota file headers on load Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 093/346] media: msi2500: assign SPI bus number dynamically Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 094/346] crypto: af_alg - avoid undefined behavior accessing salg_name Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 095/346] md: fix a warning caused by a race between concurrent md_ioctl()s Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 096/346] perf cs-etm: Change tuple from traceID-CPU# to traceID-metadata Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 097/346] perf cs-etm: Move definition of traceid_list global variable from header file Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 098/346] drm/gma500: fix double free of gma_connector Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 099/346] drm/tve200: Fix handling of platform_get_irq() error Greg Kroah-Hartman
2020-12-28 12:46 ` [PATCH 4.19 100/346] soc: renesas: rmobile-sysc: Fix some leaks in rmobile_init_pm_domains() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 101/346] soc: mediatek: Check if power domains can be powered on at boot time Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 102/346] soc: qcom: geni: More properly switch to DMA mode Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 103/346] RDMA/bnxt_re: Set queue pair state when being queried Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 104/346] selinux: fix error initialization in inode_doinit_with_dentry() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 105/346] ARM: dts: aspeed: s2600wf: Fix VGA memory region location Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 106/346] RDMA/rxe: Compute PSN windows correctly Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 107/346] x86/mm/ident_map: Check for errors from ident_pud_init() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 108/346] ARM: p2v: fix handling of LPAE translation in BE mode Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 109/346] x86/apic: Fix x2apic enablement without interrupt remapping Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 110/346] sched/deadline: Fix sched_dl_global_validate() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 111/346] sched: Reenable interrupts in do_sched_yield() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 112/346] crypto: talitos - Endianess in current_desc_hdr() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 113/346] crypto: talitos - Fix return type of current_desc_hdr() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 114/346] crypto: inside-secure - Fix sizeof() mismatch Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 115/346] drm/amdgpu: fix build_coefficients() argument Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 116/346] powerpc/64: Set up a kernel stack for secondaries before cpu_restore() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 117/346] spi: img-spfi: fix reference leak in img_spfi_resume Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 118/346] drm/msm/dsi_pll_10nm: restore VCO rate during restore_state Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 119/346] ASoC: pcm: DRAIN support reactivation Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 120/346] selinux: fix inode_doinit_with_dentry() LABEL_INVALID error handling Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 121/346] arm64: dts: exynos: Include common syscon restart/poweroff for Exynos7 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 122/346] arm64: dts: exynos: Correct psci compatible used on Exynos7 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 123/346] Bluetooth: Fix null pointer dereference in hci_event_packet() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 124/346] Bluetooth: hci_h5: fix memory leak in h5_close Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 125/346] spi: spi-ti-qspi: fix reference leak in ti_qspi_setup Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 126/346] spi: tegra20-slink: fix reference leak in slink ops of tegra20 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 127/346] spi: tegra20-sflash: fix reference leak in tegra_sflash_resume Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 128/346] spi: tegra114: fix reference leak in tegra spi ops Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 129/346] spi: bcm63xx-hsspi: fix missing clk_disable_unprepare() on error in bcm63xx_hsspi_resume Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 130/346] mwifiex: fix mwifiex_shutdown_sw() causing sw reset failure Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 131/346] ASoC: wm8998: Fix PM disable depth imbalance on error Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 132/346] net: evaluate net.ipvX.conf.all.ignore_routes_with_linkdown Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 133/346] net: evaluate net.ipv4.conf.all.proxy_arp_pvlan Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 134/346] ASoC: arizona: Fix a wrong free in wm8997_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 135/346] RDMa/mthca: Work around -Wenum-conversion warning Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 136/346] MIPS: BCM47XX: fix kconfig dependency bug for BCM47XX_BCMA Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 137/346] crypto: qat - fix status check in qat_hal_put_rel_rd_xfer() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 138/346] staging: greybus: codecs: Fix reference counter leak in error handling Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 139/346] staging: gasket: interrupt: fix the missed eventfd_ctx_put() in gasket_interrupt.c Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 140/346] media: tm6000: Fix sizeof() mismatches Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 141/346] media: mtk-vcodec: add missing put_device() call in mtk_vcodec_release_dec_pm() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 142/346] ASoC: meson: fix COMPILE_TEST error Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 143/346] scsi: core: Fix VPD LUN ID designator priorities Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 144/346] media: solo6x10: fix missing snd_card_free in error handling case Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 145/346] video: fbdev: atmel_lcdfb: fix return error code in atmel_lcdfb_of_init() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 146/346] drm/omap: dmm_tiler: fix return error code in omap_dmm_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 147/346] Input: ads7846 - fix race that causes missing releases Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 148/346] Input: ads7846 - fix integer overflow on Rt calculation Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 149/346] Input: ads7846 - fix unaligned access on 7845 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 150/346] usb/max3421: fix return error code in max3421_probe() Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 151/346] spi: mxs: fix reference leak in mxs_spi_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 152/346] powerpc/feature: Fix CPU_FTRS_ALWAYS by removing CPU_FTRS_GENERIC_32 Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 153/346] crypto: crypto4xx - Replace bitwise OR with logical OR in crypto4xx_build_pd Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 154/346] crypto: omap-aes - Fix PM disable depth imbalance in omap_aes_probe Greg Kroah-Hartman
2020-12-30 13:16   ` Pavel Machek
2020-12-30 13:54     ` Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 155/346] spi: fix resource leak for drivers without .remove callback Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 156/346] soc: ti: knav_qmss: fix reference leak in knav_queue_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 157/346] soc: ti: Fix reference imbalance in knav_dma_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 158/346] drivers: soc: ti: knav_qmss_queue: Fix error return code in knav_queue_probe Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 159/346] Input: omap4-keypad - fix runtime PM error handling Greg Kroah-Hartman
2020-12-28 12:47 ` [PATCH 4.19 160/346] RDMA/cxgb4: Validate the number of CQEs Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 161/346] memstick: fix a double-free bug in memstick_check Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 162/346] ARM: dts: at91: sama5d4_xplained: add pincontrol for USB Host Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 163/346] ARM: dts: at91: sama5d3_xplained: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 164/346] orinoco: Move context allocation after processing the skb Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 165/346] cw1200: fix missing destroy_workqueue() on error in cw1200_init_common Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 166/346] dmaengine: mv_xor_v2: Fix error return code in mv_xor_v2_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 167/346] media: siano: fix memory leak of debugfs members in smsdvb_hotplug Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 168/346] platform/x86: mlx-platform: Remove PSU EEPROM from default platform configuration Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 169/346] platform/x86: mlx-platform: Remove PSU EEPROM from MSN274x " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 170/346] samples: bpf: Fix lwt_len_hist reusing previous BPF map Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 171/346] mips: cdmm: fix use-after-free in mips_cdmm_bus_discover Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 172/346] media: max2175: fix max2175_set_csm_mode() error code Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 173/346] slimbus: qcom-ngd-ctrl: Avoid sending power requests without QMI Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 174/346] HSI: omap_ssi: Dont jump to free ID in ssi_add_controller() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 175/346] ARM: dts: Remove non-existent i2c1 from 98dx3236 Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 176/346] arm64: dts: rockchip: Set dr_mode to "host" for OTG on rk3328-roc-cc Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 177/346] power: supply: axp288_charger: Fix HP Pavilion x2 10 DMI matching Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 178/346] power: supply: bq24190_charger: fix reference leak Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 179/346] genirq/irqdomain: Dont try to free an interrupt that has no mapping Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 180/346] PCI: Bounds-check command-line resource alignment requests Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 181/346] PCI: Fix overflow in " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 182/346] PCI: iproc: Fix out-of-bound array accesses Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 183/346] arm64: dts: meson: fix spi-max-frequency on Khadas VIM2 Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 184/346] ARM: dts: at91: at91sam9rl: fix ADC triggers Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 185/346] platform/x86: dell-smbios-base: Fix error return code in dell_smbios_init Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 186/346] ath10k: Fix the parsing error in service available event Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 187/346] ath10k: Fix an error handling path Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 188/346] ath10k: Release some resources in " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 189/346] NFSv4.2: condition READDIRs mask for security label based on LSM state Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 190/346] SUNRPC: xprt_load_transport() needs to support the netid "rdma6" Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 191/346] lockd: dont use interval-based rebinding over TCP Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 192/346] NFS: switch nfsiod to be an UNBOUND workqueue Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 193/346] vfio-pci: Use io_remap_pfn_range() for PCI IO memory Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 194/346] media: saa7146: fix array overflow in vidioc_s_audio() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 195/346] clocksource/drivers/cadence_ttc: Fix memory leak in ttc_setup_clockevent() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 196/346] ARM: dts: at91: sama5d2: map securam as device Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 197/346] pinctrl: falcon: add missing put_device() call in pinctrl_falcon_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 198/346] arm64: dts: rockchip: Fix UART pull-ups on rk3328 Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 199/346] memstick: r592: Fix error return in r592_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 200/346] net/mlx5: Properly convey driver version to firmware Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 201/346] ASoC: jz4740-i2s: add missed checks for clk_get() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 202/346] dm ioctl: fix error return code in target_message Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 203/346] clocksource/drivers/arm_arch_timer: Correct fault programming of CNTKCTL_EL1.EVNTI Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 204/346] cpufreq: highbank: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 205/346] cpufreq: mediatek: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 206/346] cpufreq: st: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 207/346] cpufreq: loongson1: Add missing MODULE_ALIAS Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 208/346] cpufreq: scpi: " Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 209/346] scsi: qedi: Fix missing destroy_workqueue() on error in __qedi_probe Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 210/346] scsi: pm80xx: Fix error return in pm8001_pci_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 211/346] seq_buf: Avoid type mismatch for seq_buf_init Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 212/346] scsi: fnic: Fix error return code in fnic_probe() Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 213/346] platform/x86: mlx-platform: Fix item counter assignment for MSN2700, MSN24xx systems Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 214/346] powerpc/pseries/hibernation: drop pseries_suspend_begin() from suspend ops Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 215/346] powerpc/pseries/hibernation: remove redundant cacheinfo update Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 216/346] usb: ehci-omap: Fix PM disable depth umbalance in ehci_hcd_omap_probe Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 217/346] usb: oxu210hp-hcd: Fix memory leak in oxu_create Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 218/346] speakup: fix uninitialized flush_lock Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 219/346] nfsd: Fix message level for normal termination Greg Kroah-Hartman
2020-12-28 12:48 ` [PATCH 4.19 220/346] nfs_common: need lock during iterate through the list Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 221/346] x86/kprobes: Restore BTF if the single-stepping is cancelled Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 222/346] bus: fsl-mc: fix error return code in fsl_mc_object_allocate() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 223/346] clk: tegra: Fix duplicated SE clock entry Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 224/346] extcon: max77693: Fix modalias string Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 225/346] mac80211: dont set set TDLS STA bandwidth wider than possible Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 226/346] ASoC: wm_adsp: remove "ctl" from list on error in wm_adsp_create_control() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 227/346] irqchip/alpine-msi: Fix freeing of interrupts on allocation error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 228/346] watchdog: sirfsoc: Add missing dependency on HAS_IOMEM Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 229/346] watchdog: sprd: remove watchdog disable from resume fail path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 230/346] watchdog: sprd: check busy bit before new loading rather than after that Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 231/346] watchdog: Fix potential dereferencing of null pointer Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 232/346] um: Monitor error events in IRQ controller Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 233/346] um: tty: Fix handling of close in tty lines Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 234/346] um: chan_xterm: Fix fd leak Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 235/346] nfc: s3fwrn5: Release the nfc firmware Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 236/346] powerpc/ps3: use dma_mapping_error() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 237/346] checkpatch: fix unescaped left brace Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 238/346] net: bcmgenet: Fix a resource leak in an error handling path in the probe functin Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 239/346] net: allwinner: Fix some resources leak in the error handling path of the probe and in the remove function Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 240/346] net: korina: fix return value Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 241/346] libnvdimm/label: Return -ENXIO for no slot in __blk_label_update Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 242/346] watchdog: qcom: Avoid context switch in restart handler Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 243/346] watchdog: coh901327: add COMMON_CLK dependency Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 244/346] clk: ti: Fix memleak in ti_fapll_synth_setup Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 245/346] pwm: zx: Add missing cleanup in error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 247/346] perf record: Fix memory leak when using --user-regs=? to list registers Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 248/346] qlcnic: Fix error code in probe Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 249/346] clk: s2mps11: Fix a resource leak in error handling paths in the probe function Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 250/346] clk: sunxi-ng: Make sure divider tables have sentinel Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 251/346] kconfig: fix return value of do_error_if() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 252/346] ARM: sunxi: Add machine match for the Allwinner V3 SoC Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 253/346] cfg80211: initialize rekey_data Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 254/346] [SECURITY] fix namespaced fscaps when !CONFIG_SECURITY Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 255/346] lwt: Disable BH too in run_lwt_bpf() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 256/346] Input: cros_ec_keyb - send scancodes in addition to key events Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 257/346] Input: goodix - add upside-down quirk for Teclast X98 Pro tablet Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 258/346] media: gspca: Fix memory leak in probe Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 259/346] media: sunxi-cir: ensure IR is handled when it is continuous Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 260/346] media: netup_unidvb: Dont leak SPI master in probe error path Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 261/346] media: ipu3-cio2: Remove traces of returned buffers Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 262/346] media: ipu3-cio2: Return actual subdev format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 263/346] media: ipu3-cio2: Serialise access to pad format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 264/346] media: ipu3-cio2: Validate mbus format in setting subdev format Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 265/346] media: ipu3-cio2: Make the field on subdev format V4L2_FIELD_NONE Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 266/346] Input: cyapa_gen6 - fix out-of-bounds stack access Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 267/346] ALSA: hda/ca0132 - Change Input Source enum strings Greg Kroah-Hartman
2020-12-31 18:15   ` Pavel Machek
2021-01-01  8:02     ` Takashi Iwai
2020-12-28 12:49 ` [PATCH 4.19 268/346] PM: ACPI: PCI: Drop acpi_pm_set_bridge_wakeup() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 269/346] Revert "ACPI / resources: Use AE_CTRL_TERMINATE to terminate resources walks" Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 270/346] ACPI: PNP: compare the string length in the matching_id() Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 271/346] ALSA: hda: Fix regressions on clear and reconfig sysfs Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 272/346] ALSA: hda/realtek - Enable headset mic of ASUS X430UN with ALC256 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 273/346] ALSA: hda/realtek - Enable headset mic of ASUS Q524UQK with ALC255 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 274/346] ALSA: pcm: oss: Fix a few more UBSAN fixes Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 275/346] ALSA: hda/realtek: Add quirk for MSI-GP73 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 276/346] ALSA: hda/realtek: Apply jack fixup for Quanta NL3 Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 277/346] ALSA: usb-audio: Add VID to support native DSD reproduction on FiiO devices Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 278/346] ALSA: usb-audio: Disable sample read check if firmware doesnt give back Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 279/346] s390/smp: perform initial CPU reset also for SMT siblings Greg Kroah-Hartman
2020-12-28 12:49 ` [PATCH 4.19 280/346] s390/kexec_file: fix diag308 subcode when loading crash kernel Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 281/346] s390/dasd: fix hanging device offline processing Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 282/346] s390/dasd: prevent inconsistent LCU device data Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 283/346] s390/dasd: fix list corruption of pavgroup group list Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 284/346] s390/dasd: fix list corruption of lcu list Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 285/346] staging: comedi: mf6x4: Fix AI end-of-conversion detection Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 286/346] powerpc/perf: Exclude kernel samples while counting events in user space Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 287/346] crypto: ecdh - avoid unaligned accesses in ecdh_set_secret() Greg Kroah-Hartman
2020-12-31 20:09   ` Pavel Machek
2021-01-02 11:29     ` Ard Biesheuvel
2020-12-28 12:50 ` [PATCH 4.19 288/346] EDAC/amd64: Fix PCI component registration Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 289/346] USB: serial: mos7720: fix parallel-port state restore Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 290/346] USB: serial: digi_acceleport: fix write-wakeup deadlocks Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 291/346] USB: serial: keyspan_pda: fix dropped unthrottle interrupts Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 292/346] USB: serial: keyspan_pda: fix write deadlock Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 293/346] USB: serial: keyspan_pda: fix stalled writes Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 294/346] USB: serial: keyspan_pda: fix write-wakeup use-after-free Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 295/346] USB: serial: keyspan_pda: fix tx-unthrottle use-after-free Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 296/346] USB: serial: keyspan_pda: fix write unthrottling Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 297/346] ext4: fix a memory leak of ext4_free_data Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 298/346] ext4: fix deadlock with fs freezing and EA inodes Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 299/346] KVM: arm64: Introduce handling of AArch32 TTBCR2 traps Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 300/346] ARM: dts: pandaboard: fix pinmux for gpio user button of Pandaboard ES Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 301/346] ARM: dts: at91: sama5d2: fix CAN message ram offset and size Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 302/346] powerpc: Fix incorrect stw{, ux, u, x} instructions in __set_pte_at Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 303/346] powerpc/rtas: Fix typo of ibm,open-errinjct in RTAS filter Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 304/346] powerpc/xmon: Change printk() to pr_cont() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 305/346] powerpc/powernv/memtrace: Dont leak kernel memory to user space Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 306/346] powerpc/powernv/memtrace: Fix crashing the kernel when enabling concurrently Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 307/346] ima: Dont modify file descriptor mode on the fly Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 308/346] ceph: fix race in concurrent __ceph_remove_cap invocations Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 309/346] SMB3: avoid confusing warning message on mount to Azure Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 310/346] SMB3.1.1: do not log warning message if server doesnt populate salt Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 311/346] ubifs: wbuf: Dont leak kernel memory to flash Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 312/346] jffs2: Fix GC exit abnormally Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 313/346] jfs: Fix array index bounds check in dbAdjTree Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 314/346] drm/dp_aux_dev: check aux_dev before use in drm_dp_aux_dev_get_by_minor() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 315/346] spi: spi-sh: Fix use-after-free on unbind Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 316/346] spi: davinci: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 317/346] spi: pic32: Dont leak DMA channels in probe error path Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 318/346] spi: rb4xx: Dont leak SPI master " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 319/346] spi: sc18is602: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 320/346] spi: st-ssc4: Fix unbalanced pm_runtime_disable() " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 321/346] spi: mt7621: fix missing clk_disable_unprepare() on error in mt7621_spi_probe Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 322/346] soc: qcom: smp2p: Safely acquire spinlock without IRQs Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 323/346] mtd: spinand: Fix OOB read Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 324/346] mtd: parser: cmdline: Fix parsing of part-names with colons Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 325/346] mtd: rawnand: qcom: Fix DMA sync on FLASH_STATUS register read Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 326/346] scsi: lpfc: Fix invalid sleeping context in lpfc_sli4_nvmet_alloc() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 327/346] scsi: lpfc: Re-fix use after free in lpfc_rq_buf_free() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 328/346] iio: buffer: Fix demux update Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 329/346] iio: adc: rockchip_saradc: fix missing clk_disable_unprepare() on error in rockchip_saradc_resume Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 330/346] iio:light:rpr0521: Fix timestamp alignment and prevent data leak Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 331/346] iio:light:st_uvis25: " Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 332/346] iio:pressure:mpl3115: Force alignment of buffer Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 333/346] iio:imu:bmi160: Fix too large a buffer Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 334/346] md/cluster: block reshape with remote resync job Greg Kroah-Hartman
2020-12-28 12:50 ` Greg Kroah-Hartman [this message]
2020-12-28 12:50 ` [PATCH 4.19 336/346] pinctrl: sunxi: Always call chained_irq_{enter, exit} in sunxi_pinctrl_irq_handler Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 337/346] clk: mvebu: a3700: fix the XTAL MODE pin to MPP1_9 Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 338/346] xen-blkback: set ring->xenblkd to NULL after kthread_stop() Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 339/346] xen/xenbus: Allow watches discard events before queueing Greg Kroah-Hartman
2020-12-28 12:50 ` [PATCH 4.19 340/346] xen/xenbus: Add will_handle callback support in xenbus_watch_path() Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 341/346] xen/xenbus/xen_bus_type: Support will_handle watch callback Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 342/346] xen/xenbus: Count pending messages for each watch Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 343/346] xenbus/xenbus_backend: Disallow pending watch messages Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 344/346] libnvdimm/namespace: Fix reaping of invalidated block-window-namespace labels Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 345/346] platform/x86: intel-vbtn: Allow switch events on Acer Switch Alpha 12 Greg Kroah-Hartman
2020-12-28 12:51 ` [PATCH 4.19 346/346] PCI: Fix pci_slot_release() NULL pointer dereference Greg Kroah-Hartman
2020-12-28 20:18 ` [PATCH 4.19 000/346] 4.19.164-rc1 review Jon Hunter
2020-12-28 20:25 ` Guenter Roeck
2020-12-29  8:55 ` Naresh Kamboju
2020-12-30  9:38 ` Pavel Machek
2020-12-30 10:27   ` 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=20201228124935.962394074@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=heming.zhao@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=songliubraving@fb.com \
    --cc=stable@vger.kernel.org \
    --cc=xni@redhat.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).