public inbox for stable@vger.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.6 217/301] gpiolib: cdev: relocate debounce_period_us from struct gpio_desc
Date: Tue, 14 May 2024 12:18:08 +0200	[thread overview]
Message-ID: <20240514101040.451976569@linuxfoundation.org> (raw)
In-Reply-To: <20240514101032.219857983@linuxfoundation.org>

6.6-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 ebf5b8ef3b5dc..7037dc47ca0e0 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>
@@ -461,6 +463,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
@@ -473,6 +476,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
@@ -481,6 +485,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 --
@@ -514,6 +519,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
@@ -546,6 +560,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
@@ -559,7 +584,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 {
@@ -575,6 +601,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 | \
@@ -742,7 +865,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;
@@ -883,7 +1006,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;
 }
@@ -966,7 +1089,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)
@@ -1051,8 +1174,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() */
 }
 
@@ -1078,7 +1200,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 */
@@ -1126,12 +1248,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;
 	}
 
@@ -1606,6 +1728,7 @@ static ssize_t linereq_read(struct file *file, char __user *buf,
 
 static void linereq_free(struct linereq *lr)
 {
+	struct line *line;
 	unsigned int i;
 
 	if (lr->device_unregistered_nb.notifier_call)
@@ -1613,10 +1736,14 @@ static void linereq_free(struct linereq *lr)
 						   &lr->device_unregistered_nb);
 
 	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);
@@ -2316,8 +2443,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);
@@ -2384,14 +2509,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);
 }
 
@@ -2498,6 +2615,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)
@@ -2596,6 +2714,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:20 UTC|newest]

Thread overview: 312+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-14 10:14 [PATCH 6.6 000/301] 6.6.31-rc1 review Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 001/301] dmaengine: pl330: issue_pending waits until WFP state Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 002/301] dmaengine: Revert "dmaengine: pl330: issue_pending waits until WFP state" Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 003/301] nvmem: add explicit config option to read old syntax fixed OF cells Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 004/301] mtd: limit OTP NVMEM cell parse to non-NAND devices Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 005/301] rust: module: place generated init_module() function in .init.text Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 006/301] rust: macros: fix soundness issue in `module!` macro Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 007/301] wifi: nl80211: dont free NULL coalescing rule Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 008/301] rust: kernel: require `Send` for `Module` implementations Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 009/301] eeprom: at24: Probe for DDR3 thermal sensor in the SPD case Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 010/301] eeprom: at24: fix memory corruption race condition Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 011/301] Bluetooth: qca: add support for QCA2066 Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 012/301] pinctrl: pinctrl-aspeed-g6: Fix register offset for pinconf of GPIOR-T Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 013/301] pinctrl/meson: fix typo in PDMs pin name Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 014/301] pinctrl: core: delete incorrect free in pinctrl_enable() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 015/301] pinctrl: mediatek: paris: Fix PIN_CONFIG_INPUT_SCHMITT_ENABLE readback Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 016/301] pinctrl: mediatek: paris: Rework support for PIN_CONFIG_{INPUT,OUTPUT}_ENABLE Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 017/301] sunrpc: add a struct rpc_stats arg to rpc_create_args Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 018/301] nfs: expose /proc/net/sunrpc/nfs in net namespaces Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 019/301] nfs: make the rpc_stat per net namespace Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 020/301] nfs: Handle error of rpc_proc_register() in nfs_net_init() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 021/301] pinctrl: baytrail: Fix selecting gpio pinctrl state Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 022/301] power: rt9455: hide unused rt9455_boost_voltage_values Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 023/301] power: supply: mt6360_charger: Fix of_match for usb-otg-vbus regulator Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 024/301] pinctrl: devicetree: fix refcount leak in pinctrl_dt_to_map() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 025/301] regulator: mt6360: De-capitalize devicetree regulator subnodes Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 026/301] regulator: change stubbed devm_regulator_get_enable to return Ok Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 027/301] regulator: change devm_regulator_get_enable_optional() stub " Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.6 028/301] bpf, kconfig: Fix DEBUG_INFO_BTF_MODULES Kconfig definition Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 029/301] bpf, skmsg: Fix NULL pointer dereference in sk_psock_skb_ingress_enqueue Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 030/301] regmap: Add regmap_read_bypassed() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 031/301] ASoC: SOF: Introduce generic names for IPC types Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 032/301] ASoC: SOF: Intel: add default firmware library path for LNL Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 033/301] nvme: fix warn output about shared namespaces without CONFIG_NVME_MULTIPATH Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 034/301] bpf: Fix a verifier verbose message Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 035/301] spi: spi-axi-spi-engine: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 036/301] spi: axi-spi-engine: simplify driver data allocation Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 037/301] spi: axi-spi-engine: use devm_spi_alloc_host() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 038/301] spi: axi-spi-engine: move msg state to new struct Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 039/301] spi: axi-spi-engine: use common AXI macros Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 040/301] spi: axi-spi-engine: fix version format string Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 041/301] spi: hisi-kunpeng: Delete the dump interface of data registers in debugfs Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 042/301] bpf, arm64: Fix incorrect runtime stats Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 043/301] riscv, bpf: " Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 044/301] ASoC: Intel: avs: Set name of control as in topology Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 045/301] ASoC: codecs: wsa881x: set clk_stop_mode1 flag Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 046/301] s390/mm: Fix storage key clearing for guest huge pages Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 047/301] s390/mm: Fix clearing storage keys for " Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 048/301] xdp: use flags field to disambiguate broadcast redirect Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 049/301] bna: ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 050/301] octeontx2-af: avoid off-by-one read from userspace Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 051/301] nsh: Restore skb->{protocol,data,mac_header} for outer header in nsh_gso_segment() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 052/301] net l2tp: drop flow hash on forward Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 053/301] s390/vdso: Add CFI for RA register to asm macro vdso_func Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 054/301] Fix a potential infinite loop in extract_user_to_sg() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 055/301] ALSA: emu10k1: fix E-MU card dock presence monitoring Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 056/301] ALSA: emu10k1: factor out snd_emu1010_load_dock_firmware() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 057/301] ALSA: emu10k1: move the whole GPIO event handling to the workqueue Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 058/301] ALSA: emu10k1: fix E-MU dock initialization Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 059/301] net: qede: sanitize rc in qede_add_tc_flower_fltr() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 060/301] net: qede: use return from qede_parse_flow_attr() for flower Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 061/301] net: qede: use return from qede_parse_flow_attr() for flow_spec Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 062/301] net: qede: use return from qede_parse_actions() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 063/301] vxlan: Fix racy device stats updates Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 064/301] vxlan: Add missing VNI filter counter update in arp_reduce() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 065/301] ASoC: meson: axg-fifo: use FIELD helpers Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 066/301] ASoC: meson: axg-fifo: use threaded irq to check periods Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 067/301] ASoC: meson: axg-card: make links nonatomic Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 068/301] ASoC: meson: axg-tdm-interface: manage formatters in trigger Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 069/301] ASoC: meson: cards: select SND_DYNAMIC_MINORS Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 070/301] ALSA: hda: intel-sdw-acpi: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 071/301] s390/cio: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 072/301] cxgb4: Properly lock TX queue for the selftest Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 073/301] net: dsa: mv88e6xxx: Fix number of databases for 88E6141 / 88E6341 Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 074/301] drm/amdgpu: fix doorbell regression Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 075/301] spi: fix null pointer dereference within spi_sync Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 076/301] net: bridge: fix multicast-to-unicast with fraglist GSO Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 077/301] net: core: reject skb_copy(_expand) for fraglist GSO skbs Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 078/301] rxrpc: Clients must accept conn from any address Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 079/301] tipc: fix a possible memleak in tipc_buf_append Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 080/301] vxlan: Pull inner IP header in vxlan_rcv() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 081/301] s390/qeth: Fix kernel panic after setting hsuid Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 082/301] drm/panel: ili9341: Correct use of device property APIs Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 083/301] drm/panel: ili9341: Respect deferred probe Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 084/301] drm/panel: ili9341: Use predefined error codes Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 085/301] ipv4: Fix uninit-value access in __ip_make_skb() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 086/301] net: gro: parse ipv6 ext headers without frag0 invalidation Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 087/301] net: gro: fix udp bad offset in socket lookup by adding {inner_}network_offset to napi_gro_cb Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.6 088/301] net: gro: add flush check in udp_gro_receive_segment Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 089/301] clk: qcom: smd-rpm: Restore msm8976 num_clk Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 090/301] clk: sunxi-ng: h6: Reparent CPUX during PLL CPUX rate change Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 091/301] powerpc/pseries: make max polling consistent for longer H_CALLs Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 092/301] powerpc/pseries/iommu: LPAR panics during boot up with a frozen PE Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 093/301] swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 094/301] KVM: arm64: vgic-v2: Use cpuid from userspace as vcpu_id Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 095/301] KVM: arm64: vgic-v2: Check for non-NULL vCPU in vgic_v2_parse_attr() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 096/301] scsi: ufs: core: Fix MCQ MAC configuration Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 097/301] scsi: lpfc: Move NPIVs transport unregistration to after resource clean up Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 098/301] scsi: lpfc: Remove IRQF_ONESHOT flag from threaded IRQ handling Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 099/301] scsi: lpfc: Update lpfc_ramp_down_queue_handler() logic Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 100/301] scsi: lpfc: Replace hbalock with ndlp lock in lpfc_nvme_unregister_port() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 101/301] scsi: lpfc: Release hbalock before calling lpfc_worker_wake_up() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 102/301] scsi: lpfc: Use a dedicated lock for ras_fwlog state Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 103/301] gfs2: Fix invalid metadata access in punch_hole Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 104/301] wifi: mac80211: fix ieee80211_bss_*_flags kernel-doc Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 105/301] wifi: cfg80211: fix rdev_dump_mpp() arguments order Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 106/301] wifi: mac80211: fix prep_connection error path Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 107/301] wifi: iwlwifi: read txq->read_ptr under lock Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 108/301] wifi: iwlwifi: mvm: guard against invalid STA ID on removal Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 109/301] net: mark racy access on sk->sk_rcvbuf Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 110/301] scsi: mpi3mr: Avoid memcpy field-spanning write WARNING Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 111/301] scsi: bnx2fc: Remove spin_lock_bh while releasing resources after upload Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 112/301] btrfs: return accurate error code on open failure in open_fs_devices() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 113/301] drm/amdkfd: Check cgroup when returning DMABuf info Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 114/301] drm/amdkfd: range check cp bad op exception interrupts Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 115/301] bpf: Check bloom filter map value size Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 116/301] selftests/ftrace: Fix event filter target_func selection Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 117/301] kbuild: Disable KCSAN for autogenerated *.mod.c intermediaries Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 118/301] ASoC: SOF: Intel: hda-dsp: Skip IMR boot on ACE platforms in case of S3 suspend Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 119/301] regulator: tps65132: Add of_match table Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 120/301] scsi: ufs: core: WLUN suspend dev/link state error recovery Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 121/301] scsi: libsas: Align SMP request allocation to ARCH_DMA_MINALIGN Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 122/301] scsi: ufs: core: Fix MCQ mode dev command timeout Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 123/301] ALSA: line6: Zero-initialize message buffers Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 124/301] block: fix overflow in blk_ioctl_discard() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 125/301] net: bcmgenet: Reset RBUF on first open Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 126/301] vboxsf: explicitly deny setlease attempts Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 127/301] ata: sata_gemini: Check clk_enable() result Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 128/301] firewire: ohci: mask bus reset interrupts between ISR and bottom half Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 129/301] tools/power turbostat: Fix added raw MSR output Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 130/301] tools/power turbostat: Increase the limit for fd opened Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 131/301] tools/power turbostat: Fix Bzy_MHz documentation typo Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 132/301] tools/power turbostat: Print ucode revision only if valid Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 133/301] tools/power turbostat: Fix warning upon failed /dev/cpu_dma_latency read Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 134/301] btrfs: make btrfs_clear_delalloc_extent() free delalloc reserve Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 135/301] btrfs: always clear PERTRANS metadata during commit Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 136/301] memblock tests: fix undefined reference to `early_pfn_to_nid Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 137/301] memblock tests: fix undefined reference to `panic Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 138/301] memblock tests: fix undefined reference to `BIT Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 139/301] scsi: target: Fix SELinux error when systemd-modules loads the target module Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 140/301] scsi: hisi_sas: Handle the NCQ error returned by D2H frame Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 141/301] blk-iocost: avoid out of bounds shift Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 142/301] gpu: host1x: Do not setup DMA for virtual devices Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 143/301] MIPS: scall: Save thread_info.syscall unconditionally on entry Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 144/301] tools/power/turbostat: Fix uncore frequency file string Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 145/301] drm/amdgpu: Refine IB schedule error logging Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 146/301] drm/amdgpu: implement IRQ_STATE_ENABLE for SDMA v4.4.2 Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 147/301] drm/amd/display: Skip on writeback when its not applicable Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.6 148/301] drm/amdgpu: Fix VCN allocation in CPX partition Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 149/301] amd/amdkfd: sync all devices to wait all processes being evicted Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 150/301] selftests: timers: Fix valid-adjtimex signed left-shift undefined behavior Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 151/301] Drivers: hv: vmbus: Leak pages if set_memory_encrypted() fails Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 152/301] Drivers: hv: vmbus: Track decrypted status in vmbus_gpadl Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 153/301] hv_netvsc: Dont free decrypted memory Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 154/301] uio_hv_generic: " Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 155/301] Drivers: hv: vmbus: Dont free ring buffers that couldnt be re-encrypted Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 156/301] smb3: fix broken reconnect when password changing on the server by allowing password rotation Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 157/301] iommu: mtk: fix module autoloading Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 158/301] fs/9p: only translate RWX permissions for plain 9P2000 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 159/301] fs/9p: translate O_TRUNC into OTRUNC Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 160/301] fs/9p: fix the cache always being enabled on files with qid flags Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 161/301] 9p: explicitly deny setlease attempts Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 162/301] powerpc/crypto/chacha-p10: Fix failure on non Power10 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 163/301] gpio: wcove: Use -ENOTSUPP consistently Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 164/301] gpio: crystalcove: " Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 165/301] clk: Dont hold prepare_lock when calling kref_put() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 166/301] fs/9p: drop inodes immediately on non-.L too Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 167/301] gpio: lpc32xx: fix module autoloading Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 168/301] drm/nouveau/dp: Dont probe eDP ports twice harder Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 169/301] platform/x86: ISST: Add Granite Rapids-D to HPM CPU list Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 170/301] drm/radeon: silence UBSAN warning (v3) Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 171/301] net:usb:qmi_wwan: support Rolling modules Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 172/301] blk-iocost: do not WARN if iocg was already offlined Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 173/301] SUNRPC: add a missing rpc_stat for TCP TLS Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 174/301] qibfs: fix dentry leak Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 175/301] xfrm: Preserve vlan tags for transport mode software GRO Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 176/301] ARM: 9381/1: kasan: clear stale stack poison Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 177/301] tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 178/301] tcp: Use refcount_inc_not_zero() in tcp_twsk_unique() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 179/301] Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 180/301] Bluetooth: msft: fix slab-use-after-free in msft_do_close() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 181/301] Bluetooth: HCI: Fix potential null-ptr-deref Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 182/301] Bluetooth: l2cap: fix null-ptr-deref in l2cap_chan_timeout Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 183/301] net: ks8851: Queue RX packets in IRQ handler instead of disabling BHs Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 184/301] rtnetlink: Correct nested IFLA_VF_VLAN_LIST attribute validation Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 185/301] hwmon: (corsair-cpro) Use a separate buffer for sending commands Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 186/301] hwmon: (corsair-cpro) Use complete_all() instead of complete() in ccp_raw_event() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 187/301] hwmon: (corsair-cpro) Protect ccp->wait_input_report with a spinlock Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 188/301] phonet: fix rtm_phonet_notify() skb allocation Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 189/301] nfc: nci: Fix kcov check in nci_rx_work() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 190/301] net: bridge: fix corrupted ethernet header on multicast-to-unicast Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 191/301] ipv6: Fix potential uninit-value access in __ip6_make_skb() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 192/301] selftests/net: convert test_bridge_neigh_suppress.sh to run it in unique namespace Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 193/301] selftests: test_bridge_neigh_suppress.sh: Fix failures due to duplicate MAC Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 194/301] rxrpc: Fix the names of the fields in the ACK trailer struct Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 195/301] rxrpc: Fix congestion control algorithm Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 196/301] rxrpc: Only transmit one ACK per jumbo packet received Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 197/301] dt-bindings: net: mediatek: remove wrongly added clocks and SerDes Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 198/301] ipv6: fib6_rules: avoid possible NULL dereference in fib6_rule_action() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 199/301] net-sysfs: convert dev->operstate reads to lockless ones Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 200/301] hsr: Simplify code for announcing HSR nodes timer setup Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 201/301] ipv6: annotate data-races around cnf.disable_ipv6 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 202/301] ipv6: prevent NULL dereference in ip6_output() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 203/301] net/smc: fix neighbour and rtable leak in smc_ib_find_route() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 204/301] net: hns3: using user configure after hardware reset Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 205/301] net: hns3: direct return when receive a unknown mailbox message Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 206/301] net: hns3: change type of numa_node_mask as nodemask_t Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 207/301] net: hns3: release PTP resources if pf initialization failed Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.6 208/301] net: hns3: use appropriate barrier function after setting a bit value Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 209/301] net: hns3: fix port vlan filter not disabled issue Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 210/301] net: hns3: fix kernel crash when devlink reload during initialization Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 211/301] net: dsa: mv88e6xxx: add phylink_get_caps for the mv88e6320/21 family Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 212/301] drm/meson: dw-hdmi: power up phy on device init Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 213/301] drm/meson: dw-hdmi: add bandgap setting for g12 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 214/301] drm/connector: Add \n to message about demoting connector force-probes Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 215/301] 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:18 ` [PATCH 6.6 216/301] gpiolib: cdev: Fix use after free in lineinfo_changed_notify Greg Kroah-Hartman
2024-05-14 10:18 ` Greg Kroah-Hartman [this message]
2024-05-14 10:18 ` [PATCH 6.6 218/301] gpiolib: cdev: fix uninitialised kfifo Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 219/301] drm/amd/display: Atom Integrated System Info v2_2 for DCN35 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 220/301] drm/amdgpu: Fix comparison in amdgpu_res_cpu_visible Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 221/301] drm/amdgpu: once more fix the call oder in amdgpu_ttm_move() v2 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 222/301] btrfs: fix kvcalloc() arguments order in btrfs_ioctl_send() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 223/301] firewire: nosy: ensure user_length is taken into account when fetching packet contents Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 224/301] Reapply "drm/qxl: simplify qxl_fence_wait" Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 225/301] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 226/301] usb: typec: ucsi: Fix connector check on init Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 227/301] usb: Fix regression caused by invalid ep0 maxpacket in virtual SuperSpeed device Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 228/301] usb: ohci: Prevent missed ohci interrupts Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 229/301] USB: core: Fix access violation during port device removal Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 230/301] usb: gadget: composite: fix OS descriptors w_value logic Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 231/301] usb: gadget: uvc: use correct buffer size when parsing configfs lists Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 232/301] usb: gadget: f_fs: Fix race between aio_cancel() and AIO request complete Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 233/301] usb: gadget: f_fs: Fix a race condition when processing setup packets Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 234/301] usb: xhci-plat: Dont include xhci.h Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 235/301] usb: dwc3: core: Prevent phy suspend during init Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 236/301] usb: typec: tcpm: clear pd_event queue in PORT_RESET Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 237/301] usb: typec: tcpm: unregister existing source caps before re-registration Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 238/301] usb: typec: tcpm: Check for port partner validity before consuming it Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 239/301] ALSA: hda/realtek: Fix mute led of HP Laptop 15-da3001TU Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 240/301] firewire: ohci: fulfill timestamp for some local asynchronous transaction Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 241/301] btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 242/301] btrfs: set correct ram_bytes when splitting ordered extent Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 243/301] maple_tree: fix mas_empty_area_rev() null pointer dereference Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 244/301] mm/slab: make __free(kfree) accept error pointers Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 245/301] mptcp: ensure snd_nxt is properly initialized on connect Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 246/301] mptcp: only allow set existing scheduler for net.mptcp.scheduler Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 247/301] workqueue: Fix selection of wake_cpu in kick_pool() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 248/301] dt-bindings: iio: health: maxim,max30102: fix compatible check Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 249/301] iio:imu: adis16475: Fix sync mode setting Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 250/301] iio: pressure: Fixes BME280 SPI driver data Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 251/301] iio: accel: mxc4005: Interrupt handling fixes Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 252/301] kmsan: compiler_types: declare __no_sanitize_or_inline Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 253/301] e1000e: change usleep_range to udelay in PHY mdic access Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 254/301] tipc: fix UAF in error path Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 255/301] xtensa: fix MAKE_PC_FROM_RA second argument Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 256/301] net: bcmgenet: synchronize EXT_RGMII_OOB_CTRL access Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 257/301] net: bcmgenet: synchronize use of bcmgenet_set_rx_mode() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 258/301] net: bcmgenet: synchronize UMAC_CMD access Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 259/301] ASoC: tegra: Fix DSPK 16-bit playback Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 260/301] ASoC: ti: davinci-mcasp: Fix race condition during probe Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 261/301] dyndbg: fix old BUG_ON in >control parser Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 262/301] slimbus: qcom-ngd-ctrl: Add timeout for wait operation Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 263/301] clk: sunxi-ng: common: Support minimum and maximum rate Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 264/301] clk: sunxi-ng: a64: Set minimum and maximum rate for PLL-MIPI Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 265/301] mei: me: add lunar lake point M DID Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 266/301] drm/nouveau/firmware: Fix SG_DEBUG error with nvkm_firmware_ctor() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.6 267/301] Revert "drm/nouveau/firmware: Fix SG_DEBUG error with nvkm_firmware_ctor()" Greg Kroah-Hartman
2024-06-14  9:34   ` Alexey Khoroshilov
2024-06-14  9:42     ` Greg Kroah-Hartman
2024-06-14 10:19       ` Alexey Khoroshilov
2024-05-14 10:18 ` [PATCH 6.6 268/301] drm/amdkfd: dont allow mapping the MMIO HDP page with large pages Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 269/301] drm/ttm: Print the memory decryption status just once Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 270/301] drm/vmwgfx: Fix Legacy Display Unit Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 271/301] drm/vmwgfx: Fix invalid reads in fence signaled events Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 272/301] drm/i915/audio: Fix audio time stamp programming for DP Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 273/301] drm/i915/gt: Automate CCS Mode setting during engine resets Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 274/301] drm/i915/bios: Fix parsing backlight BDB data Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 275/301] drm/amd/display: Handle Y carry-over in VCP X.Y calculation Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 276/301] drm/amd/display: Fix incorrect DSC instance for MST Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 277/301] arm64: dts: qcom: sa8155p-adp: fix SDHC2 CD pin configuration Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 278/301] net: fix out-of-bounds access in ops_init Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 279/301] hwmon: (pmbus/ucd9000) Increase delay from 250 to 500us Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 280/301] x86/apic: Dont access the APIC when disabling x2APIC Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 281/301] selftests/mm: fix powerpc ARCH check Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 282/301] mm: use memalloc_nofs_save() in page_cache_ra_order() Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 283/301] mm/userfaultfd: reset ptes when close() for wr-protected ones Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 284/301] nvme-pci: Add quirk for broken MSIs Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 285/301] regulator: core: fix debugfs creation regression Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 286/301] spi: microchip-core-qspi: fix setting spi bus clock rate Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 287/301] ksmbd: off ipv6only for both ipv4/ipv6 binding Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 288/301] ksmbd: avoid to send duplicate lease break notifications Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 289/301] 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.6 290/301] tracefs: Reset permissions on remount if permissions are options Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 291/301] tracefs: Still use mount point as default permissions for instances Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 292/301] eventfs: Do not differentiate the toplevel events directory Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 293/301] eventfs: Do not treat events directory different than other directories Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 294/301] Bluetooth: qca: fix invalid device address check Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 295/301] Bluetooth: qca: fix wcn3991 " Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 296/301] Bluetooth: qca: add missing firmware sanity checks Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 297/301] Bluetooth: qca: fix NVM configuration parsing Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 298/301] Bluetooth: qca: generalise device address check Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 299/301] Bluetooth: qca: fix info leak when fetching board id Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 300/301] Bluetooth: qca: fix info leak when fetching fw build id Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.6 301/301] Bluetooth: qca: fix firmware check error path Greg Kroah-Hartman
2024-05-14 14:48 ` [PATCH 6.6 000/301] 6.6.31-rc1 review Takeshi Ogasawara
2024-05-14 17:58 ` Miguel Ojeda
2024-05-14 19:09 ` Harshit Mogalapalli
2024-05-14 20:14 ` Allen
2024-05-15  4:10 ` Florian Fainelli
2024-05-15 15:06 ` Shuah Khan
2024-05-15 16:49 ` Conor Dooley

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=20240514101040.451976569@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox