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, Kent Gibson <warthog618@gmail.com>,
	Andy Shevchenko <andy@kernel.org>,
	Bartosz Golaszewski <bartosz.golaszewski@linaro.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 179/236] gpiolib: cdev: relocate debounce_period_us from struct gpio_desc
Date: Tue, 14 May 2024 12:19:01 +0200	[thread overview]
Message-ID: <20240514101027.156140782@linuxfoundation.org> (raw)
In-Reply-To: <20240514101020.320785513@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Kent Gibson <warthog618@gmail.com>

[ Upstream commit 9344e34e7992fec95ce6210d95ac01437dd327ab ]

Store the debounce period for a requested line locally, rather than in
the debounce_period_us field in the gpiolib struct gpio_desc.

Add a global tree of lines containing supplemental line information
to make the debounce period available to be reported by the
GPIO_V2_GET_LINEINFO_IOCTL and the line change notifier.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Reviewed-by: Andy Shevchenko <andy@kernel.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Stable-dep-of: ee0166b637a5 ("gpiolib: cdev: fix uninitialised kfifo")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpio/gpiolib-cdev.c | 165 +++++++++++++++++++++++++++++++-----
 1 file changed, 142 insertions(+), 23 deletions(-)

diff --git a/drivers/gpio/gpiolib-cdev.c b/drivers/gpio/gpiolib-cdev.c
index d2027212901fd..6ee1074d49152 100644
--- a/drivers/gpio/gpiolib-cdev.c
+++ b/drivers/gpio/gpiolib-cdev.c
@@ -5,6 +5,7 @@
 #include <linux/bitmap.h>
 #include <linux/build_bug.h>
 #include <linux/cdev.h>
+#include <linux/cleanup.h>
 #include <linux/compat.h>
 #include <linux/compiler.h>
 #include <linux/device.h>
@@ -21,6 +22,7 @@
 #include <linux/mutex.h>
 #include <linux/pinctrl/consumer.h>
 #include <linux/poll.h>
+#include <linux/rbtree.h>
 #include <linux/seq_file.h>
 #include <linux/spinlock.h>
 #include <linux/timekeeping.h>
@@ -465,6 +467,7 @@ static int linehandle_create(struct gpio_device *gdev, void __user *ip)
 
 /**
  * struct line - contains the state of a requested line
+ * @node: to store the object in supinfo_tree if supplemental
  * @desc: the GPIO descriptor for this line.
  * @req: the corresponding line request
  * @irq: the interrupt triggered in response to events on this GPIO
@@ -477,6 +480,7 @@ static int linehandle_create(struct gpio_device *gdev, void __user *ip)
  * @line_seqno: the seqno for the current edge event in the sequence of
  * events for this line.
  * @work: the worker that implements software debouncing
+ * @debounce_period_us: the debounce period in microseconds
  * @sw_debounced: flag indicating if the software debouncer is active
  * @level: the current debounced physical level of the line
  * @hdesc: the Hardware Timestamp Engine (HTE) descriptor
@@ -485,6 +489,7 @@ static int linehandle_create(struct gpio_device *gdev, void __user *ip)
  * @last_seqno: the last sequence number before debounce period expires
  */
 struct line {
+	struct rb_node node;
 	struct gpio_desc *desc;
 	/*
 	 * -- edge detector specific fields --
@@ -518,6 +523,15 @@ struct line {
 	 * -- debouncer specific fields --
 	 */
 	struct delayed_work work;
+	/*
+	 * debounce_period_us is accessed by debounce_irq_handler() and
+	 * process_hw_ts() which are disabled when modified by
+	 * debounce_setup(), edge_detector_setup() or edge_detector_stop()
+	 * or can live with a stale version when updated by
+	 * edge_detector_update().
+	 * The modifying functions are themselves mutually exclusive.
+	 */
+	unsigned int debounce_period_us;
 	/*
 	 * sw_debounce is accessed by linereq_set_config(), which is the
 	 * only setter, and linereq_get_values(), which can live with a
@@ -550,6 +564,17 @@ struct line {
 #endif /* CONFIG_HTE */
 };
 
+/*
+ * a rbtree of the struct lines containing supplemental info.
+ * Used to populate gpio_v2_line_info with cdev specific fields not contained
+ * in the struct gpio_desc.
+ * A line is determined to contain supplemental information by
+ * line_has_supinfo().
+ */
+static struct rb_root supinfo_tree = RB_ROOT;
+/* covers supinfo_tree */
+static DEFINE_SPINLOCK(supinfo_lock);
+
 /**
  * struct linereq - contains the state of a userspace line request
  * @gdev: the GPIO device the line request pertains to
@@ -562,7 +587,8 @@ struct line {
  * this line request.  Note that this is not used when @num_lines is 1, as
  * the line_seqno is then the same and is cheaper to calculate.
  * @config_mutex: mutex for serializing ioctl() calls to ensure consistency
- * of configuration, particularly multi-step accesses to desc flags.
+ * of configuration, particularly multi-step accesses to desc flags and
+ * changes to supinfo status.
  * @lines: the lines held by this line request, with @num_lines elements.
  */
 struct linereq {
@@ -577,6 +603,103 @@ struct linereq {
 	struct line lines[];
 };
 
+static void supinfo_insert(struct line *line)
+{
+	struct rb_node **new = &(supinfo_tree.rb_node), *parent = NULL;
+	struct line *entry;
+
+	guard(spinlock)(&supinfo_lock);
+
+	while (*new) {
+		entry = container_of(*new, struct line, node);
+
+		parent = *new;
+		if (line->desc < entry->desc) {
+			new = &((*new)->rb_left);
+		} else if (line->desc > entry->desc) {
+			new = &((*new)->rb_right);
+		} else {
+			/* this should never happen */
+			WARN(1, "duplicate line inserted");
+			return;
+		}
+	}
+
+	rb_link_node(&line->node, parent, new);
+	rb_insert_color(&line->node, &supinfo_tree);
+}
+
+static void supinfo_erase(struct line *line)
+{
+	guard(spinlock)(&supinfo_lock);
+
+	rb_erase(&line->node, &supinfo_tree);
+}
+
+static struct line *supinfo_find(struct gpio_desc *desc)
+{
+	struct rb_node *node = supinfo_tree.rb_node;
+	struct line *line;
+
+	while (node) {
+		line = container_of(node, struct line, node);
+		if (desc < line->desc)
+			node = node->rb_left;
+		else if (desc > line->desc)
+			node = node->rb_right;
+		else
+			return line;
+	}
+	return NULL;
+}
+
+static void supinfo_to_lineinfo(struct gpio_desc *desc,
+				struct gpio_v2_line_info *info)
+{
+	struct gpio_v2_line_attribute *attr;
+	struct line *line;
+
+	guard(spinlock)(&supinfo_lock);
+
+	line = supinfo_find(desc);
+	if (!line)
+		return;
+
+	attr = &info->attrs[info->num_attrs];
+	attr->id = GPIO_V2_LINE_ATTR_ID_DEBOUNCE;
+	attr->debounce_period_us = READ_ONCE(line->debounce_period_us);
+	info->num_attrs++;
+}
+
+static inline bool line_has_supinfo(struct line *line)
+{
+	return READ_ONCE(line->debounce_period_us);
+}
+
+/*
+ * Checks line_has_supinfo() before and after the change to avoid unnecessary
+ * supinfo_tree access.
+ * Called indirectly by linereq_create() or linereq_set_config() so line
+ * is already protected from concurrent changes.
+ */
+static void line_set_debounce_period(struct line *line,
+				     unsigned int debounce_period_us)
+{
+	bool was_suppl = line_has_supinfo(line);
+
+	WRITE_ONCE(line->debounce_period_us, debounce_period_us);
+
+	/* if supinfo status is unchanged then we're done */
+	if (line_has_supinfo(line) == was_suppl)
+		return;
+
+	/* supinfo status has changed, so update the tree */
+	if (was_suppl)
+		supinfo_erase(line);
+	else
+		supinfo_insert(line);
+}
+
 #define GPIO_V2_LINE_BIAS_FLAGS \
 	(GPIO_V2_LINE_FLAG_BIAS_PULL_UP | \
 	 GPIO_V2_LINE_FLAG_BIAS_PULL_DOWN | \
@@ -714,7 +837,7 @@ static enum hte_return process_hw_ts(struct hte_ts_data *ts, void *p)
 		line->total_discard_seq++;
 		line->last_seqno = ts->seq;
 		mod_delayed_work(system_wq, &line->work,
-		  usecs_to_jiffies(READ_ONCE(line->desc->debounce_period_us)));
+		  usecs_to_jiffies(READ_ONCE(line->debounce_period_us)));
 	} else {
 		if (unlikely(ts->seq < line->line_seqno))
 			return HTE_CB_HANDLED;
@@ -855,7 +978,7 @@ static irqreturn_t debounce_irq_handler(int irq, void *p)
 	struct line *line = p;
 
 	mod_delayed_work(system_wq, &line->work,
-		usecs_to_jiffies(READ_ONCE(line->desc->debounce_period_us)));
+		usecs_to_jiffies(READ_ONCE(line->debounce_period_us)));
 
 	return IRQ_HANDLED;
 }
@@ -937,7 +1060,7 @@ static int debounce_setup(struct line *line, unsigned int debounce_period_us)
 	/* try hardware */
 	ret = gpiod_set_debounce(line->desc, debounce_period_us);
 	if (!ret) {
-		WRITE_ONCE(line->desc->debounce_period_us, debounce_period_us);
+		line_set_debounce_period(line, debounce_period_us);
 		return ret;
 	}
 	if (ret != -ENOTSUPP)
@@ -1016,8 +1139,7 @@ static void edge_detector_stop(struct line *line)
 	cancel_delayed_work_sync(&line->work);
 	WRITE_ONCE(line->sw_debounced, 0);
 	WRITE_ONCE(line->edflags, 0);
-	if (line->desc)
-		WRITE_ONCE(line->desc->debounce_period_us, 0);
+	line_set_debounce_period(line, 0);
 	/* do not change line->level - see comment in debounced_value() */
 }
 
@@ -1042,7 +1164,7 @@ static int edge_detector_setup(struct line *line,
 		ret = debounce_setup(line, debounce_period_us);
 		if (ret)
 			return ret;
-		WRITE_ONCE(line->desc->debounce_period_us, debounce_period_us);
+		line_set_debounce_period(line, debounce_period_us);
 	}
 
 	/* detection disabled or sw debouncer will provide edge detection */
@@ -1084,12 +1206,12 @@ static int edge_detector_update(struct line *line,
 			gpio_v2_line_config_debounce_period(lc, line_idx);
 
 	if ((active_edflags == edflags) &&
-	    (READ_ONCE(line->desc->debounce_period_us) == debounce_period_us))
+	    (READ_ONCE(line->debounce_period_us) == debounce_period_us))
 		return 0;
 
 	/* sw debounced and still will be...*/
 	if (debounce_period_us && READ_ONCE(line->sw_debounced)) {
-		WRITE_ONCE(line->desc->debounce_period_us, debounce_period_us);
+		line_set_debounce_period(line, debounce_period_us);
 		return 0;
 	}
 
@@ -1566,13 +1688,18 @@ static ssize_t linereq_read(struct file *file, char __user *buf,
 
 static void linereq_free(struct linereq *lr)
 {
+	struct line *line;
 	unsigned int i;
 
 	for (i = 0; i < lr->num_lines; i++) {
-		if (lr->lines[i].desc) {
-			edge_detector_stop(&lr->lines[i]);
-			gpiod_free(lr->lines[i].desc);
-		}
+		line = &lr->lines[i];
+		if (!line->desc)
+			continue;
+
+		edge_detector_stop(line);
+		if (line_has_supinfo(line))
+			supinfo_erase(line);
+		gpiod_free(line->desc);
 	}
 	kfifo_free(&lr->events);
 	kfree(lr->label);
@@ -2239,8 +2366,6 @@ static void gpio_desc_to_lineinfo(struct gpio_desc *desc,
 	struct gpio_chip *gc = desc->gdev->chip;
 	bool ok_for_pinctrl;
 	unsigned long flags;
-	u32 debounce_period_us;
-	unsigned int num_attrs = 0;
 
 	memset(info, 0, sizeof(*info));
 	info->offset = gpio_chip_hwgpio(desc);
@@ -2307,14 +2432,6 @@ static void gpio_desc_to_lineinfo(struct gpio_desc *desc,
 	else if (test_bit(FLAG_EVENT_CLOCK_HTE, &desc->flags))
 		info->flags |= GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE;
 
-	debounce_period_us = READ_ONCE(desc->debounce_period_us);
-	if (debounce_period_us) {
-		info->attrs[num_attrs].id = GPIO_V2_LINE_ATTR_ID_DEBOUNCE;
-		info->attrs[num_attrs].debounce_period_us = debounce_period_us;
-		num_attrs++;
-	}
-	info->num_attrs = num_attrs;
-
 	spin_unlock_irqrestore(&gpio_lock, flags);
 }
 
@@ -2420,6 +2537,7 @@ static int lineinfo_get(struct gpio_chardev_data *cdev, void __user *ip,
 			return -EBUSY;
 	}
 	gpio_desc_to_lineinfo(desc, &lineinfo);
+	supinfo_to_lineinfo(desc, &lineinfo);
 
 	if (copy_to_user(ip, &lineinfo, sizeof(lineinfo))) {
 		if (watch)
@@ -2523,6 +2641,7 @@ static int lineinfo_changed_notify(struct notifier_block *nb,
 	chg.event_type = action;
 	chg.timestamp_ns = ktime_get_ns();
 	gpio_desc_to_lineinfo(desc, &chg.info);
+	supinfo_to_lineinfo(desc, &chg.info);
 
 	ret = kfifo_in_spinlocked(&cdev->events, &chg, 1, &cdev->wait.lock);
 	if (ret)
-- 
2.43.0




  parent reply	other threads:[~2024-05-14 11:36 UTC|newest]

Thread overview: 244+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-14 10:16 [PATCH 6.1 000/236] 6.1.91-rc1 review Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 001/236] dmaengine: pl330: issue_pending waits until WFP state Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 002/236] dmaengine: Revert "dmaengine: pl330: issue_pending waits until WFP state" Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 003/236] wifi: nl80211: dont free NULL coalescing rule Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 004/236] rust: kernel: require `Send` for `Module` implementations Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 005/236] eeprom: at24: Use dev_err_probe for nvmem register failure Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 006/236] eeprom: at24: Probe for DDR3 thermal sensor in the SPD case Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 007/236] eeprom: at24: fix memory corruption race condition Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 008/236] Bluetooth: qca: add support for QCA2066 Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 009/236] mm/hugetlb: add folio support to hugetlb specific flag macros Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 010/236] mm: add private field of first tail to struct page and struct folio Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 011/236] mm/hugetlb: add hugetlb_folio_subpool() helpers Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 012/236] mm/hugetlb: add folio_hstate() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 013/236] mm/hugetlb_cgroup: convert __set_hugetlb_cgroup() to folios Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 014/236] mm/hugetlb_cgroup: convert hugetlb_cgroup_from_page() " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 015/236] mm/hugetlb: convert free_huge_page " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 016/236] mm/hugetlb_cgroup: convert hugetlb_cgroup_uncharge_page() " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 017/236] mm/hugetlb: fix missing hugetlb_lock for resv uncharge Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 018/236] kbuild: refactor host*_flags Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 019/236] kbuild: specify output names separately for each emission type from rustc Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 020/236] cifs: use the least loaded channel for sending requests Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 021/236] smb3: missing lock when picking channel Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 022/236] pinctrl: pinctrl-aspeed-g6: Fix register offset for pinconf of GPIOR-T Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 023/236] pinctrl/meson: fix typo in PDMs pin name Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 024/236] pinctrl: core: delete incorrect free in pinctrl_enable() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 025/236] pinctrl: mediatek: paris: Fix PIN_CONFIG_INPUT_SCHMITT_ENABLE readback Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 026/236] pinctrl: mediatek: paris: Rework support for PIN_CONFIG_{INPUT,OUTPUT}_ENABLE Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 027/236] sunrpc: add a struct rpc_stats arg to rpc_create_args Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 028/236] nfs: expose /proc/net/sunrpc/nfs in net namespaces Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 029/236] nfs: make the rpc_stat per net namespace Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 030/236] nfs: Handle error of rpc_proc_register() in nfs_net_init() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 031/236] pinctrl: Introduce struct pinfunction and PINCTRL_PINFUNCTION() macro Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 032/236] pinctrl: intel: Make use of struct pinfunction and PINCTRL_PINFUNCTION() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 033/236] pinctrl: baytrail: Fix selecting gpio pinctrl state Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 034/236] power: rt9455: hide unused rt9455_boost_voltage_values Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 035/236] power: supply: mt6360_charger: Fix of_match for usb-otg-vbus regulator Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 036/236] pinctrl: devicetree: fix refcount leak in pinctrl_dt_to_map() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 037/236] regulator: mt6360: De-capitalize devicetree regulator subnodes Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 038/236] regulator: change stubbed devm_regulator_get_enable to return Ok Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 039/236] regulator: change devm_regulator_get_enable_optional() stub " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 040/236] bpf, kconfig: Fix DEBUG_INFO_BTF_MODULES Kconfig definition Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 041/236] bpf, skmsg: Fix NULL pointer dereference in sk_psock_skb_ingress_enqueue Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 042/236] nvme: fix warn output about shared namespaces without CONFIG_NVME_MULTIPATH Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 043/236] bpf: Fix a verifier verbose message Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 044/236] spi: introduce new helpers with using modern naming Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 045/236] spi: axi-spi-engine: Convert to platform remove callback returning void Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 046/236] spi: spi-axi-spi-engine: switch to use modern name Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 047/236] spi: spi-axi-spi-engine: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 048/236] spi: axi-spi-engine: simplify driver data allocation Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 049/236] spi: axi-spi-engine: use devm_spi_alloc_host() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 050/236] spi: axi-spi-engine: move msg state to new struct Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 051/236] spi: axi-spi-engine: use common AXI macros Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 052/236] spi: axi-spi-engine: fix version format string Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 053/236] spi: hisi-kunpeng: Delete the dump interface of data registers in debugfs Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 054/236] bpf, arm64: Fix incorrect runtime stats Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 055/236] s390/mm: Fix storage key clearing for guest huge pages Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 056/236] s390/mm: Fix clearing storage keys for " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.1 057/236] xdp: use flags field to disambiguate broadcast redirect Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 058/236] bna: ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 059/236] octeontx2-af: avoid off-by-one read from userspace Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 060/236] nsh: Restore skb->{protocol,data,mac_header} for outer header in nsh_gso_segment() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 061/236] net l2tp: drop flow hash on forward Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 062/236] s390/vdso: Add CFI for RA register to asm macro vdso_func Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 063/236] net: qede: sanitize rc in qede_add_tc_flower_fltr() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 064/236] net: qede: use return from qede_parse_flow_attr() for flower Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 065/236] net: qede: use return from qede_parse_flow_attr() for flow_spec Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 066/236] net: qede: use return from qede_parse_actions() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 067/236] ASoC: meson: axg-fifo: use FIELD helpers Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 068/236] ASoC: meson: axg-fifo: use threaded irq to check periods Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 069/236] ASoC: meson: axg-card: make links nonatomic Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 070/236] ASoC: meson: axg-tdm-interface: manage formatters in trigger Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 071/236] ASoC: meson: cards: select SND_DYNAMIC_MINORS Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 072/236] ALSA: hda: intel-sdw-acpi: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 073/236] s390/cio: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 074/236] cxgb4: Properly lock TX queue for the selftest Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 075/236] net: dsa: mv88e6xxx: Fix number of databases for 88E6141 / 88E6341 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 076/236] spi: fix null pointer dereference within spi_sync Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 077/236] net: bridge: fix multicast-to-unicast with fraglist GSO Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 078/236] net: core: reject skb_copy(_expand) for fraglist GSO skbs Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 079/236] tipc: fix a possible memleak in tipc_buf_append Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 080/236] vxlan: Pull inner IP header in vxlan_rcv() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 081/236] s390/qeth: Fix kernel panic after setting hsuid Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 082/236] drm/panel: ili9341: Respect deferred probe Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 083/236] drm/panel: ili9341: Use predefined error codes Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 084/236] net: gro: add flush check in udp_gro_receive_segment Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 085/236] clk: sunxi-ng: h6: Reparent CPUX during PLL CPUX rate change Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 086/236] powerpc/pseries: replace kmalloc with kzalloc in PLPKS driver Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 087/236] powerpc/pseries: Move PLPKS constants to header file Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 088/236] powerpc/pseries: Implement signed update for PLPKS objects Greg Kroah-Hartman
2024-05-15  0:01   ` Andrew Donnellan
2024-05-15  6:15     ` Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 089/236] powerpc/pseries: make max polling consistent for longer H_CALLs Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 090/236] powerpc/pseries/iommu: LPAR panics during boot up with a frozen PE Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 091/236] KVM: arm64: vgic-v2: Use cpuid from userspace as vcpu_id Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 092/236] KVM: arm64: vgic-v2: Check for non-NULL vCPU in vgic_v2_parse_attr() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 093/236] scsi: lpfc: Move NPIVs transport unregistration to after resource clean up Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 094/236] scsi: lpfc: Update lpfc_ramp_down_queue_handler() logic Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 095/236] scsi: lpfc: Replace hbalock with ndlp lock in lpfc_nvme_unregister_port() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 096/236] scsi: lpfc: Release hbalock before calling lpfc_worker_wake_up() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 097/236] gfs2: Fix invalid metadata access in punch_hole Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 098/236] wifi: mac80211: fix ieee80211_bss_*_flags kernel-doc Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 099/236] wifi: cfg80211: fix rdev_dump_mpp() arguments order Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 100/236] net: mark racy access on sk->sk_rcvbuf Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 101/236] scsi: mpi3mr: Avoid memcpy field-spanning write WARNING Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 102/236] scsi: bnx2fc: Remove spin_lock_bh while releasing resources after upload Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 103/236] btrfs: return accurate error code on open failure in open_fs_devices() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 104/236] bpf: Check bloom filter map value size Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 105/236] kbuild: Disable KCSAN for autogenerated *.mod.c intermediaries Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 106/236] scsi: ufs: core: WLUN suspend dev/link state error recovery Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 107/236] ALSA: line6: Zero-initialize message buffers Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 108/236] block: fix overflow in blk_ioctl_discard() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 109/236] net: bcmgenet: Reset RBUF on first open Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 110/236] ata: sata_gemini: Check clk_enable() result Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 111/236] firewire: ohci: mask bus reset interrupts between ISR and bottom half Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 112/236] tools/power turbostat: Fix added raw MSR output Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 113/236] tools/power turbostat: Increase the limit for fd opened Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 114/236] tools/power turbostat: Fix Bzy_MHz documentation typo Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 115/236] btrfs: make btrfs_clear_delalloc_extent() free delalloc reserve Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 116/236] btrfs: always clear PERTRANS metadata during commit Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.1 117/236] memblock tests: fix undefined reference to `early_pfn_to_nid Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 118/236] memblock tests: fix undefined reference to `panic Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 119/236] memblock tests: fix undefined reference to `BIT Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 120/236] scsi: target: Fix SELinux error when systemd-modules loads the target module Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 121/236] blk-iocost: avoid out of bounds shift Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 122/236] gpu: host1x: Do not setup DMA for virtual devices Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 123/236] MIPS: scall: Save thread_info.syscall unconditionally on entry Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 124/236] tools/power/turbostat: Fix uncore frequency file string Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 125/236] drm/amdgpu: Refine IB schedule error logging Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 126/236] selftests: timers: Fix valid-adjtimex signed left-shift undefined behavior Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 127/236] Drivers: hv: vmbus: Track decrypted status in vmbus_gpadl Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 128/236] uio_hv_generic: Dont free decrypted memory Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 129/236] Drivers: hv: vmbus: Dont free ring buffers that couldnt be re-encrypted Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 130/236] iommu: mtk: fix module autoloading Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 131/236] fs/9p: only translate RWX permissions for plain 9P2000 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 132/236] fs/9p: translate O_TRUNC into OTRUNC Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 133/236] 9p: explicitly deny setlease attempts Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 134/236] gpio: wcove: Use -ENOTSUPP consistently Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 135/236] gpio: crystalcove: " Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 136/236] clk: Dont hold prepare_lock when calling kref_put() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 137/236] fs/9p: drop inodes immediately on non-.L too Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 138/236] drm/nouveau/dp: Dont probe eDP ports twice harder Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 139/236] net:usb:qmi_wwan: support Rolling modules Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 140/236] kbuild: rust: avoid creating temporary files Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 141/236] spi: Merge spi_controller.{slave,target}_abort() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 142/236] perf unwind-libunwind: Fix base address for .eh_frame Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 143/236] perf unwind-libdw: Handle JIT-generated DSOs properly Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 144/236] qibfs: fix dentry leak Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 145/236] xfrm: Preserve vlan tags for transport mode software GRO Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 146/236] ARM: 9381/1: kasan: clear stale stack poison Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 147/236] tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 148/236] tcp: Use refcount_inc_not_zero() in tcp_twsk_unique() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 149/236] Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 150/236] Bluetooth: msft: fix slab-use-after-free in msft_do_close() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 151/236] Bluetooth: l2cap: fix null-ptr-deref in l2cap_chan_timeout Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 152/236] net: ks8851: Queue RX packets in IRQ handler instead of disabling BHs Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 153/236] rtnetlink: Correct nested IFLA_VF_VLAN_LIST attribute validation Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 154/236] hwmon: (corsair-cpro) Use a separate buffer for sending commands Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 155/236] hwmon: (corsair-cpro) Use complete_all() instead of complete() in ccp_raw_event() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 156/236] hwmon: (corsair-cpro) Protect ccp->wait_input_report with a spinlock Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 157/236] phonet: fix rtm_phonet_notify() skb allocation Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 158/236] net: bridge: fix corrupted ethernet header on multicast-to-unicast Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 159/236] ipv6: fib6_rules: avoid possible NULL dereference in fib6_rule_action() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 160/236] timers: Get rid of del_singleshot_timer_sync() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 161/236] timers: Rename del_timer() to timer_delete() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 162/236] net-sysfs: convert dev->operstate reads to lockless ones Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 163/236] hsr: Simplify code for announcing HSR nodes timer setup Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 164/236] ipv6: annotate data-races around cnf.disable_ipv6 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 165/236] ipv6: prevent NULL dereference in ip6_output() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 166/236] net/smc: fix neighbour and rtable leak in smc_ib_find_route() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 167/236] net: hns3: using user configure after hardware reset Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 168/236] net: hns3: direct return when receive a unknown mailbox message Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 169/236] net: hns3: change type of numa_node_mask as nodemask_t Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 170/236] net: hns3: release PTP resources if pf initialization failed Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 171/236] net: hns3: use appropriate barrier function after setting a bit value Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 172/236] net: hns3: fix port vlan filter not disabled issue Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 173/236] net: hns3: fix kernel crash when devlink reload during initialization Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 174/236] drm/meson: dw-hdmi: power up phy on device init Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 175/236] drm/meson: dw-hdmi: add bandgap setting for g12 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 176/236] drm/connector: Add \n to message about demoting connector force-probes Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.1 177/236] dm/amd/pm: Fix problems with reboot/shutdown for some SMU 13.0.4/13.0.11 users Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 178/236] gpiolib: cdev: Add missing header(s) Greg Kroah-Hartman
2024-05-14 10:19 ` Greg Kroah-Hartman [this message]
2024-05-14 10:19 ` [PATCH 6.1 180/236] gpiolib: cdev: fix uninitialised kfifo Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 181/236] drm/amd/display: Atom Integrated System Info v2_2 for DCN35 Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 182/236] MAINTAINERS: add leah to 6.1 MAINTAINERS file Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 183/236] drm/amdgpu: once more fix the call oder in amdgpu_ttm_move() v2 Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 184/236] btrfs: fix kvcalloc() arguments order in btrfs_ioctl_send() Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 185/236] firewire: nosy: ensure user_length is taken into account when fetching packet contents Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 186/236] Reapply "drm/qxl: simplify qxl_fence_wait" Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 187/236] rust: error: Rename to_kernel_errno() -> to_errno() Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 188/236] rust: fix regexp in scripts/is_rust_module.sh Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 189/236] btf, scripts: rust: drop is_rust_module.sh Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 190/236] rust: module: place generated init_module() function in .init.text Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 191/236] rust: macros: fix soundness issue in `module!` macro Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 192/236] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 193/236] usb: typec: ucsi: Fix connector check on init Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 194/236] usb: Fix regression caused by invalid ep0 maxpacket in virtual SuperSpeed device Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 195/236] usb: ohci: Prevent missed ohci interrupts Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 196/236] USB: core: Fix access violation during port device removal Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 197/236] usb: gadget: composite: fix OS descriptors w_value logic Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 198/236] usb: gadget: f_fs: Fix a race condition when processing setup packets Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 199/236] usb: xhci-plat: Dont include xhci.h Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 200/236] usb: dwc3: core: Prevent phy suspend during init Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 201/236] usb: typec: tcpm: unregister existing source caps before re-registration Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 202/236] usb: typec: tcpm: Check for port partner validity before consuming it Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 203/236] ALSA: hda/realtek: Fix mute led of HP Laptop 15-da3001TU Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 204/236] btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 205/236] mm/slab: make __free(kfree) accept error pointers Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 206/236] mptcp: ensure snd_nxt is properly initialized on connect Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 207/236] dt-bindings: iio: health: maxim,max30102: fix compatible check Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 208/236] iio:imu: adis16475: Fix sync mode setting Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 209/236] iio: accel: mxc4005: Interrupt handling fixes Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 210/236] kmsan: compiler_types: declare __no_sanitize_or_inline Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 211/236] tipc: fix UAF in error path Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 212/236] net: bcmgenet: synchronize EXT_RGMII_OOB_CTRL access Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 213/236] net: bcmgenet: synchronize use of bcmgenet_set_rx_mode() Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 214/236] net: bcmgenet: synchronize UMAC_CMD access Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 215/236] ASoC: tegra: Fix DSPK 16-bit playback Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 216/236] ASoC: ti: davinci-mcasp: Fix race condition during probe Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 217/236] dyndbg: fix old BUG_ON in >control parser Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 218/236] slimbus: qcom-ngd-ctrl: Add timeout for wait operation Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 219/236] mei: me: add lunar lake point M DID Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 220/236] drm/amdkfd: dont allow mapping the MMIO HDP page with large pages Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 221/236] drm/vmwgfx: Fix invalid reads in fence signaled events Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 222/236] drm/i915/bios: Fix parsing backlight BDB data Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 223/236] drm/amd/display: Handle Y carry-over in VCP X.Y calculation Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 224/236] net: fix out-of-bounds access in ops_init Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 225/236] hwmon: (pmbus/ucd9000) Increase delay from 250 to 500us Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 226/236] mm: use memalloc_nofs_save() in page_cache_ra_order() Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 227/236] regulator: core: fix debugfs creation regression Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 228/236] spi: microchip-core-qspi: fix setting spi bus clock rate Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 229/236] ksmbd: off ipv6only for both ipv4/ipv6 binding Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 230/236] ksmbd: avoid to send duplicate lease break notifications Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 231/236] ksmbd: do not grant v2 lease if parent lease key and epoch are not set Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 232/236] Bluetooth: qca: add missing firmware sanity checks Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 233/236] Bluetooth: qca: fix NVM configuration parsing Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 234/236] Bluetooth: qca: fix info leak when fetching board id Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 235/236] Bluetooth: qca: fix info leak when fetching fw build id Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.1 236/236] Bluetooth: qca: fix firmware check error path Greg Kroah-Hartman
2024-05-14 17:53 ` [PATCH 6.1 000/236] 6.1.91-rc1 review Miguel Ojeda
2024-05-14 19:45 ` Pavel Machek
2024-05-14 20:08 ` Allen
2024-05-15 14:41 ` Yann Sionneau
2024-05-15 15:07 ` 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=20240514101027.156140782@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andy@kernel.org \
    --cc=bartosz.golaszewski@linaro.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=warthog618@gmail.com \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is 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.