All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Stefano Brivio <sbrivio@redhat.com>,
	Pablo Neira Ayuso <pablo@netfilter.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 264/313] netfilter: nft_set_rbtree: Switch to node list walk for overlap detection
Date: Mon, 30 Jan 2023 14:51:39 +0100	[thread overview]
Message-ID: <20230130134349.033870740@linuxfoundation.org> (raw)
In-Reply-To: <20230130134336.532886729@linuxfoundation.org>

From: Pablo Neira Ayuso <pablo@netfilter.org>

[ Upstream commit c9e6978e2725a7d4b6cd23b2facd3f11422c0643 ]

...instead of a tree descent, which became overly complicated in an
attempt to cover cases where expired or inactive elements would affect
comparisons with the new element being inserted.

Further, it turned out that it's probably impossible to cover all those
cases, as inactive nodes might entirely hide subtrees consisting of a
complete interval plus a node that makes the current insertion not
overlap.

To speed up the overlap check, descent the tree to find a greater
element that is closer to the key value to insert. Then walk down the
node list for overlap detection. Starting the overlap check from
rb_first() unconditionally is slow, it takes 10 times longer due to the
full linear traversal of the list.

Moreover, perform garbage collection of expired elements when walking
down the node list to avoid bogus overlap reports.

For the insertion operation itself, this essentially reverts back to the
implementation before commit 7c84d41416d8 ("netfilter: nft_set_rbtree:
Detect partial overlaps on insertion"), except that cases of complete
overlap are already handled in the overlap detection phase itself, which
slightly simplifies the loop to find the insertion point.

Based on initial patch from Stefano Brivio, including text from the
original patch description too.

Fixes: 7c84d41416d8 ("netfilter: nft_set_rbtree: Detect partial overlaps on insertion")
Reviewed-by: Stefano Brivio <sbrivio@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/netfilter/nft_set_rbtree.c | 316 ++++++++++++++++++++-------------
 1 file changed, 189 insertions(+), 127 deletions(-)

diff --git a/net/netfilter/nft_set_rbtree.c b/net/netfilter/nft_set_rbtree.c
index 7325bee7d144..217225e13faf 100644
--- a/net/netfilter/nft_set_rbtree.c
+++ b/net/netfilter/nft_set_rbtree.c
@@ -38,10 +38,12 @@ static bool nft_rbtree_interval_start(const struct nft_rbtree_elem *rbe)
 	return !nft_rbtree_interval_end(rbe);
 }
 
-static bool nft_rbtree_equal(const struct nft_set *set, const void *this,
-			     const struct nft_rbtree_elem *interval)
+static int nft_rbtree_cmp(const struct nft_set *set,
+			  const struct nft_rbtree_elem *e1,
+			  const struct nft_rbtree_elem *e2)
 {
-	return memcmp(this, nft_set_ext_key(&interval->ext), set->klen) == 0;
+	return memcmp(nft_set_ext_key(&e1->ext), nft_set_ext_key(&e2->ext),
+		      set->klen);
 }
 
 static bool __nft_rbtree_lookup(const struct net *net, const struct nft_set *set,
@@ -52,7 +54,6 @@ static bool __nft_rbtree_lookup(const struct net *net, const struct nft_set *set
 	const struct nft_rbtree_elem *rbe, *interval = NULL;
 	u8 genmask = nft_genmask_cur(net);
 	const struct rb_node *parent;
-	const void *this;
 	int d;
 
 	parent = rcu_dereference_raw(priv->root.rb_node);
@@ -62,12 +63,11 @@ static bool __nft_rbtree_lookup(const struct net *net, const struct nft_set *set
 
 		rbe = rb_entry(parent, struct nft_rbtree_elem, node);
 
-		this = nft_set_ext_key(&rbe->ext);
-		d = memcmp(this, key, set->klen);
+		d = memcmp(nft_set_ext_key(&rbe->ext), key, set->klen);
 		if (d < 0) {
 			parent = rcu_dereference_raw(parent->rb_left);
 			if (interval &&
-			    nft_rbtree_equal(set, this, interval) &&
+			    !nft_rbtree_cmp(set, rbe, interval) &&
 			    nft_rbtree_interval_end(rbe) &&
 			    nft_rbtree_interval_start(interval))
 				continue;
@@ -215,154 +215,216 @@ static void *nft_rbtree_get(const struct net *net, const struct nft_set *set,
 	return rbe;
 }
 
+static int nft_rbtree_gc_elem(const struct nft_set *__set,
+			      struct nft_rbtree *priv,
+			      struct nft_rbtree_elem *rbe)
+{
+	struct nft_set *set = (struct nft_set *)__set;
+	struct rb_node *prev = rb_prev(&rbe->node);
+	struct nft_rbtree_elem *rbe_prev;
+	struct nft_set_gc_batch *gcb;
+
+	gcb = nft_set_gc_batch_check(set, NULL, GFP_ATOMIC);
+	if (!gcb)
+		return -ENOMEM;
+
+	/* search for expired end interval coming before this element. */
+	do {
+		rbe_prev = rb_entry(prev, struct nft_rbtree_elem, node);
+		if (nft_rbtree_interval_end(rbe_prev))
+			break;
+
+		prev = rb_prev(prev);
+	} while (prev != NULL);
+
+	rb_erase(&rbe_prev->node, &priv->root);
+	rb_erase(&rbe->node, &priv->root);
+	atomic_sub(2, &set->nelems);
+
+	nft_set_gc_batch_add(gcb, rbe);
+	nft_set_gc_batch_complete(gcb);
+
+	return 0;
+}
+
+static bool nft_rbtree_update_first(const struct nft_set *set,
+				    struct nft_rbtree_elem *rbe,
+				    struct rb_node *first)
+{
+	struct nft_rbtree_elem *first_elem;
+
+	first_elem = rb_entry(first, struct nft_rbtree_elem, node);
+	/* this element is closest to where the new element is to be inserted:
+	 * update the first element for the node list path.
+	 */
+	if (nft_rbtree_cmp(set, rbe, first_elem) < 0)
+		return true;
+
+	return false;
+}
+
 static int __nft_rbtree_insert(const struct net *net, const struct nft_set *set,
 			       struct nft_rbtree_elem *new,
 			       struct nft_set_ext **ext)
 {
-	bool overlap = false, dup_end_left = false, dup_end_right = false;
+	struct nft_rbtree_elem *rbe, *rbe_le = NULL, *rbe_ge = NULL;
+	struct rb_node *node, *parent, **p, *first = NULL;
 	struct nft_rbtree *priv = nft_set_priv(set);
 	u8 genmask = nft_genmask_next(net);
-	struct nft_rbtree_elem *rbe;
-	struct rb_node *parent, **p;
-	int d;
+	int d, err;
 
-	/* Detect overlaps as we descend the tree. Set the flag in these cases:
-	 *
-	 * a1. _ _ __>|  ?_ _ __|  (insert end before existing end)
-	 * a2. _ _ ___|  ?_ _ _>|  (insert end after existing end)
-	 * a3. _ _ ___? >|_ _ __|  (insert start before existing end)
-	 *
-	 * and clear it later on, as we eventually reach the points indicated by
-	 * '?' above, in the cases described below. We'll always meet these
-	 * later, locally, due to tree ordering, and overlaps for the intervals
-	 * that are the closest together are always evaluated last.
-	 *
-	 * b1. _ _ __>|  !_ _ __|  (insert end before existing start)
-	 * b2. _ _ ___|  !_ _ _>|  (insert end after existing start)
-	 * b3. _ _ ___! >|_ _ __|  (insert start after existing end, as a leaf)
-	 *            '--' no nodes falling in this range
-	 * b4.          >|_ _   !  (insert start before existing start)
-	 *
-	 * Case a3. resolves to b3.:
-	 * - if the inserted start element is the leftmost, because the '0'
-	 *   element in the tree serves as end element
-	 * - otherwise, if an existing end is found immediately to the left. If
-	 *   there are existing nodes in between, we need to further descend the
-	 *   tree before we can conclude the new start isn't causing an overlap
-	 *
-	 * or to b4., which, preceded by a3., means we already traversed one or
-	 * more existing intervals entirely, from the right.
-	 *
-	 * For a new, rightmost pair of elements, we'll hit cases b3. and b2.,
-	 * in that order.
-	 *
-	 * The flag is also cleared in two special cases:
-	 *
-	 * b5. |__ _ _!|<_ _ _   (insert start right before existing end)
-	 * b6. |__ _ >|!__ _ _   (insert end right after existing start)
-	 *
-	 * which always happen as last step and imply that no further
-	 * overlapping is possible.
-	 *
-	 * Another special case comes from the fact that start elements matching
-	 * an already existing start element are allowed: insertion is not
-	 * performed but we return -EEXIST in that case, and the error will be
-	 * cleared by the caller if NLM_F_EXCL is not present in the request.
-	 * This way, request for insertion of an exact overlap isn't reported as
-	 * error to userspace if not desired.
-	 *
-	 * However, if the existing start matches a pre-existing start, but the
-	 * end element doesn't match the corresponding pre-existing end element,
-	 * we need to report a partial overlap. This is a local condition that
-	 * can be noticed without need for a tracking flag, by checking for a
-	 * local duplicated end for a corresponding start, from left and right,
-	 * separately.
+	/* Descend the tree to search for an existing element greater than the
+	 * key value to insert that is greater than the new element. This is the
+	 * first element to walk the ordered elements to find possible overlap.
 	 */
-
 	parent = NULL;
 	p = &priv->root.rb_node;
 	while (*p != NULL) {
 		parent = *p;
 		rbe = rb_entry(parent, struct nft_rbtree_elem, node);
-		d = memcmp(nft_set_ext_key(&rbe->ext),
-			   nft_set_ext_key(&new->ext),
-			   set->klen);
+		d = nft_rbtree_cmp(set, rbe, new);
+
 		if (d < 0) {
 			p = &parent->rb_left;
-
-			if (nft_rbtree_interval_start(new)) {
-				if (nft_rbtree_interval_end(rbe) &&
-				    nft_set_elem_active(&rbe->ext, genmask) &&
-				    !nft_set_elem_expired(&rbe->ext) && !*p)
-					overlap = false;
-			} else {
-				if (dup_end_left && !*p)
-					return -ENOTEMPTY;
-
-				overlap = nft_rbtree_interval_end(rbe) &&
-					  nft_set_elem_active(&rbe->ext,
-							      genmask) &&
-					  !nft_set_elem_expired(&rbe->ext);
-
-				if (overlap) {
-					dup_end_right = true;
-					continue;
-				}
-			}
 		} else if (d > 0) {
-			p = &parent->rb_right;
+			if (!first ||
+			    nft_rbtree_update_first(set, rbe, first))
+				first = &rbe->node;
 
-			if (nft_rbtree_interval_end(new)) {
-				if (dup_end_right && !*p)
-					return -ENOTEMPTY;
-
-				overlap = nft_rbtree_interval_end(rbe) &&
-					  nft_set_elem_active(&rbe->ext,
-							      genmask) &&
-					  !nft_set_elem_expired(&rbe->ext);
-
-				if (overlap) {
-					dup_end_left = true;
-					continue;
-				}
-			} else if (nft_set_elem_active(&rbe->ext, genmask) &&
-				   !nft_set_elem_expired(&rbe->ext)) {
-				overlap = nft_rbtree_interval_end(rbe);
-			}
+			p = &parent->rb_right;
 		} else {
-			if (nft_rbtree_interval_end(rbe) &&
-			    nft_rbtree_interval_start(new)) {
+			if (nft_rbtree_interval_end(rbe))
 				p = &parent->rb_left;
-
-				if (nft_set_elem_active(&rbe->ext, genmask) &&
-				    !nft_set_elem_expired(&rbe->ext))
-					overlap = false;
-			} else if (nft_rbtree_interval_start(rbe) &&
-				   nft_rbtree_interval_end(new)) {
+			else
 				p = &parent->rb_right;
+		}
+	}
+
+	if (!first)
+		first = rb_first(&priv->root);
+
+	/* Detect overlap by going through the list of valid tree nodes.
+	 * Values stored in the tree are in reversed order, starting from
+	 * highest to lowest value.
+	 */
+	for (node = first; node != NULL; node = rb_next(node)) {
+		rbe = rb_entry(node, struct nft_rbtree_elem, node);
+
+		if (!nft_set_elem_active(&rbe->ext, genmask))
+			continue;
 
-				if (nft_set_elem_active(&rbe->ext, genmask) &&
-				    !nft_set_elem_expired(&rbe->ext))
-					overlap = false;
-			} else if (nft_set_elem_active(&rbe->ext, genmask) &&
-				   !nft_set_elem_expired(&rbe->ext)) {
-				*ext = &rbe->ext;
-				return -EEXIST;
-			} else {
-				overlap = false;
-				if (nft_rbtree_interval_end(rbe))
-					p = &parent->rb_left;
-				else
-					p = &parent->rb_right;
+		/* perform garbage collection to avoid bogus overlap reports. */
+		if (nft_set_elem_expired(&rbe->ext)) {
+			err = nft_rbtree_gc_elem(set, priv, rbe);
+			if (err < 0)
+				return err;
+
+			continue;
+		}
+
+		d = nft_rbtree_cmp(set, rbe, new);
+		if (d == 0) {
+			/* Matching end element: no need to look for an
+			 * overlapping greater or equal element.
+			 */
+			if (nft_rbtree_interval_end(rbe)) {
+				rbe_le = rbe;
+				break;
+			}
+
+			/* first element that is greater or equal to key value. */
+			if (!rbe_ge) {
+				rbe_ge = rbe;
+				continue;
+			}
+
+			/* this is a closer more or equal element, update it. */
+			if (nft_rbtree_cmp(set, rbe_ge, new) != 0) {
+				rbe_ge = rbe;
+				continue;
 			}
+
+			/* element is equal to key value, make sure flags are
+			 * the same, an existing more or equal start element
+			 * must not be replaced by more or equal end element.
+			 */
+			if ((nft_rbtree_interval_start(new) &&
+			     nft_rbtree_interval_start(rbe_ge)) ||
+			    (nft_rbtree_interval_end(new) &&
+			     nft_rbtree_interval_end(rbe_ge))) {
+				rbe_ge = rbe;
+				continue;
+			}
+		} else if (d > 0) {
+			/* annotate element greater than the new element. */
+			rbe_ge = rbe;
+			continue;
+		} else if (d < 0) {
+			/* annotate element less than the new element. */
+			rbe_le = rbe;
+			break;
 		}
+	}
 
-		dup_end_left = dup_end_right = false;
+	/* - new start element matching existing start element: full overlap
+	 *   reported as -EEXIST, cleared by caller if NLM_F_EXCL is not given.
+	 */
+	if (rbe_ge && !nft_rbtree_cmp(set, new, rbe_ge) &&
+	    nft_rbtree_interval_start(rbe_ge) == nft_rbtree_interval_start(new)) {
+		*ext = &rbe_ge->ext;
+		return -EEXIST;
+	}
+
+	/* - new end element matching existing end element: full overlap
+	 *   reported as -EEXIST, cleared by caller if NLM_F_EXCL is not given.
+	 */
+	if (rbe_le && !nft_rbtree_cmp(set, new, rbe_le) &&
+	    nft_rbtree_interval_end(rbe_le) == nft_rbtree_interval_end(new)) {
+		*ext = &rbe_le->ext;
+		return -EEXIST;
 	}
 
-	if (overlap)
+	/* - new start element with existing closest, less or equal key value
+	 *   being a start element: partial overlap, reported as -ENOTEMPTY.
+	 *   Anonymous sets allow for two consecutive start element since they
+	 *   are constant, skip them to avoid bogus overlap reports.
+	 */
+	if (!nft_set_is_anonymous(set) && rbe_le &&
+	    nft_rbtree_interval_start(rbe_le) && nft_rbtree_interval_start(new))
+		return -ENOTEMPTY;
+
+	/* - new end element with existing closest, less or equal key value
+	 *   being a end element: partial overlap, reported as -ENOTEMPTY.
+	 */
+	if (rbe_le &&
+	    nft_rbtree_interval_end(rbe_le) && nft_rbtree_interval_end(new))
 		return -ENOTEMPTY;
 
+	/* - new end element with existing closest, greater or equal key value
+	 *   being an end element: partial overlap, reported as -ENOTEMPTY
+	 */
+	if (rbe_ge &&
+	    nft_rbtree_interval_end(rbe_ge) && nft_rbtree_interval_end(new))
+		return -ENOTEMPTY;
+
+	/* Accepted element: pick insertion point depending on key value */
+	parent = NULL;
+	p = &priv->root.rb_node;
+	while (*p != NULL) {
+		parent = *p;
+		rbe = rb_entry(parent, struct nft_rbtree_elem, node);
+		d = nft_rbtree_cmp(set, rbe, new);
+
+		if (d < 0)
+			p = &parent->rb_left;
+		else if (d > 0)
+			p = &parent->rb_right;
+		else if (nft_rbtree_interval_end(rbe))
+			p = &parent->rb_left;
+		else
+			p = &parent->rb_right;
+	}
+
 	rb_link_node_rcu(&new->node, parent, p);
 	rb_insert_color(&new->node, &priv->root);
 	return 0;
-- 
2.39.0




  parent reply	other threads:[~2023-01-30 14:08 UTC|newest]

Thread overview: 327+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-30 13:47 [PATCH 6.1 000/313] 6.1.9-rc1 review Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 001/313] memory: tegra: Remove clients SID override programming Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 002/313] memory: atmel-sdramc: Fix missing clk_disable_unprepare in atmel_ramc_probe() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 003/313] memory: mvebu-devbus: Fix missing clk_disable_unprepare in mvebu_devbus_probe() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 004/313] arm64: dts: qcom: sc8280xp: fix primary USB-DP PHY reset Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 005/313] dmaengine: qcom: gpi: Set link_rx bit on GO TRE for rx operation Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 006/313] dmaengine: ti: k3-udma: Do conditional decrement of UDMA_CHAN_RT_PEER_BCNT_REG Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 007/313] soc: imx: imx8mp-blk-ctrl: enable global pixclk with HDMI_TX_PHY PD Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 008/313] arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 009/313] ARM: dts: imx6ul-pico-dwarf: Use clock-frequency Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 010/313] ARM: dts: imx7d-pico: " Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 011/313] ARM: dts: imx6qdl-gw560x: Remove incorrect uart-has-rtscts Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 012/313] arm64: dts: verdin-imx8mm: fix dahlia audio playback Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 013/313] arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 014/313] arm64: dts: verdin-imx8mm: fix dev board audio playback Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 015/313] arm64: dts: imx93-11x11-evk: correct clock and strobe pad setting Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 016/313] ARM: imx: add missing of_node_put() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 017/313] soc: imx: imx8mp-blk-ctrl: dont set power device name Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 018/313] arm64: dts: imx8mp: Fix missing GPC Interrupt Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 019/313] arm64: dts: imx8mp: Fix power-domain typo Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 020/313] arm64: dts: imx8mp-evk: pcie0-refclk cosmetic cleanup Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 021/313] HID: intel_ish-hid: Add check for ishtp_dma_tx_map Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 022/313] arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 023/313] soc: imx8m: Fix incorrect check for of_clk_get_by_name() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 024/313] reset: ti-sci: honor TI_SCI_PROTOCOL setting when not COMPILE_TEST Greg Kroah-Hartman
2023-01-30 13:47   ` Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 025/313] reset: uniphier-glue: Fix possible null-ptr-deref Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 026/313] EDAC/highbank: Fix memory leak in highbank_mc_probe() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 027/313] firmware: arm_scmi: Harden shared memory access in fetch_response Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 028/313] firmware: arm_scmi: Harden shared memory access in fetch_notification Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 029/313] firmware: arm_scmi: Fix virtio channels cleanup on shutdown Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 030/313] interconnect: qcom: msm8996: Provide UFS clocks to A2NoC Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 031/313] interconnect: qcom: msm8996: Fix regmap max_register values Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 032/313] HID: amd_sfh: Fix warning unwind goto Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 033/313] tomoyo: fix broken dependency on *.conf.default Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 034/313] blk-mq: move the srcu_struct used for quiescing to the tagset Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 035/313] blk-crypto: pass a gendisk to blk_crypto_sysfs_{,un}register Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 036/313] block: factor out a blk_debugfs_remove helper Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 037/313] block: fix error unwinding in blk_register_queue Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 038/313] block: untangle request_queue refcounting from sysfs Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 039/313] block: mark blk_put_queue as potentially blocking Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 040/313] block: Drop spurious might_sleep() from blk_put_queue() Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 041/313] RDMA/rxe: Fix inaccurate constants in rxe_type_info Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 042/313] RDMA/rxe: Prevent faulty rkey generation Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 043/313] erofs: fix kvcalloc() misuse with __GFP_NOFAIL Greg Kroah-Hartman
2023-01-30 13:47 ` [PATCH 6.1 044/313] arm64: dts: marvell: AC5/AC5X: Fix address for UART1 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 045/313] RDMA/core: Fix ib block iterator counter overflow Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 046/313] IB/hfi1: Reject a zero-length user expected buffer Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 047/313] IB/hfi1: Reserve user expected TIDs Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 048/313] IB/hfi1: Fix expected receive setup error exit issues Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 049/313] IB/hfi1: Immediately remove invalid memory from hardware Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 050/313] IB/hfi1: Remove user expected buffer invalidate race Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 051/313] affs: initialize fsdata in affs_truncate() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 052/313] PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 053/313] arm64: dts: qcom: msm8992: Dont use sfpb mutex Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 054/313] arm64: dts: qcom: msm8992-libra: Fix the memory map Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 055/313] kbuild: export top-level LDFLAGS_vmlinux only to scripts/Makefile.vmlinux Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 056/313] kbuild: fix make modules error when CONFIG_DEBUG_INFO_BTF_MODULES=y Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 057/313] phy: ti: fix Kconfig warning and operator precedence Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 058/313] drm/msm/gpu: Fix potential double-free Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 059/313] NFSD: fix use-after-free in nfsd4_ssc_setup_dul() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 060/313] ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 061/313] drm/vc4: bo: Fix drmm_mutex_init memory hog Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 062/313] phy: usb: sunplus: Fix potential null-ptr-deref in sp_usb_phy_probe() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 063/313] bpf: hash map, avoid deadlock with suitable hash mask Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 064/313] amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 065/313] amd-xgbe: Delay AN timeout during KR training Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 066/313] bpf: Fix pointer-leak due to insufficient speculative store bypass mitigation Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 067/313] drm/vc4: bo: Fix unused variable warning Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 068/313] phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in rockchip_usb2phy_power_on() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 069/313] net: nfc: Fix use-after-free in local_cleanup() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 070/313] net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 071/313] net: enetc: avoid deadlock in enetc_tx_onestep_tstamp() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 072/313] net: lan966x: add missing fwnode_handle_put() for ports node Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 073/313] sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 074/313] gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 075/313] gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 076/313] wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 077/313] pinctrl: rockchip: fix reading pull type on rk3568 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 078/313] net: stmmac: Fix queue statistics reading Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 079/313] net/sched: sch_taprio: fix possible use-after-free Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 080/313] l2tp: convert l2tp_tunnel_list to idr Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 081/313] l2tp: close all race conditions in l2tp_tunnel_register() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 082/313] net: usb: sr9700: Handle negative len Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 083/313] net: mdio: validate parameter addr in mdiobus_get_phy() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 084/313] HID: check empty report_list in hid_validate_values() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 085/313] HID: check empty report_list in bigben_probe() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 086/313] net: stmmac: fix invalid call to mdiobus_get_phy() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 087/313] pinctrl: rockchip: fix mux route data for rk3568 Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 088/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp15xx-dhcor-som Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 089/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp15xx-dhcom-som Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 090/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp157c-emstamp-argon Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 091/313] ARM: dts: stm32: Fix qspi pinctrl phandle for stm32mp151a-prtt1l Greg Kroah-Hartman
2023-01-30 13:48   ` Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 092/313] HID: revert CHERRY_MOUSE_000C quirk Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 093/313] block/rnbd-clt: fix wrong max ID in ida_alloc_max Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 094/313] usb: ucsi: Ensure connector delayed work items are flushed Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 095/313] usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 096/313] usb: gadget: f_fs: Ensure ep0req is dequeued before free_request Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 097/313] netfilter: conntrack: handle tcp challenge acks during connection reuse Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 098/313] Bluetooth: Fix a buffer overflow in mgmt_mesh_add() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 099/313] Bluetooth: hci_conn: Fix memory leaks Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 100/313] Bluetooth: hci_sync: fix memory leak in hci_update_adv_data() Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 101/313] Bluetooth: ISO: Avoid circular locking dependency Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 102/313] Bluetooth: ISO: Fix possible " Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 103/313] Bluetooth: hci_event: Fix Invalid wait context Greg Kroah-Hartman
2023-01-30 13:48 ` [PATCH 6.1 104/313] Bluetooth: Fix possible deadlock in rfcomm_sk_state_change Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 105/313] net: ipa: disable ipa interrupt during suspend Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 106/313] net/mlx5e: Avoid false lock dependency warning on tc_ht even more Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 107/313] net/mlx5: E-switch, Fix setting of reserved fields on MODIFY_SCHEDULING_ELEMENT Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 108/313] net/mlx5e: QoS, Fix wrongfully setting parent_element_id " Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 109/313] net/mlx5e: Set decap action based on attr for sample Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 110/313] net/mlx5: E-switch, Fix switchdev mode after devlink reload Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 111/313] net: mlx5: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 112/313] drm/panfrost: fix GENERIC_ATOMIC64 dependency Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 113/313] dmaengine: Fix double increment of client_count in dma_chan_get() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 114/313] net: macb: fix PTP TX timestamp failure due to packet padding Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 115/313] virtio-net: correctly enable callback during start_xmit Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 116/313] l2tp: prevent lockdep issue in l2tp_tunnel_register() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 117/313] HID: betop: check shape of output reports Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 118/313] drm/i915/selftests: Unwind hugepages to drop wakeref on error Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 119/313] cifs: fix potential deadlock in cache_refresh_path() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 120/313] dmaengine: xilinx_dma: call of_node_put() when breaking out of for_each_child_of_node() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 121/313] dmaengine: tegra: Fix memory leak in terminate_all() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 122/313] phy: phy-can-transceiver: Skip warning if no "max-bitrate" Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 123/313] drm/amd/display: fix issues with driver unload Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 124/313] net: sched: gred: prevent races when adding offloads to stats Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 125/313] nvme-pci: fix timeout request state check Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 126/313] tcp: avoid the lookup process failing to get sk in ehash table Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 127/313] usb: dwc3: fix extcon dependency Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 128/313] ptdma: pt_core_execute_cmd() should use spinlock Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 129/313] device property: fix of node refcount leak in fwnode_graph_get_next_endpoint() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 130/313] w1: fix deadloop in __w1_remove_master_device() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 131/313] w1: fix WARNING after calling w1_process() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 132/313] driver core: Fix test_async_probe_init saves device in wrong array Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 133/313] selftests/net: toeplitz: fix race on tpacket_v3 block close Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 134/313] net: dsa: microchip: ksz9477: port map correction in ALU table entry register Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 135/313] thermal: Validate new state in cur_state_store() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 136/313] thermal/core: fix error code in __thermal_cooling_device_register() Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 137/313] thermal: core: call put_device() only after device_register() fails Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 138/313] net: stmmac: enable all safety features by default Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 139/313] bnxt: Do not read past the end of test names Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 140/313] tcp: fix rate_app_limited to default to 1 Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 141/313] scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 142/313] ASoC: SOF: pm: Set target state earlier Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 143/313] ASoC: SOF: pm: Always tear down pipelines before DSP suspend Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 144/313] ASoC: SOF: Add FW state to debugfs Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 145/313] ASoC: amd: yc: Add Razer Blade 14 2022 into DMI table Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 146/313] spi: cadence: Fix busy cycles calculation Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 147/313] cpufreq: CPPC: Add u64 casts to avoid overflowing Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 148/313] cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 149/313] ASoC: mediatek: mt8186: support rt5682s_max98360 Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 150/313] ASoC: mediatek: mt8186: Add machine support for max98357a Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 151/313] ASoC: amd: yc: Add ASUS M5402RA into DMI table Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 152/313] ASoC: support machine driver with max98360 Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 153/313] kcsan: test: dont put the expect array on the stack Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 154/313] cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 155/313] ASoC: fsl_micfil: Correct the number of steps on SX controls Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 156/313] drm/msm/a6xx: Avoid gx gbit halt during rpm suspend Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 157/313] net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 158/313] drm: Add orientation quirk for Lenovo ideapad D330-10IGL Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 159/313] s390/debug: add _ASM_S390_ prefix to header guard Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 160/313] s390: expicitly align _edata and _end symbols on page boundary Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 161/313] xen/pvcalls: free active map buffer on pvcalls_front_free_map Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 162/313] perf/x86/cstate: Add Meteor Lake support Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 163/313] perf/x86/msr: " Greg Kroah-Hartman
2023-01-30 13:49 ` [PATCH 6.1 164/313] perf/x86/msr: Add Emerald Rapids Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 165/313] perf/x86/intel/uncore: " Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 166/313] nolibc: fix fd_set type Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 167/313] tools/nolibc: Fix S_ISxxx macros Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 168/313] tools/nolibc: fix missing includes causing build issues at -O0 Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 169/313] tools/nolibc: prevent gcc from making memset() loop over itself Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 170/313] cpufreq: armada-37xx: stop using 0 as NULL pointer Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 171/313] ASoC: fsl_ssi: Rename AC97 streams to avoid collisions with AC97 CODEC Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 172/313] ASoC: fsl-asoc-card: Fix naming of AC97 CODEC widgets Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 173/313] ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 174/313] drm/amdkfd: Add sync after creating vram bo Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 175/313] drm/amdkfd: Fix NULL pointer error for GC 11.0.1 on mGPU Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 176/313] cifs: fix potential memory leaks in session setup Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 177/313] spi: spidev: remove debug messages that access spidev->spi without locking Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 178/313] KVM: s390: interrupt: use READ_ONCE() before cmpxchg() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 179/313] scsi: hisi_sas: Use abort task set to reset SAS disks when discovered Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 180/313] scsi: hisi_sas: Set a port invalid only if there are no devices attached when refreshing port id Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 181/313] r8152: add vendor/device ID pair for Microsoft Devkit Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 182/313] platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 183/313] platform/x86: asus-nb-wmi: Add alternate mapping for KEY_CAMERA Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 184/313] platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 185/313] platform/x86: asus-wmi: Add quirk wmi_ignore_fan Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 186/313] platform/x86: asus-wmi: Ignore fan on E410MA Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 187/313] platform/x86: simatic-ipc: correct name of a model Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 188/313] platform/x86: simatic-ipc: add another model Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 189/313] lockref: stop doing cpu_relax in the cmpxchg loop Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 190/313] ata: pata_cs5535: Dont build on UML Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 191/313] firmware: coreboot: Check size of table entry and use flex-array Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 192/313] btrfs: zoned: enable metadata over-commit for non-ZNS setup Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 193/313] Revert "selftests/bpf: check null propagation only neither reg is PTR_TO_BTF_ID" Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 194/313] arm64: efi: Recover from synchronous exceptions occurring in firmware Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 195/313] arm64: efi: Avoid workqueue to check whether EFI runtime is live Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 196/313] arm64: efi: Account for the EFI runtime stack in stack unwinder Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 197/313] Bluetooth: hci_sync: cancel cmd_timer if hci_open failed Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 198/313] drm/i915: Allow panel fixed modes to have differing sync polarities Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 199/313] drm/i915: Allow alternate fixed modes always for eDP Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 200/313] drm/amdgpu: complete gfxoff allow signal during suspend without delay Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 201/313] io_uring/msg_ring: fix remote queue to disabled ring Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 202/313] wifi: mac80211: Proper mark iTXQs for resumption Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 203/313] wifi: mac80211: Fix iTXQ AMPDU fragmentation handling Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 204/313] sched/fair: Check if prev_cpu has highest spare cap in feec() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 205/313] sched/uclamp: Fix a uninitialized variable warnings Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 206/313] vfio/type1: Respect IOMMU reserved regions in vfio_test_domain_fgsp() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 207/313] scsi: hpsa: Fix allocation size for scsi_host_alloc() Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 208/313] kvm/vfio: Fix potential deadlock on vfio group_lock Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 209/313] nfsd: dont free files unconditionally in __nfsd_file_cache_purge Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 210/313] module: Dont wait for GOING modules Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 211/313] ftrace: Export ftrace_free_filter() to modules Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 212/313] tracing: Make sure trace_printk() can output as soon as it can be used Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 213/313] trace_events_hist: add check for return value of create_hist_field Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 214/313] ftrace/scripts: Update the instructions for ftrace-bisect.sh Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 215/313] cifs: Fix oops due to uncleared server->smbd_conn in reconnect Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 216/313] ksmbd: add max connections parameter Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 217/313] ksmbd: do not sign response to session request for guest login Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 218/313] ksmbd: downgrade ndr version error message to debug Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 219/313] ksmbd: limit pdu length size according to connection status Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 220/313] ovl: fix tmpfile leak Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 221/313] ovl: fail on invalid uid/gid mapping at copy up Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 222/313] io_uring/net: cache provided buffer group value for multishot receives Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 223/313] KVM: x86/vmx: Do not skip segment attributes if unusable bit is set Greg Kroah-Hartman
2023-01-30 13:50 ` [PATCH 6.1 224/313] KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 225/313] scsi: ufs: core: Fix devfreq deadlocks Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 226/313] riscv: fix -Wundef warning for CONFIG_RISCV_BOOT_SPINWAIT Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 227/313] thermal: intel: int340x: Protect trip temperature from concurrent updates Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 228/313] regulator: dt-bindings: samsung,s2mps14: add lost samsung,ext-control-gpios Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 229/313] ipv6: fix reachability confirmation with proxy_ndp Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 230/313] ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 231/313] EDAC/device: Respect any driver-supplied workqueue polling value Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 232/313] EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_infos pvt_info Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 233/313] platform/x86: thinkpad_acpi: Fix profile modes on Intel platforms Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 234/313] drm/display/dp_mst: Correct the kref of port Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 235/313] drm/amd/pm: add missing AllowIHInterrupt message mapping for SMU13.0.0 Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 236/313] drm/amdgpu: remove unconditional trap enable on add gfx11 queues Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 237/313] drm/amdgpu/display/mst: Fix mst_state->pbn_div and slot count assignments Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 238/313] drm/amdgpu/display/mst: limit payload to be updated one by one Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 239/313] drm/amdgpu/display/mst: update mst_mgr relevant variable when long HPD Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 240/313] io_uring: inline io_req_task_work_add() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 241/313] io_uring: inline __io_req_complete_post() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 242/313] io_uring: hold locks for io_req_complete_failed Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 243/313] io_uring: use io_req_task_complete() in timeout Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 244/313] io_uring: remove io_req_tw_post_queue Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 245/313] io_uring: inline __io_req_complete_put() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 246/313] net: mana: Fix IRQ name - add PCI and queue number Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 247/313] io_uring: always prep_async for drain requests Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 248/313] i2c: designware: use casting of u64 in clock multiplication to avoid overflow Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 249/313] i2c: designware: Fix unbalanced suspended flag Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 250/313] drm/drm_vma_manager: Add drm_vma_node_allow_once() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 251/313] drm/i915: Fix a memory leak with reused mmap_offset Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 252/313] iavf: fix temporary deadlock and failure to set MAC address Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 253/313] iavf: schedule watchdog immediately when changing primary MAC Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 254/313] netlink: prevent potential spectre v1 gadgets Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 255/313] net: fix UaF in netns ops registration error path Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 256/313] net: fec: Use page_pool_put_full_page when freeing rx buffers Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 257/313] nvme: simplify transport specific device attribute handling Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 258/313] nvme: consolidate setting the tagset flags Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 259/313] nvme-fc: fix initialization order Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 260/313] drm/i915/selftest: fix intel_selftest_modify_policy argument types Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 261/313] ACPI: video: Add backlight=native DMI quirk for HP Pavilion g6-1d80nr Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 262/313] ACPI: video: Add backlight=native DMI quirk for HP EliteBook 8460p Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 263/313] ACPI: video: Add backlight=native DMI quirk for Asus U46E Greg Kroah-Hartman
2023-01-30 13:51 ` Greg Kroah-Hartman [this message]
2023-01-30 13:51 ` [PATCH 6.1 265/313] netfilter: nft_set_rbtree: skip elements in transaction from garbage collection Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 266/313] netlink: annotate data races around nlk->portid Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 267/313] netlink: annotate data races around dst_portid and dst_group Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 268/313] netlink: annotate data races around sk_state Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 269/313] ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 270/313] ipv4: prevent potential spectre v1 gadget in fib_metrics_match() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 271/313] net: dsa: microchip: fix probe of I2C-connected KSZ8563 Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 272/313] net: ethernet: adi: adin1110: Fix multicast offloading Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 273/313] netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 274/313] netfilter: conntrack: fix bug in for_each_sctp_chunk Greg Kroah-Hartman
2023-01-30 14:16   ` Pablo Neira Ayuso
2023-01-30 13:51 ` [PATCH 6.1 275/313] netrom: Fix use-after-free of a listening socket Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 276/313] platform/x86: asus-wmi: Fix kbd_dock_devid tablet-switch reporting Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 277/313] platform/x86: apple-gmux: Move port defines to apple-gmux.h Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 278/313] platform/x86: apple-gmux: Add apple_gmux_detect() helper Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 279/313] ACPI: video: Fix apple gmux detection Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 280/313] tracing/osnoise: Use built-in RCU list checking Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 281/313] net/sched: sch_taprio: do not schedule in taprio_reset() Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 282/313] sctp: fail if no bound addresses can be used for a given scope Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 283/313] riscv/kprobe: Fix instruction simulation of JALR Greg Kroah-Hartman
2023-01-30 13:51 ` [PATCH 6.1 284/313] nvme: fix passthrough csi check Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 285/313] gpio: mxc: Unlock on error path in mxc_flip_edge() Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 286/313] gpio: ep93xx: Fix port F hwirq numbers in handler Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 287/313] net: ravb: Fix lack of register setting after system resumed for Gen3 Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 288/313] net: ravb: Fix possible hang if RIS2_QFF1 happen Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 289/313] net: mctp: add an explicit reference from a mctp_sk_key to sock Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 290/313] net: mctp: move expiry timer delete to unhash Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 291/313] net: mctp: hold key reference when looking up a general key Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 292/313] net: mctp: mark socks as dead on unhash, prevent re-add Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 293/313] thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type() Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 294/313] riscv: Move call to init_cpu_topology() to later initialization stage Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 295/313] net/tg3: resolve deadlock in tg3_reset_task() during EEH Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 296/313] tsnep: Fix TX queue stop/wake for multiple queues Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 297/313] net: mdio-mux-meson-g12a: force internal PHY off on mux switch Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 298/313] Partially revert "perf/arm-cmn: Optimise DTC counter accesses" Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 299/313] block: ublk: move ublk_chr_class destroying after devices are removed Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 300/313] treewide: fix up files incorrectly marked executable Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 301/313] tools: gpio: fix -c option of gpio-event-mon Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 302/313] Fix up more non-executable files marked executable Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 303/313] Revert "mm/compaction: fix set skip in fast_find_migrateblock" Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 304/313] Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode" Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 305/313] Input: i8042 - add Clevo PCX0DX to i8042 quirk table Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 306/313] x86/sev: Add SEV-SNP guest feature negotiation support Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 307/313] acpi: Fix suspend with Xen PV Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 308/313] dt-bindings: riscv: fix underscore requirement for multi-letter extensions Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 309/313] dt-bindings: riscv: fix single letter canonical order Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 310/313] x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 311/313] dt-bindings: i2c: renesas,rzv2m: Fix SoC specific string Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 312/313] netfilter: conntrack: unify established states for SCTP paths Greg Kroah-Hartman
2023-01-30 13:52 ` [PATCH 6.1 313/313] perf/x86/amd: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2023-01-30 16:41 ` [PATCH 6.1 000/313] 6.1.9-rc1 review Guenter Roeck
2023-01-30 18:14   ` Greg Kroah-Hartman
2023-01-30 17:49 ` Conor Dooley
2023-01-30 18:14   ` Greg Kroah-Hartman
2023-01-30 19:23 ` Florian Fainelli
2023-01-30 21:05 ` Shuah Khan

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=20230130134349.033870740@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=pablo@netfilter.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=sbrivio@redhat.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.