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, "Lv Yunlong" <lyl2019@mail.ustc.edu.cn>,
	"Christoph Böhmwalder" <christoph.boehmwalder@linbit.com>,
	"Jens Axboe" <axboe@kernel.dk>, "Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 4.14 243/284] drbd: Fix five use after free bugs in get_initial_state
Date: Mon, 18 Apr 2022 14:13:44 +0200	[thread overview]
Message-ID: <20220418121218.968741769@linuxfoundation.org> (raw)
In-Reply-To: <20220418121210.689577360@linuxfoundation.org>

From: Lv Yunlong <lyl2019@mail.ustc.edu.cn>

[ Upstream commit aadb22ba2f656581b2f733deb3a467c48cc618f6 ]

In get_initial_state, it calls notify_initial_state_done(skb,..) if
cb->args[5]==1. If genlmsg_put() failed in notify_initial_state_done(),
the skb will be freed by nlmsg_free(skb).
Then get_initial_state will goto out and the freed skb will be used by
return value skb->len, which is a uaf bug.

What's worse, the same problem goes even further: skb can also be
freed in the notify_*_state_change -> notify_*_state calls below.
Thus 4 additional uaf bugs happened.

My patch lets the problem callee functions: notify_initial_state_done
and notify_*_state_change return an error code if errors happen.
So that the error codes could be propagated and the uaf bugs can be avoid.

v2 reports a compilation warning. This v3 fixed this warning and built
successfully in my local environment with no additional warnings.
v2: https://lore.kernel.org/patchwork/patch/1435218/

Fixes: a29728463b254 ("drbd: Backport the "events2" command")
Signed-off-by: Lv Yunlong <lyl2019@mail.ustc.edu.cn>
Reviewed-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/block/drbd/drbd_int.h          |  8 ++---
 drivers/block/drbd/drbd_nl.c           | 41 ++++++++++++++++----------
 drivers/block/drbd/drbd_state.c        | 18 +++++------
 drivers/block/drbd/drbd_state_change.h |  8 ++---
 4 files changed, 42 insertions(+), 33 deletions(-)

diff --git a/drivers/block/drbd/drbd_int.h b/drivers/block/drbd/drbd_int.h
index 7e8589ce631c..204b4a84bdbb 100644
--- a/drivers/block/drbd/drbd_int.h
+++ b/drivers/block/drbd/drbd_int.h
@@ -1690,22 +1690,22 @@ struct sib_info {
 };
 void drbd_bcast_event(struct drbd_device *device, const struct sib_info *sib);
 
-extern void notify_resource_state(struct sk_buff *,
+extern int notify_resource_state(struct sk_buff *,
 				  unsigned int,
 				  struct drbd_resource *,
 				  struct resource_info *,
 				  enum drbd_notification_type);
-extern void notify_device_state(struct sk_buff *,
+extern int notify_device_state(struct sk_buff *,
 				unsigned int,
 				struct drbd_device *,
 				struct device_info *,
 				enum drbd_notification_type);
-extern void notify_connection_state(struct sk_buff *,
+extern int notify_connection_state(struct sk_buff *,
 				    unsigned int,
 				    struct drbd_connection *,
 				    struct connection_info *,
 				    enum drbd_notification_type);
-extern void notify_peer_device_state(struct sk_buff *,
+extern int notify_peer_device_state(struct sk_buff *,
 				     unsigned int,
 				     struct drbd_peer_device *,
 				     struct peer_device_info *,
diff --git a/drivers/block/drbd/drbd_nl.c b/drivers/block/drbd/drbd_nl.c
index 31d7fe4480af..5543876ec0e2 100644
--- a/drivers/block/drbd/drbd_nl.c
+++ b/drivers/block/drbd/drbd_nl.c
@@ -4598,7 +4598,7 @@ static int nla_put_notification_header(struct sk_buff *msg,
 	return drbd_notification_header_to_skb(msg, &nh, true);
 }
 
-void notify_resource_state(struct sk_buff *skb,
+int notify_resource_state(struct sk_buff *skb,
 			   unsigned int seq,
 			   struct drbd_resource *resource,
 			   struct resource_info *resource_info,
@@ -4640,16 +4640,17 @@ void notify_resource_state(struct sk_buff *skb,
 		if (err && err != -ESRCH)
 			goto failed;
 	}
-	return;
+	return 0;
 
 nla_put_failure:
 	nlmsg_free(skb);
 failed:
 	drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
 			err, seq);
+	return err;
 }
 
-void notify_device_state(struct sk_buff *skb,
+int notify_device_state(struct sk_buff *skb,
 			 unsigned int seq,
 			 struct drbd_device *device,
 			 struct device_info *device_info,
@@ -4689,16 +4690,17 @@ void notify_device_state(struct sk_buff *skb,
 		if (err && err != -ESRCH)
 			goto failed;
 	}
-	return;
+	return 0;
 
 nla_put_failure:
 	nlmsg_free(skb);
 failed:
 	drbd_err(device, "Error %d while broadcasting event. Event seq:%u\n",
 		 err, seq);
+	return err;
 }
 
-void notify_connection_state(struct sk_buff *skb,
+int notify_connection_state(struct sk_buff *skb,
 			     unsigned int seq,
 			     struct drbd_connection *connection,
 			     struct connection_info *connection_info,
@@ -4738,16 +4740,17 @@ void notify_connection_state(struct sk_buff *skb,
 		if (err && err != -ESRCH)
 			goto failed;
 	}
-	return;
+	return 0;
 
 nla_put_failure:
 	nlmsg_free(skb);
 failed:
 	drbd_err(connection, "Error %d while broadcasting event. Event seq:%u\n",
 		 err, seq);
+	return err;
 }
 
-void notify_peer_device_state(struct sk_buff *skb,
+int notify_peer_device_state(struct sk_buff *skb,
 			      unsigned int seq,
 			      struct drbd_peer_device *peer_device,
 			      struct peer_device_info *peer_device_info,
@@ -4788,13 +4791,14 @@ void notify_peer_device_state(struct sk_buff *skb,
 		if (err && err != -ESRCH)
 			goto failed;
 	}
-	return;
+	return 0;
 
 nla_put_failure:
 	nlmsg_free(skb);
 failed:
 	drbd_err(peer_device, "Error %d while broadcasting event. Event seq:%u\n",
 		 err, seq);
+	return err;
 }
 
 void notify_helper(enum drbd_notification_type type,
@@ -4845,7 +4849,7 @@ void notify_helper(enum drbd_notification_type type,
 		 err, seq);
 }
 
-static void notify_initial_state_done(struct sk_buff *skb, unsigned int seq)
+static int notify_initial_state_done(struct sk_buff *skb, unsigned int seq)
 {
 	struct drbd_genlmsghdr *dh;
 	int err;
@@ -4859,11 +4863,12 @@ static void notify_initial_state_done(struct sk_buff *skb, unsigned int seq)
 	if (nla_put_notification_header(skb, NOTIFY_EXISTS))
 		goto nla_put_failure;
 	genlmsg_end(skb, dh);
-	return;
+	return 0;
 
 nla_put_failure:
 	nlmsg_free(skb);
 	pr_err("Error %d sending event. Event seq:%u\n", err, seq);
+	return err;
 }
 
 static void free_state_changes(struct list_head *list)
@@ -4890,6 +4895,7 @@ static int get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
 	unsigned int seq = cb->args[2];
 	unsigned int n;
 	enum drbd_notification_type flags = 0;
+	int err = 0;
 
 	/* There is no need for taking notification_mutex here: it doesn't
 	   matter if the initial state events mix with later state chage
@@ -4898,32 +4904,32 @@ static int get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
 
 	cb->args[5]--;
 	if (cb->args[5] == 1) {
-		notify_initial_state_done(skb, seq);
+		err = notify_initial_state_done(skb, seq);
 		goto out;
 	}
 	n = cb->args[4]++;
 	if (cb->args[4] < cb->args[3])
 		flags |= NOTIFY_CONTINUES;
 	if (n < 1) {
-		notify_resource_state_change(skb, seq, state_change->resource,
+		err = notify_resource_state_change(skb, seq, state_change->resource,
 					     NOTIFY_EXISTS | flags);
 		goto next;
 	}
 	n--;
 	if (n < state_change->n_connections) {
-		notify_connection_state_change(skb, seq, &state_change->connections[n],
+		err = notify_connection_state_change(skb, seq, &state_change->connections[n],
 					       NOTIFY_EXISTS | flags);
 		goto next;
 	}
 	n -= state_change->n_connections;
 	if (n < state_change->n_devices) {
-		notify_device_state_change(skb, seq, &state_change->devices[n],
+		err = notify_device_state_change(skb, seq, &state_change->devices[n],
 					   NOTIFY_EXISTS | flags);
 		goto next;
 	}
 	n -= state_change->n_devices;
 	if (n < state_change->n_devices * state_change->n_connections) {
-		notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n],
+		err = notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n],
 						NOTIFY_EXISTS | flags);
 		goto next;
 	}
@@ -4938,7 +4944,10 @@ static int get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
 		cb->args[4] = 0;
 	}
 out:
-	return skb->len;
+	if (err)
+		return err;
+	else
+		return skb->len;
 }
 
 int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
diff --git a/drivers/block/drbd/drbd_state.c b/drivers/block/drbd/drbd_state.c
index b452359b6aae..1474250f9440 100644
--- a/drivers/block/drbd/drbd_state.c
+++ b/drivers/block/drbd/drbd_state.c
@@ -1549,7 +1549,7 @@ int drbd_bitmap_io_from_worker(struct drbd_device *device,
 	return rv;
 }
 
-void notify_resource_state_change(struct sk_buff *skb,
+int notify_resource_state_change(struct sk_buff *skb,
 				  unsigned int seq,
 				  struct drbd_resource_state_change *resource_state_change,
 				  enum drbd_notification_type type)
@@ -1562,10 +1562,10 @@ void notify_resource_state_change(struct sk_buff *skb,
 		.res_susp_fen = resource_state_change->susp_fen[NEW],
 	};
 
-	notify_resource_state(skb, seq, resource, &resource_info, type);
+	return notify_resource_state(skb, seq, resource, &resource_info, type);
 }
 
-void notify_connection_state_change(struct sk_buff *skb,
+int notify_connection_state_change(struct sk_buff *skb,
 				    unsigned int seq,
 				    struct drbd_connection_state_change *connection_state_change,
 				    enum drbd_notification_type type)
@@ -1576,10 +1576,10 @@ void notify_connection_state_change(struct sk_buff *skb,
 		.conn_role = connection_state_change->peer_role[NEW],
 	};
 
-	notify_connection_state(skb, seq, connection, &connection_info, type);
+	return notify_connection_state(skb, seq, connection, &connection_info, type);
 }
 
-void notify_device_state_change(struct sk_buff *skb,
+int notify_device_state_change(struct sk_buff *skb,
 				unsigned int seq,
 				struct drbd_device_state_change *device_state_change,
 				enum drbd_notification_type type)
@@ -1589,10 +1589,10 @@ void notify_device_state_change(struct sk_buff *skb,
 		.dev_disk_state = device_state_change->disk_state[NEW],
 	};
 
-	notify_device_state(skb, seq, device, &device_info, type);
+	return notify_device_state(skb, seq, device, &device_info, type);
 }
 
-void notify_peer_device_state_change(struct sk_buff *skb,
+int notify_peer_device_state_change(struct sk_buff *skb,
 				     unsigned int seq,
 				     struct drbd_peer_device_state_change *p,
 				     enum drbd_notification_type type)
@@ -1606,7 +1606,7 @@ void notify_peer_device_state_change(struct sk_buff *skb,
 		.peer_resync_susp_dependency = p->resync_susp_dependency[NEW],
 	};
 
-	notify_peer_device_state(skb, seq, peer_device, &peer_device_info, type);
+	return notify_peer_device_state(skb, seq, peer_device, &peer_device_info, type);
 }
 
 static void broadcast_state_change(struct drbd_state_change *state_change)
@@ -1614,7 +1614,7 @@ static void broadcast_state_change(struct drbd_state_change *state_change)
 	struct drbd_resource_state_change *resource_state_change = &state_change->resource[0];
 	bool resource_state_has_changed;
 	unsigned int n_device, n_connection, n_peer_device, n_peer_devices;
-	void (*last_func)(struct sk_buff *, unsigned int, void *,
+	int (*last_func)(struct sk_buff *, unsigned int, void *,
 			  enum drbd_notification_type) = NULL;
 	void *uninitialized_var(last_arg);
 
diff --git a/drivers/block/drbd/drbd_state_change.h b/drivers/block/drbd/drbd_state_change.h
index ba80f612d6ab..d5b0479bc9a6 100644
--- a/drivers/block/drbd/drbd_state_change.h
+++ b/drivers/block/drbd/drbd_state_change.h
@@ -44,19 +44,19 @@ extern struct drbd_state_change *remember_old_state(struct drbd_resource *, gfp_
 extern void copy_old_to_new_state_change(struct drbd_state_change *);
 extern void forget_state_change(struct drbd_state_change *);
 
-extern void notify_resource_state_change(struct sk_buff *,
+extern int notify_resource_state_change(struct sk_buff *,
 					 unsigned int,
 					 struct drbd_resource_state_change *,
 					 enum drbd_notification_type type);
-extern void notify_connection_state_change(struct sk_buff *,
+extern int notify_connection_state_change(struct sk_buff *,
 					   unsigned int,
 					   struct drbd_connection_state_change *,
 					   enum drbd_notification_type type);
-extern void notify_device_state_change(struct sk_buff *,
+extern int notify_device_state_change(struct sk_buff *,
 				       unsigned int,
 				       struct drbd_device_state_change *,
 				       enum drbd_notification_type type);
-extern void notify_peer_device_state_change(struct sk_buff *,
+extern int notify_peer_device_state_change(struct sk_buff *,
 					    unsigned int,
 					    struct drbd_peer_device_state_change *,
 					    enum drbd_notification_type type);
-- 
2.35.1




  parent reply	other threads:[~2022-04-18 13:43 UTC|newest]

Thread overview: 300+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-18 12:09 [PATCH 4.14 000/284] 4.14.276-rc1 review Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 001/284] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 002/284] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 003/284] netdevice: add the case if dev is NULL Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 004/284] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 005/284] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 006/284] spi: Fix invalid sgs value Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 007/284] spi: Fix erroneous sgs value with min_t() Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 008/284] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 009/284] fuse: fix pipe buffer lifetime for direct_io Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 010/284] tpm: fix reference counting for struct tpm_chip Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 011/284] block: Add a helper to validate the block size Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 012/284] virtio-blk: Use blk_validate_block_size() to validate " Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 013/284] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 014/284] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 015/284] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 016/284] iio: inkern: apply consumer scale when no channel scale is available Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 017/284] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-18 12:09 ` [PATCH 4.14 018/284] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 019/284] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 020/284] Documentation: add link to stable release candidate tree Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 021/284] Documentation: update stable tree link Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-09-07 14:26   ` Eugeniu Rosca
2022-09-08  0:58     ` NeilBrown
2022-09-08  1:09       ` Trond Myklebust
2022-09-08 12:09         ` Eugeniu Rosca
2022-09-11  5:41           ` gregkh
2022-09-11 23:00             ` [PATCH - stable] SUNRPC: use _bh spinlocking on ->transport_lock NeilBrown
2022-09-11 23:03               ` kernel test robot
2022-09-12 10:05               ` Eugeniu Rosca
2022-09-12 10:15             ` [PATCH 4.14 022/284] SUNRPC: avoid race between mod_timer() and del_timer_sync() Eugeniu Rosca
2022-09-11 12:43       ` David Laight
2022-09-11 14:08         ` Trond Myklebust
2022-04-18 12:10 ` [PATCH 4.14 023/284] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 024/284] pinctrl: samsung: drop pin banks references on error paths Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 025/284] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 026/284] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 027/284] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 028/284] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 029/284] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 030/284] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 031/284] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 032/284] qed: display VF trust config Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 033/284] qed: validate and restrict untrusted VFs vlan promisc mode Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 034/284] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 035/284] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 036/284] drbd: fix potential silent data corruption Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 037/284] ACPI: properties: Consistently return -ENOENT if there are no more references Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 038/284] drivers: hamradio: 6pack: fix UAF bug caused by mod_timer() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 039/284] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 040/284] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 041/284] ARM: dts: at91: sama5d2: Fix PMERRLOC resource size Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 042/284] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 043/284] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 044/284] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 045/284] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 046/284] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 047/284] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 048/284] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 049/284] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 050/284] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 051/284] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 052/284] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 053/284] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 054/284] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 055/284] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 056/284] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 057/284] spi: pxa2xx-pci: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 058/284] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 059/284] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 060/284] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 061/284] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 062/284] hwrng: atmel - disable trng on failure path Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 063/284] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 064/284] ACPI: APEI: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 065/284] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 066/284] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 067/284] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 068/284] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 069/284] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 070/284] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 071/284] media: coda: Fix missing put_device() call in coda_get_vdoa_data Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 072/284] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 073/284] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 074/284] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 075/284] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 076/284] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 077/284] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-18 12:10 ` [PATCH 4.14 078/284] ALSA: spi: " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 079/284] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 080/284] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 081/284] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 082/284] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 083/284] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 084/284] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 085/284] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 086/284] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 087/284] media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 088/284] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 089/284] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 090/284] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 091/284] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 092/284] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 093/284] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 094/284] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 095/284] ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 096/284] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 097/284] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 098/284] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 099/284] power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 100/284] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 101/284] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 102/284] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 103/284] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 104/284] dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 105/284] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 106/284] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 107/284] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 108/284] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 109/284] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 110/284] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 111/284] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 112/284] power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 113/284] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 114/284] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 115/284] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 116/284] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 117/284] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 118/284] PCI: Reduce warnings on possible RW1C corruption Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 119/284] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 120/284] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 121/284] vxcan: enable local echo for sent CAN frames Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 122/284] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 123/284] mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 124/284] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 125/284] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 126/284] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 127/284] tcp: ensure PMTU updates are processed during fastopen Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 128/284] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 129/284] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 130/284] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 131/284] staging:iio:adc:ad7280a: Fix handing of device address bit reversing Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 132/284] serial: 8250_mid: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 133/284] serial: 8250: Fix race condition in RTS-after-send handling Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 134/284] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 135/284] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 136/284] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 137/284] clk: loongson1: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-18 12:11 ` [PATCH 4.14 138/284] clk: clps711x: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 139/284] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 140/284] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 141/284] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 142/284] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 143/284] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 144/284] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 145/284] kgdboc: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 146/284] kgdbts: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 147/284] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 148/284] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 149/284] xen: fix is_xen_pmu() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 150/284] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 151/284] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 152/284] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 153/284] NFSv4/pNFS: Fix another issue with a list iterator pointing to the head Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 154/284] lib/test: use after free in register_test_dev_kmod() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 155/284] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 156/284] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 157/284] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 158/284] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 159/284] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 160/284] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 161/284] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 162/284] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 163/284] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-18 12:55   ` syzbot
2022-04-18 12:12 ` [PATCH 4.14 164/284] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 165/284] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 166/284] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 167/284] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 168/284] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 169/284] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 170/284] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 171/284] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 172/284] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 173/284] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 174/284] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 175/284] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 176/284] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 177/284] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 178/284] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 179/284] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 180/284] powerpc/lib/sstep: Fix sthcx instruction Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 181/284] powerpc/lib/sstep: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 182/284] scsi: qla2xxx: Fix warning for missing error code Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 183/284] scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 184/284] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 185/284] ubifs: rename_whiteout: Fix double free for whiteout_ui->data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 186/284] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 187/284] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 188/284] ubifs: rename_whiteout: correct old_dir size computing Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 189/284] can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 190/284] can: mcba_usb: properly check endpoint type Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 191/284] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 192/284] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 193/284] ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 194/284] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 195/284] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 196/284] mm/memcontrol: return 1 from cgroup.memory " Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 197/284] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman
2022-04-18 12:12 ` [PATCH 4.14 198/284] ASoC: topology: Allow TLV control to be either read or write Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 199/284] ARM: dts: spear1340: Update serial node properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 200/284] ARM: dts: spear13xx: Update SPI dma properties Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 201/284] openvswitch: Fixed nd target mask field in the flow dump Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 202/284] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 203/284] ubifs: Rectify space amount budget for mkdir/tmpfile operations Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 204/284] rtc: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 205/284] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 206/284] KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 207/284] ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 208/284] ptp: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 209/284] powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 210/284] scsi: mvsas: Replace snprintf() with sysfs_emit() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 211/284] scsi: bfa: " Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 212/284] power: supply: axp20x_battery: properly report current when discharging Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 213/284] powerpc: Set crashkernel offset to mid of RMA region Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 214/284] PCI: aardvark: Fix support for MSI interrupts Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 215/284] iommu/arm-smmu-v3: fix event handling soft lockup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 216/284] dm ioctl: prevent potential spectre v1 gadget Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 217/284] scsi: pm8001: Fix pm8001_mpi_task_abort_resp() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 218/284] scsi: aha152x: Fix aha152x_setup() __setup handler return value Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 219/284] net/smc: correct settings of RMB window update limit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 220/284] macvtap: advertise link netns via netlink Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 221/284] bnxt_en: Eliminate unintended link toggle during FW reset Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 222/284] MIPS: fix fortify panic when copying asm exception handlers Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 223/284] scsi: libfc: Fix use after free in fc_exch_abts_resp() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 224/284] usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 225/284] xtensa: fix DTC warning unit_address_format Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 226/284] Bluetooth: Fix use after free in hci_send_acl Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 227/284] init/main.c: return 1 from handled __setup() functions Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 228/284] w1: w1_therm: fixes w1_seq for ds28ea00 sensors Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 229/284] SUNRPC/call_alloc: async tasks mustnt block waiting for memory Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 230/284] NFS: swap IO handling is slightly different for O_DIRECT IO Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 231/284] NFS: swap-out must always use STABLE writes Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 232/284] serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 233/284] virtio_console: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 234/284] jfs: prevent NULL deref in diFree Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 235/284] parisc: Fix CPU affinity for Lasi, WAX and Dino chips Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 236/284] ipv6: add missing tx timestamping on IPPROTO_RAW Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 237/284] net: add missing SOF_TIMESTAMPING_OPT_ID support Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 238/284] mm: fix race between MADV_FREE reclaim and blkdev direct IO read Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 239/284] drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 240/284] scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 241/284] net: stmmac: Fix unset max_speed difference between DT and non-DT platforms Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 242/284] drm/imx: Fix memory leak in imx_pd_connector_get_modes Greg Kroah-Hartman
2022-04-18 12:13 ` Greg Kroah-Hartman [this message]
2022-04-18 12:13 ` [PATCH 4.14 244/284] Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 245/284] mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 246/284] mm/mempolicy: fix mpol_new leak in shared_policy_replace Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 247/284] x86/pm: Save the MSR validity status at context setup Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 248/284] x86/speculation: Restore speculation related MSRs during S3 resume Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 249/284] btrfs: fix qgroup reserve overflow the qgroup limit Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 250/284] arm64: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 251/284] perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 252/284] tools build: Use $(shell ) instead of `` to get embedded libperls ccopts Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 253/284] dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 254/284] mm: dont skip swap entry even if zap_details specified Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 255/284] arm64: module: remove (NOLOAD) from linker script Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 256/284] mm/sparsemem: fix mem_section will never be NULL gcc 12 warning Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 257/284] cgroup: Use open-time credentials for process migraton perm checks Greg Kroah-Hartman
2022-04-18 12:13 ` [PATCH 4.14 258/284] cgroup: Allocate cgroup_file_ctx for kernfs_open_file->priv Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 259/284] cgroup: Use open-time cgroup namespace for process migration perm checks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 260/284] xfrm: policy: match with both mark and mask on user interfaces Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 261/284] memory: atmel-ebi: Fix missing of_node_put in atmel_ebi_probe Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 262/284] veth: Ensure eth header is in skbs linear part Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 263/284] gpiolib: acpi: use correct format characters Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 264/284] mlxsw: i2c: Fix initialization error flow Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 265/284] net: ethernet: stmmac: fix altr_tse_pcs function when using a fixed-link Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 266/284] nfc: nci: add flush_workqueue to prevent uaf Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 267/284] cifs: potential buffer overflow in handling symlinks Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 268/284] drm/amd: Add USBC connector ID Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 269/284] drm/amdkfd: Check for potential null return of kmalloc_array() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 270/284] Drivers: hv: vmbus: Prevent load re-ordering when reading ring buffer Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 271/284] scsi: target: tcmu: Fix possible page UAF Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 272/284] scsi: ibmvscsis: Increase INITIAL_SRP_LIMIT to 1024 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 273/284] net: micrel: fix KS8851_MLL Kconfig Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 274/284] ata: libata-core: Disable READ LOG DMA EXT for Samsung 840 EVOs Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 275/284] gpu: ipu-v3: Fix dev_dbg frequency output Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 276/284] scsi: mvsas: Add PCI ID of RocketRaid 2640 Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 277/284] drivers: net: slip: fix NPD bug in sl_tx_timeout() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 278/284] mm, page_alloc: fix build_zonerefs_node() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 279/284] mm: kmemleak: take a full lowmem check in kmemleak_*_phys() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 280/284] gcc-plugins: latent_entropy: use /dev/urandom Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 281/284] ALSA: pcm: Test for "silence" field in struct "pcm_format_data" Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 282/284] ARM: davinci: da850-evm: Avoid NULL pointer dereference Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 283/284] smp: Fix offline cpu check in flush_smp_call_function_queue() Greg Kroah-Hartman
2022-04-18 12:14 ` [PATCH 4.14 284/284] i2c: pasemi: Wait for write xfers to finish Greg Kroah-Hartman
2022-04-19  0:04 ` [PATCH 4.14 000/284] 4.14.276-rc1 review Guenter Roeck
2022-04-19  9:50 ` Naresh Kamboju
2022-04-19 10:14 ` Jon Hunter

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=20220418121218.968741769@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=christoph.boehmwalder@linbit.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lyl2019@mail.ustc.edu.cn \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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