Linux kernel -stable discussions
 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, Damien Le Moal <dlemoal@kernel.org>,
	Christoph Hellwig <hch@lst.de>,
	Bart Van Assche <bvanassche@acm.org>,
	Johannes Thumshirn <johannes.thumshirn@wdc.com>,
	Jens Axboe <axboe@kernel.dk>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 7.0 299/461] block: allow submitting all zone writes from a single context
Date: Thu, 28 May 2026 21:47:08 +0200	[thread overview]
Message-ID: <20260528194655.886866034@linuxfoundation.org> (raw)
In-Reply-To: <20260528194646.819809818@linuxfoundation.org>

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

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

From: Damien Le Moal <dlemoal@kernel.org>

[ Upstream commit 1365b6904fd050bf22ab9f3df375a396de5837a1 ]

In order to maintain sequential write patterns per zone with zoned block
devices, zone write plugging issues only a single write BIO per zone at
any time. This works well but has the side effect that when large
sequential write streams are issued by the user and these streams cross
zone boundaries, the device ends up receiving a discontiguous set of
write commands for different zones. The same also happens when a user
writes simultaneously at high queue depth multiple zones: the device
does not see all sequential writes per zone and receives discontiguous
writes to different zones. While this does not affect the performance of
solid state zoned block devices, when using an SMR HDD, this pattern
change from sequential writes to discontiguous writes to different zones
significantly increases head seek which results in degraded write
throughput.

In order to reduce this seek overhead for rotational media devices,
introduce a per disk zone write plugs kernel thread to issue all write
BIOs to zones. This single zone write issuing context is enabled for
any zoned block device that has a request queue flagged with the new
QUEUE_ZONED_QD1_WRITES flag.

The flag QUEUE_ZONED_QD1_WRITES is visible as the sysfs queue attribute
zoned_qd1_writes for zoned devices. For regular block devices, this
attribute is not visible. For zoned block devices, a user can override
the default value set to force the global write maximum queue depth of
1 for a zoned block device, or clear this attribute to fallback to the
default behavior of zone write plugging which limits writes to QD=1 per
sequential zone.

Writing to a zoned block device flagged with QUEUE_ZONED_QD1_WRITES is
implemented using a list of zone write plugs that have a non-empty BIO
list. Listed zone write plugs are processed by the disk zone write plugs
worker kthread in FIFO order, and all BIOs of a zone write plug are all
processed before switching to the next listed zone write plug. A newly
submitted BIO for a non-FULL zone write plug that is not yet listed
causes the addition of the zone write plug at the end of the disk list
of zone write plugs.

Since the write BIOs queued in a zone write plug BIO list are
necessarilly sequential, for rotational media, using the single zone
write plugs kthread to issue all BIOs maintains a sequential write
pattern and thus reduces seek overhead and improves write throughput.
This processing essentially result in always writing to HDDs at QD=1,
which is not an issue for HDDs operating with write caching enabled.
Performance with write cache disabled is also not degraded thanks to
the efficient write handling of modern SMR HDDs.

A disk list of zone write plugs is defined using the new struct gendisk
zone_wplugs_list, and accesses to this list is protected using the
zone_wplugs_list_lock spinlock.  The per disk kthread
(zone_wplugs_worker) code is implemented by the function
disk_zone_wplugs_worker(). A reference on listed zone write plugs is
always held until all BIOs of the zone write plug are processed by the
worker kthread. BIO issuing at QD=1 is driven using a completion
structure (zone_wplugs_worker_bio_done) and calls to blk_io_wait().

With this change, performance when sequentially writing the zones of a
30 TB SMR SATA HDD connected to an AHCI adapter changes as follows
(1MiB direct I/Os, results in MB/s unit):

                    +--------------------+
		    |   Write BW (MB/s)  |
 +------------------+----------+---------+
 | Sequential write | Baseline | Patched |
 |  Queue Depth     | 6.19-rc8 |         |
 +------------------+----------+---------+
 | 1                | 244      | 245     |
 | 2                | 244      | 245     |
 | 4                | 245      | 245     |
 | 8                | 242      | 245     |
 | 16               | 222      | 246     |
 | 32               | 211      | 245     |
 | 64               | 193      | 244     |
 | 128              | 112      | 246     |
 +------------------+----------+---------+

With the current code (baseline), as the sequential write stream crosses
a zone boundary, higher queue depth creates a gap between the
last IO to the previous zone and the first IOs to the following zones,
causing head seeks and degrading performance. Using the disk zone
write plugs worker thread, this pattern disappears and the maximum
throughput of the drive is maintained, leading to over 100%
improvements in throughput for high queue depth write.

Using 16 fio jobs all writing to randomly chosen zones at QD=32 with 1
MiB direct IOs, write throughput also increases significantly.

                    +--------------------+
		    |   Write BW (MB/s)  |
 +------------------+----------+---------+
 |   Random write   | Baseline | Patched |
 |  Number of zones | 6.19-rc7 |         |
 +------------------+----------+---------+
 | 1                | 191      | 192     |
 | 2                | 101      | 128     |
 | 4                | 115      | 123     |
 | 8                | 90       | 120     |
 | 16               | 64       | 115     |
 | 32               | 58       | 105     |
 | 64               | 56       | 101     |
 | 128              | 55       | 99      |
 +------------------+----------+---------+

Tests using XFS shows that buffered write speed with 8 jobs writing
files increases by 12% to 35% depending on the workload.

                    +--------------------+
		    |   Write BW (MB/s)  |
 +------------------+----------+---------+
 |     Workload     | Baseline | Patched |
 |                  | 6.19-rc7 |         |
 +------------------+----------+---------+
 | 256MiB file size | 212      | 238     |
 +------------------+----------+---------+
 | 4MiB .. 128 MiB  | 213      | 243     |
 | random file size |          |         |
 +------------------+----------+---------+
 | 2MiB .. 8 MiB    | 179      | 242     |
 | random file size |          |         |
 +------------------+----------+---------+

Performance gains are even more significant when using an HBA that
limits the maximum size of commands to a small value, e.g. HBAs
controlled with the mpi3mr driver limit commands to a maximum of 1 MiB.
In such case, the write throughput gains are over 40%.

                    +--------------------+
		    |   Write BW (MB/s)  |
 +------------------+----------+---------+
 |     Workload     | Baseline | Patched |
 |                  | 6.19-rc7 |         |
 +------------------+----------+---------+
 | 256MiB file size | 175      | 245     |
 +------------------+----------+---------+
 | 4MiB .. 128 MiB  | 174      | 244     |
 | random file size |          |         |
 +------------------+----------+---------+
 | 2MiB .. 8 MiB    | 171      | 243     |
 | random file size |          |         |
 +------------------+----------+---------+

Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Stable-dep-of: 836efd35c472 ("block: fix handling of dead zone write plugs")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 block/blk-mq-debugfs.c |   1 +
 block/blk-sysfs.c      |  35 +++++++-
 block/blk-zoned.c      | 190 ++++++++++++++++++++++++++++++++++++-----
 include/linux/blkdev.h |   8 ++
 4 files changed, 212 insertions(+), 22 deletions(-)

diff --git a/block/blk-mq-debugfs.c b/block/blk-mq-debugfs.c
index 28167c9baa559..047ec887456b6 100644
--- a/block/blk-mq-debugfs.c
+++ b/block/blk-mq-debugfs.c
@@ -97,6 +97,7 @@ static const char *const blk_queue_flag_name[] = {
 	QUEUE_FLAG_NAME(NO_ELV_SWITCH),
 	QUEUE_FLAG_NAME(QOS_ENABLED),
 	QUEUE_FLAG_NAME(BIO_ISSUE_TIME),
+	QUEUE_FLAG_NAME(ZONED_QD1_WRITES),
 };
 #undef QUEUE_FLAG_NAME
 
diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
index 55a1bbfef7d45..ca8033e6d6990 100644
--- a/block/blk-sysfs.c
+++ b/block/blk-sysfs.c
@@ -390,6 +390,36 @@ static ssize_t queue_nr_zones_show(struct gendisk *disk, char *page)
 	return queue_var_show(disk_nr_zones(disk), page);
 }
 
+static ssize_t queue_zoned_qd1_writes_show(struct gendisk *disk, char *page)
+{
+	return queue_var_show(!!blk_queue_zoned_qd1_writes(disk->queue),
+			      page);
+}
+
+static ssize_t queue_zoned_qd1_writes_store(struct gendisk *disk,
+					    const char *page, size_t count)
+{
+	struct request_queue *q = disk->queue;
+	unsigned long qd1_writes;
+	unsigned int memflags;
+	ssize_t ret;
+
+	ret = queue_var_store(&qd1_writes, page, count);
+	if (ret < 0)
+		return ret;
+
+	memflags = blk_mq_freeze_queue(q);
+	blk_mq_quiesce_queue(q);
+	if (qd1_writes)
+		blk_queue_flag_set(QUEUE_FLAG_ZONED_QD1_WRITES, q);
+	else
+		blk_queue_flag_clear(QUEUE_FLAG_ZONED_QD1_WRITES, q);
+	blk_mq_unquiesce_queue(q);
+	blk_mq_unfreeze_queue(q, memflags);
+
+	return count;
+}
+
 static ssize_t queue_iostats_passthrough_show(struct gendisk *disk, char *page)
 {
 	return queue_var_show(!!blk_queue_passthrough_stat(disk->queue), page);
@@ -617,6 +647,7 @@ QUEUE_LIM_RO_ENTRY(queue_max_zone_append_sectors, "zone_append_max_bytes");
 QUEUE_LIM_RO_ENTRY(queue_zone_write_granularity, "zone_write_granularity");
 
 QUEUE_LIM_RO_ENTRY(queue_zoned, "zoned");
+QUEUE_RW_ENTRY(queue_zoned_qd1_writes, "zoned_qd1_writes");
 QUEUE_RO_ENTRY(queue_nr_zones, "nr_zones");
 QUEUE_LIM_RO_ENTRY(queue_max_open_zones, "max_open_zones");
 QUEUE_LIM_RO_ENTRY(queue_max_active_zones, "max_active_zones");
@@ -754,6 +785,7 @@ static struct attribute *queue_attrs[] = {
 	&queue_nomerges_entry.attr,
 	&queue_poll_entry.attr,
 	&queue_poll_delay_entry.attr,
+	&queue_zoned_qd1_writes_entry.attr,
 
 	NULL,
 };
@@ -786,7 +818,8 @@ static umode_t queue_attr_visible(struct kobject *kobj, struct attribute *attr,
 	struct request_queue *q = disk->queue;
 
 	if ((attr == &queue_max_open_zones_entry.attr ||
-	     attr == &queue_max_active_zones_entry.attr) &&
+	     attr == &queue_max_active_zones_entry.attr ||
+	     attr == &queue_zoned_qd1_writes_entry.attr) &&
 	    !blk_queue_is_zoned(q))
 		return 0;
 
diff --git a/block/blk-zoned.c b/block/blk-zoned.c
index 2fa7f7b5f4c80..9b697043871f8 100644
--- a/block/blk-zoned.c
+++ b/block/blk-zoned.c
@@ -16,6 +16,8 @@
 #include <linux/spinlock.h>
 #include <linux/refcount.h>
 #include <linux/mempool.h>
+#include <linux/kthread.h>
+#include <linux/freezer.h>
 
 #include <trace/events/block.h>
 
@@ -40,6 +42,8 @@ static const char *const zone_cond_name[] = {
 /*
  * Per-zone write plug.
  * @node: hlist_node structure for managing the plug using a hash table.
+ * @entry: list_head structure for listing the plug in the disk list of active
+ *         zone write plugs.
  * @bio_list: The list of BIOs that are currently plugged.
  * @bio_work: Work struct to handle issuing of plugged BIOs
  * @rcu_head: RCU head to free zone write plugs with an RCU grace period.
@@ -62,6 +66,7 @@ static const char *const zone_cond_name[] = {
  */
 struct blk_zone_wplug {
 	struct hlist_node	node;
+	struct list_head	entry;
 	struct bio_list		bio_list;
 	struct work_struct	bio_work;
 	struct rcu_head		rcu_head;
@@ -629,7 +634,19 @@ static void disk_mark_zone_wplug_dead(struct blk_zone_wplug *zwplug)
 	}
 }
 
-static void blk_zone_wplug_bio_work(struct work_struct *work);
+static bool disk_zone_wplug_submit_bio(struct gendisk *disk,
+				       struct blk_zone_wplug *zwplug);
+
+static void blk_zone_wplug_bio_work(struct work_struct *work)
+{
+	struct blk_zone_wplug *zwplug =
+		container_of(work, struct blk_zone_wplug, bio_work);
+
+	disk_zone_wplug_submit_bio(zwplug->disk, zwplug);
+
+	/* Drop the reference we took in disk_zone_wplug_schedule_work(). */
+	disk_put_zone_wplug(zwplug);
+}
 
 /*
  * Get a reference on the write plug for the zone containing @sector.
@@ -667,6 +684,7 @@ static struct blk_zone_wplug *disk_get_and_lock_zone_wplug(struct gendisk *disk,
 	zwplug->wp_offset = bdev_offset_from_zone_start(disk->part0, sector);
 	bio_list_init(&zwplug->bio_list);
 	INIT_WORK(&zwplug->bio_work, blk_zone_wplug_bio_work);
+	INIT_LIST_HEAD(&zwplug->entry);
 	zwplug->disk = disk;
 
 	spin_lock_irqsave(&zwplug->lock, *flags);
@@ -702,6 +720,7 @@ static inline void blk_zone_wplug_bio_io_error(struct blk_zone_wplug *zwplug,
  */
 static void disk_zone_wplug_abort(struct blk_zone_wplug *zwplug)
 {
+	struct gendisk *disk = zwplug->disk;
 	struct bio *bio;
 
 	lockdep_assert_held(&zwplug->lock);
@@ -715,6 +734,20 @@ static void disk_zone_wplug_abort(struct blk_zone_wplug *zwplug)
 		blk_zone_wplug_bio_io_error(zwplug, bio);
 
 	zwplug->flags &= ~BLK_ZONE_WPLUG_PLUGGED;
+
+	/*
+	 * If we are using the per disk zone write plugs worker thread, remove
+	 * the zone write plug from the work list and drop the reference we
+	 * took when the zone write plug was added to that list.
+	 */
+	if (blk_queue_zoned_qd1_writes(disk->queue)) {
+		spin_lock(&disk->zone_wplugs_list_lock);
+		if (!list_empty(&zwplug->entry)) {
+			list_del_init(&zwplug->entry);
+			disk_put_zone_wplug(zwplug);
+		}
+		spin_unlock(&disk->zone_wplugs_list_lock);
+	}
 }
 
 /*
@@ -1149,8 +1182,8 @@ void blk_zone_mgmt_bio_endio(struct bio *bio)
 	}
 }
 
-static void disk_zone_wplug_schedule_bio_work(struct gendisk *disk,
-					      struct blk_zone_wplug *zwplug)
+static void disk_zone_wplug_schedule_work(struct gendisk *disk,
+					  struct blk_zone_wplug *zwplug)
 {
 	lockdep_assert_held(&zwplug->lock);
 
@@ -1163,6 +1196,7 @@ static void disk_zone_wplug_schedule_bio_work(struct gendisk *disk,
 	 * and we also drop this reference if the work is already scheduled.
 	 */
 	WARN_ON_ONCE(!(zwplug->flags & BLK_ZONE_WPLUG_PLUGGED));
+	WARN_ON_ONCE(blk_queue_zoned_qd1_writes(disk->queue));
 	refcount_inc(&zwplug->ref);
 	if (!queue_work(disk->zone_wplugs_wq, &zwplug->bio_work))
 		disk_put_zone_wplug(zwplug);
@@ -1202,6 +1236,22 @@ static inline void disk_zone_wplug_add_bio(struct gendisk *disk,
 	bio_list_add(&zwplug->bio_list, bio);
 	trace_disk_zone_wplug_add_bio(zwplug->disk->queue, zwplug->zone_no,
 				      bio->bi_iter.bi_sector, bio_sectors(bio));
+
+	/*
+	 * If we are using the disk zone write plugs worker instead of the per
+	 * zone write plug BIO work, add the zone write plug to the work list
+	 * if it is not already there. Make sure to also get an extra reference
+	 * on the zone write plug so that it does not go away until it is
+	 * removed from the work list.
+	 */
+	if (blk_queue_zoned_qd1_writes(disk->queue)) {
+		spin_lock(&disk->zone_wplugs_list_lock);
+		if (list_empty(&zwplug->entry)) {
+			list_add_tail(&zwplug->entry, &disk->zone_wplugs_list);
+			refcount_inc(&zwplug->ref);
+		}
+		spin_unlock(&disk->zone_wplugs_list_lock);
+	}
 }
 
 /*
@@ -1433,6 +1483,13 @@ static bool blk_zone_wplug_handle_write(struct bio *bio, unsigned int nr_segs)
 		goto queue_bio;
 	}
 
+	/*
+	 * For rotational devices, we will use the gendisk zone write plugs
+	 * work instead of the per zone write plug BIO work, so queue the BIO.
+	 */
+	if (blk_queue_zoned_qd1_writes(disk->queue))
+		goto queue_bio;
+
 	/* If the zone is already plugged, add the BIO to the BIO plug list. */
 	if (zwplug->flags & BLK_ZONE_WPLUG_PLUGGED)
 		goto queue_bio;
@@ -1455,7 +1512,10 @@ static bool blk_zone_wplug_handle_write(struct bio *bio, unsigned int nr_segs)
 
 	if (!(zwplug->flags & BLK_ZONE_WPLUG_PLUGGED)) {
 		zwplug->flags |= BLK_ZONE_WPLUG_PLUGGED;
-		disk_zone_wplug_schedule_bio_work(disk, zwplug);
+		if (blk_queue_zoned_qd1_writes(disk->queue))
+			wake_up_process(disk->zone_wplugs_worker);
+		else
+			disk_zone_wplug_schedule_work(disk, zwplug);
 	}
 
 	spin_unlock_irqrestore(&zwplug->lock, flags);
@@ -1596,16 +1656,22 @@ static void disk_zone_wplug_unplug_bio(struct gendisk *disk,
 
 	spin_lock_irqsave(&zwplug->lock, flags);
 
-	/* Schedule submission of the next plugged BIO if we have one. */
-	if (!bio_list_empty(&zwplug->bio_list)) {
-		disk_zone_wplug_schedule_bio_work(disk, zwplug);
-		spin_unlock_irqrestore(&zwplug->lock, flags);
-		return;
-	}
+	/*
+	 * For rotational devices, signal the BIO completion to the zone write
+	 * plug work. Otherwise, schedule submission of the next plugged BIO
+	 * if we have one.
+	 */
+	if (bio_list_empty(&zwplug->bio_list))
+		zwplug->flags &= ~BLK_ZONE_WPLUG_PLUGGED;
+
+	if (blk_queue_zoned_qd1_writes(disk->queue))
+		complete(&disk->zone_wplugs_worker_bio_done);
+	else if (!bio_list_empty(&zwplug->bio_list))
+		disk_zone_wplug_schedule_work(disk, zwplug);
 
-	zwplug->flags &= ~BLK_ZONE_WPLUG_PLUGGED;
 	if (!zwplug->wp_offset || disk_zone_wplug_is_full(disk, zwplug))
 		disk_mark_zone_wplug_dead(zwplug);
+
 	spin_unlock_irqrestore(&zwplug->lock, flags);
 }
 
@@ -1695,10 +1761,9 @@ void blk_zone_write_plug_finish_request(struct request *req)
 	disk_put_zone_wplug(zwplug);
 }
 
-static void blk_zone_wplug_bio_work(struct work_struct *work)
+static bool disk_zone_wplug_submit_bio(struct gendisk *disk,
+				       struct blk_zone_wplug *zwplug)
 {
-	struct blk_zone_wplug *zwplug =
-		container_of(work, struct blk_zone_wplug, bio_work);
 	struct block_device *bdev;
 	unsigned long flags;
 	struct bio *bio;
@@ -1714,7 +1779,7 @@ static void blk_zone_wplug_bio_work(struct work_struct *work)
 	if (!bio) {
 		zwplug->flags &= ~BLK_ZONE_WPLUG_PLUGGED;
 		spin_unlock_irqrestore(&zwplug->lock, flags);
-		goto put_zwplug;
+		return false;
 	}
 
 	trace_blk_zone_wplug_bio(zwplug->disk->queue, zwplug->zone_no,
@@ -1728,14 +1793,15 @@ static void blk_zone_wplug_bio_work(struct work_struct *work)
 		goto again;
 	}
 
-	bdev = bio->bi_bdev;
-
 	/*
 	 * blk-mq devices will reuse the extra reference on the request queue
 	 * usage counter we took when the BIO was plugged, but the submission
 	 * path for BIO-based devices will not do that. So drop this extra
 	 * reference here.
 	 */
+	if (blk_queue_zoned_qd1_writes(disk->queue))
+		reinit_completion(&disk->zone_wplugs_worker_bio_done);
+	bdev = bio->bi_bdev;
 	if (bdev_test_flag(bdev, BD_HAS_SUBMIT_BIO)) {
 		bdev->bd_disk->fops->submit_bio(bio);
 		blk_queue_exit(bdev->bd_disk->queue);
@@ -1743,14 +1809,78 @@ static void blk_zone_wplug_bio_work(struct work_struct *work)
 		blk_mq_submit_bio(bio);
 	}
 
-put_zwplug:
-	/* Drop the reference we took in disk_zone_wplug_schedule_bio_work(). */
-	disk_put_zone_wplug(zwplug);
+	return true;
+}
+
+static struct blk_zone_wplug *disk_get_zone_wplugs_work(struct gendisk *disk)
+{
+	struct blk_zone_wplug *zwplug;
+
+	spin_lock_irq(&disk->zone_wplugs_list_lock);
+	zwplug = list_first_entry_or_null(&disk->zone_wplugs_list,
+					  struct blk_zone_wplug, entry);
+	if (zwplug)
+		list_del_init(&zwplug->entry);
+	spin_unlock_irq(&disk->zone_wplugs_list_lock);
+
+	return zwplug;
+}
+
+static int disk_zone_wplugs_worker(void *data)
+{
+	struct gendisk *disk = data;
+	struct blk_zone_wplug *zwplug;
+	unsigned int noio_flag;
+
+	noio_flag = memalloc_noio_save();
+	set_user_nice(current, MIN_NICE);
+	set_freezable();
+
+	for (;;) {
+		set_current_state(TASK_INTERRUPTIBLE | TASK_FREEZABLE);
+
+		zwplug = disk_get_zone_wplugs_work(disk);
+		if (zwplug) {
+			/*
+			 * Process all BIOs of this zone write plug and then
+			 * drop the reference we took when adding the zone write
+			 * plug to the active list.
+			 */
+			set_current_state(TASK_RUNNING);
+			while (disk_zone_wplug_submit_bio(disk, zwplug))
+				blk_wait_io(&disk->zone_wplugs_worker_bio_done);
+			disk_put_zone_wplug(zwplug);
+			continue;
+		}
+
+		/*
+		 * Only sleep if nothing sets the state to running. Else check
+		 * for zone write plugs work again as a newly submitted BIO
+		 * might have added a zone write plug to the work list.
+		 */
+		if (get_current_state() == TASK_RUNNING) {
+			try_to_freeze();
+		} else {
+			if (kthread_should_stop()) {
+				set_current_state(TASK_RUNNING);
+				break;
+			}
+			schedule();
+		}
+	}
+
+	WARN_ON_ONCE(!list_empty(&disk->zone_wplugs_list));
+	memalloc_noio_restore(noio_flag);
+
+	return 0;
 }
 
 void disk_init_zone_resources(struct gendisk *disk)
 {
 	spin_lock_init(&disk->zone_wplugs_hash_lock);
+	spin_lock_init(&disk->zone_wplugs_list_lock);
+	INIT_LIST_HEAD(&disk->zone_wplugs_list);
+	init_completion(&disk->zone_wplugs_worker_bio_done);
 }
 
 /*
@@ -1766,6 +1896,7 @@ static int disk_alloc_zone_resources(struct gendisk *disk,
 				     unsigned int pool_size)
 {
 	unsigned int i;
+	int ret = -ENOMEM;
 
 	atomic_set(&disk->nr_zone_wplugs, 0);
 	disk->zone_wplugs_hash_bits =
@@ -1791,8 +1922,21 @@ static int disk_alloc_zone_resources(struct gendisk *disk,
 	if (!disk->zone_wplugs_wq)
 		goto destroy_pool;
 
+	disk->zone_wplugs_worker =
+		kthread_create(disk_zone_wplugs_worker, disk,
+			       "%s_zwplugs_worker", disk->disk_name);
+	if (IS_ERR(disk->zone_wplugs_worker)) {
+		ret = PTR_ERR(disk->zone_wplugs_worker);
+		disk->zone_wplugs_worker = NULL;
+		goto destroy_wq;
+	}
+	wake_up_process(disk->zone_wplugs_worker);
+
 	return 0;
 
+destroy_wq:
+	destroy_workqueue(disk->zone_wplugs_wq);
+	disk->zone_wplugs_wq = NULL;
 destroy_pool:
 	mempool_destroy(disk->zone_wplugs_pool);
 	disk->zone_wplugs_pool = NULL;
@@ -1800,7 +1944,7 @@ static int disk_alloc_zone_resources(struct gendisk *disk,
 	kfree(disk->zone_wplugs_hash);
 	disk->zone_wplugs_hash = NULL;
 	disk->zone_wplugs_hash_bits = 0;
-	return -ENOMEM;
+	return ret;
 }
 
 static void disk_destroy_zone_wplugs_hash_table(struct gendisk *disk)
@@ -1850,6 +1994,10 @@ static void disk_set_zones_cond_array(struct gendisk *disk, u8 *zones_cond)
 
 void disk_free_zone_resources(struct gendisk *disk)
 {
+	if (disk->zone_wplugs_worker)
+		kthread_stop(disk->zone_wplugs_worker);
+	WARN_ON_ONCE(!list_empty(&disk->zone_wplugs_list));
+
 	if (disk->zone_wplugs_wq) {
 		destroy_workqueue(disk->zone_wplugs_wq);
 		disk->zone_wplugs_wq = NULL;
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
index 6890900237707..ac899cd0cd708 100644
--- a/include/linux/blkdev.h
+++ b/include/linux/blkdev.h
@@ -13,6 +13,7 @@
 #include <linux/minmax.h>
 #include <linux/timer.h>
 #include <linux/workqueue.h>
+#include <linux/completion.h>
 #include <linux/wait.h>
 #include <linux/bio.h>
 #include <linux/gfp.h>
@@ -204,6 +205,10 @@ struct gendisk {
 	struct mempool		*zone_wplugs_pool;
 	struct hlist_head	*zone_wplugs_hash;
 	struct workqueue_struct *zone_wplugs_wq;
+	spinlock_t		zone_wplugs_list_lock;
+	struct list_head	zone_wplugs_list;
+	struct task_struct	*zone_wplugs_worker;
+	struct completion	zone_wplugs_worker_bio_done;
 #endif /* CONFIG_BLK_DEV_ZONED */
 
 #if IS_ENABLED(CONFIG_CDROM)
@@ -668,6 +673,7 @@ enum {
 	QUEUE_FLAG_NO_ELV_SWITCH,	/* can't switch elevator any more */
 	QUEUE_FLAG_QOS_ENABLED,		/* qos is enabled */
 	QUEUE_FLAG_BIO_ISSUE_TIME,	/* record bio->issue_time_ns */
+	QUEUE_FLAG_ZONED_QD1_WRITES,	/* Limit zoned devices writes to QD=1 */
 	QUEUE_FLAG_MAX
 };
 
@@ -707,6 +713,8 @@ void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
 	test_bit(QUEUE_FLAG_DISABLE_WBT_DEF, &(q)->queue_flags)
 #define blk_queue_no_elv_switch(q)	\
 	test_bit(QUEUE_FLAG_NO_ELV_SWITCH, &(q)->queue_flags)
+#define blk_queue_zoned_qd1_writes(q)	\
+	test_bit(QUEUE_FLAG_ZONED_QD1_WRITES, &(q)->queue_flags)
 
 extern void blk_set_pm_only(struct request_queue *q);
 extern void blk_clear_pm_only(struct request_queue *q);
-- 
2.53.0




  parent reply	other threads:[~2026-05-28 20:06 UTC|newest]

Thread overview: 478+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-28 19:42 [PATCH 7.0 000/461] 7.0.11-rc1 review Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 001/461] iommu/amd: Fix illegal cap/mmio access in IOMMU debugfs Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 002/461] iommu/amd: Remove latent out-of-bounds " Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 003/461] ksmbd: close durable scavenger races against m_fp_list lookups Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 004/461] smb: client: reject userspace cifs.spnego descriptions Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 005/461] ata: libata-scsi: improve readability of ata_scsi_qc_issue() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 006/461] ata: libata-scsi: do not use the deferred QC feature for ATA_DEFER_PORT Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 007/461] ata: libata-scsi: do not use the deferred QC feature on PMPs with CBS Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 008/461] ata: libata-scsi: do not needlessly defer commands when using PMP with FBS Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 009/461] sysfs: dont remove existing directory on update failure Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 010/461] mm/damon/sysfs-schemes: call missing mem_cgroup_iter_break() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 011/461] ksmbd: fix null pointer dereference in compare_guid_key() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 012/461] ksmbd: fix null pointer dereference in proc_show_files() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 013/461] ksmbd: fix SID memory leak in set_posix_acl_entries_dacl() on overflow Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 014/461] ksmbd: validate SID in parent security descriptor during ACL inheritance Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 015/461] regulator: tps65219: fix irq_data.rdev not being assigned Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 016/461] x86/mm: Disable broadcast TLB flush when PCID is disabled Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 017/461] scripts/gdb: mm: cast untyped symbols in x86_page_ops Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 018/461] smb: client: require net admin for CIFS SWN netlink Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 019/461] smb: client: protect tc_count increment in smb2_find_smb_sess_tcon_unlocked() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 020/461] smb: client: use data_len for SMB2 READ encrypted folioq copy Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 021/461] smb/server: promote S_DEL_ON_CLS to S_DEL_PENDING when close Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 022/461] hwmon: (pmbus/adm1266) widen blackbox-info buffer to I2C_SMBUS_BLOCK_MAX Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 023/461] ALSA: ua101: Reject too-short USB descriptors Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 024/461] ALSA: pcm: Dont setup bogus iov_iter for silencing Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 025/461] ALSA: asihpi: Fix potential OOB array access at reading cache Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 026/461] ALSA: scarlett2: Allow flash writes ending at segment boundary Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 027/461] ACPI: battery: Fix system wakeup on critical battery status Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 028/461] efi: Allocate runtime workqueue before ACPI init Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 029/461] spi: amd: Set correct bus number in ACPI probe path Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 030/461] io_uring/waitid: clear waitid info before copying it to userspace Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 031/461] drivers/base/memory: fix memory block reference leak in poison accounting Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 032/461] ipv6: ioam: refresh hdr pointer before ioam6_event() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 033/461] mm/memory: fix spurious warning when unmapping device-private/exclusive pages Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 034/461] mm: fix __vm_normal_page() to handle missing support for pmd_special()/pud_special() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 035/461] mm/memory_hotplug: fix memory block reference leak on remove Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 036/461] mm/page_alloc: fix initialization of tags of the huge zero folio with init_on_free Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 037/461] mm/migrate_device: fix spinlock leak in migrate_vma_insert_huge_pmd_page Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 038/461] selftests/mm: run_vmtests.sh: fix destructive tests invocation Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 039/461] mm/damon: fix damos_stat tracepoint format for sz_applied Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 040/461] net: wwan: iosm: fix potential memory leaks in ipc_imem_init() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 041/461] Bluetooth: fix UAF in l2cap_sock_cleanup_listen() vs l2cap_conn_del() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 042/461] Bluetooth: ISO: drop ISO_END frames received without prior ISO_START Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 043/461] Bluetooth: bnep: Fix UAF read of dev->name Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 044/461] Bluetooth: hci_uart: fix UAFs and race conditions in close and init paths Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 045/461] Bluetooth: L2CAP: ecred_reconfigure: send packed pdu, not stack pointer Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 046/461] Bluetooth: hci_qca: Convert timeout from jiffies to ms Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 047/461] Bluetooth: MGMT: validate Add Extended Advertising Data length Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 048/461] Bluetooth: serialize accept_q access Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 049/461] phonet/pep: disable BH around forwarded sk_receive_skb() Greg Kroah-Hartman
2026-05-28 19:42 ` [PATCH 7.0 050/461] net: bcmgenet: keep RBUF EEE/PM disabled Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 051/461] net: devmem: reject dma-buf bind with non-page-aligned size or SG length Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 052/461] net: phy: skip EEE advertisement write when autoneg is disabled Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 053/461] net: hsr: defer node table free until after RCU readers Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 054/461] net/mlx5e: Fix use-after-free in mlx5e_tx_reporter_timeout_recover Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 055/461] net: ifb: report ethtool stats over num_tx_queues Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 056/461] net: pse-pd: fix sign on -ENOENT check in of_load_pse_pis() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 057/461] netfilter: ip6t_hbh: reject oversized option lists Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 058/461] netfilter: nf_queue: hold bridge skb->dev while queued Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 059/461] netfilter: ipset: stop hash:* range iteration at end Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 060/461] netfilter: nft_inner: Fix IPv6 inner_thoff desync Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 061/461] net: ethtool: fix NULL pointer dereference in phy_reply_size Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 062/461] net: ethtool: phy: avoid NULL deref when PHY driver is unbound Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 063/461] ACPI: driver: Check ACPI_COMPANION() against NULL during probe Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 064/461] sched_ext: Fix missing warning in scx_set_task_state() default case Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 065/461] sched_ext: Avoid UAF in scx_root_enable_workfn() init failure path Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 066/461] l2tp: use list_del_rcu in l2tp_session_unhash Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 067/461] qed: fix double free in qed_cxt_tables_alloc() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 068/461] ring-buffer: Fix reporting of missed events in iterator Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 069/461] ring-buffer: Flush and stop persistent ring buffer on panic Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 070/461] wifi: mac80211: capture fast-RX rate before mesh reuses skb->cb Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 071/461] ipv6: ioam: add NULL check for idev in ipv6_hop_ioam() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 072/461] selftests: mptcp: drop nanoseconds width specifier Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 073/461] mptcp: pm: fix ADD_ADDR timer infinite retry on option space insufficient Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 074/461] vsock/vmci: fix UAF when peer resets connection during handshake Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 075/461] vsock/virtio: reset connection on receiving queue overflow Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 076/461] ice: fix VF queue configuration with low MTU values Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 077/461] wifi: ath11k: clear shared SRNG pointer state on restart Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 078/461] wifi: iwlwifi: mvm: fix driver-set TX rates on old devices Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 079/461] wifi: iwlwifi: mld: stop TX during firmware restart Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 080/461] ipv4: raw: reject IP_HDRINCL packets with ihl < 5 Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 081/461] ixgbevf: fix use-after-free in VEPA multicast source pruning Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 082/461] rbd: eliminate a race in lock_dwork draining on unmap Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 083/461] mptcp: do not drop partial packets Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 084/461] mptcp: reset rcv wnd on disconnect Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 085/461] lsm: hold cred_guard_mutex for lsm_set_self_attr() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 086/461] octeontx2-af: CGX: add bounds check to cgx_speed_mbps index Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 087/461] octeontx2-pf: fix double free in rvu_rep_rsrc_init() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 088/461] igc: fix potential skb leak in igc_fpe_xmit_smd_frame() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 089/461] ice: fix locking around wait_event_interruptible_locked_irq Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 090/461] ice: fix setting promisc mode while adding VID filter Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 091/461] ice: restore PTP Rx timestamp config after ethtool set-channels Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 092/461] wifi: cfg80211: advance loop vars in cfg80211_merge_profile() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 093/461] af_unix: Fix UAF read of tail->len in unix_stream_data_wait() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 094/461] wifi: mac80211: consume only present negotiated TTLM maps Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 095/461] octeontx2-pf: avoid double free of pool->stack on AQ init failure Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 096/461] cifs: Fix busy dentry used after unmounting Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 097/461] tracing: Do not call map->ops->elt_free() if elt_alloc() fails Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 098/461] ASoC: codecs: pcm512x: fix null-ptr dereference in pcm512x_overclock_xxx_put() Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 099/461] arm64: probes: Handle probes on hinted conditional branch instructions Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 100/461] KVM: arm64: vgic-its: Reject restored DTE with out-of-range num_eventid_bits Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 101/461] KVM: arm64: vgic: Free private_irqs when init fails after allocation Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 102/461] KVM: SVM: Disable AVIC IPI virtualization on Hygon Family 18h (erratum #1235) Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 103/461] riscv: kvm: return SBI_ERR_FAILURE for pmu_snapshot_set_shmem() when OOM Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 104/461] riscv: kvm: return SBI_ERR_FAILURE for pmu_event_info() " Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 105/461] virt: sev-guest: Explicitly leak pages in unknown state Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 106/461] i2c: tegra: fix pm_runtime leak on mutex_lock failure Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 107/461] drm/bridge: chipone-icn6211: use devm_drm_bridge_add in i2c probe Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 108/461] spi: qup: fix error pointer deref after DMA setup failure Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 109/461] phy: exynos5-usbdrd: fix USB 2.0 HS PHY tuning values for Exynos7870 Greg Kroah-Hartman
2026-05-28 19:43 ` [PATCH 7.0 110/461] phy: tegra: xusb: Fix per-pad high-speed termination calibration Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 111/461] phy: qcom-qmp-ufs: Fix kaanapali PHY PLL lock failure after SM8650 G4 fix Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 112/461] phy: qcom: edp: Unify generic DP/eDP swing and pre-emphasis tables Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 113/461] phy: qcom: edp: Add eDP/DP mode switch support Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 114/461] phy: qcom: edp: Fix AUX_CFG8 programming for DP mode Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 115/461] scsi: isci: Fix use-after-free in device removal path Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 116/461] spi: ep93xx: fix error pointer deref after DMA setup failure Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 117/461] spi: sprd: " Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 118/461] spi: ti-qspi: fix use-after-free " Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 119/461] mm/slub: hold cpus_read_lock around flush_rcu_sheaves_on_cache() Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 120/461] RDMA/siw: Reject MPA FPDU length underflow before signed receive math Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 121/461] s390/cio: Restore GFP_DMA for CHSC allocation Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 122/461] s390/pai: Disable duplicate read of kernel PAI counter value Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 123/461] s390/pai: Fix missing PAI counter increments under heavy load Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 124/461] fwctl: pds: Validate RPC input size before parsing Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 125/461] LoongArch: kprobes: Use larch_insn_text_copy() to patch instructions Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 126/461] LoongArch: Remove unused code to avoid build warning Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 127/461] cpufreq: intel_pstate: Use correct scaling factor on Raptor Lake-E Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 128/461] device property: set fwnode->secondary to NULL in fwnode_init() Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 129/461] drm/i915/display: Copy color pipeline from plane in the primary joiner pipe Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 130/461] drm/msm: Fix shrinker deadlock Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 131/461] drm/v3d: Fix use-after-free of CPU job query arrays on error path Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 132/461] drm/v3d: Release indirect CSD GEM reference on CPU job free Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 133/461] drm/virtio: use uninterruptible resv lock for plane updates Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 134/461] drm/xe/multi_queue: Fix secondary queue error case Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 135/461] drm/amdgpu/vpe: Force collaborate sync after TRAP Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 136/461] drm/bridge: it66121: acquire reset GPIO in probe Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 137/461] drm/bridge: megachips: remove bridge when irq request fails Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 138/461] drm/amd/display: Fix integer overflow in bios_get_image() Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 139/461] drm/amd/display: Validate GPIO pin LUT table size before iterating Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 140/461] drm/amd/display: Validate payload length and link_index in dc_process_dmub_aux_transfer_async Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 141/461] batman-adv: v: stop OGMv2 on disabled interface Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 142/461] batman-adv: tvlv: abort OGM send on tvlv append failure Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 143/461] batman-adv: tvlv: reject oversized TVLV packets Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 144/461] batman-adv: iv: recover OGM scheduling after forward packet error Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 145/461] batman-adv: mcast: fix use-after-free in orig_node RCU release Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 146/461] batman-adv: clear current gateway during teardown Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 147/461] batman-adv: dat: handle forward allocation error Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 148/461] batman-adv: fix fragment reassembly length accounting Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 149/461] batman-adv: fix tp_meter counter underflow during shutdown Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 150/461] batman-adv: frag: disallow unicast fragment in fragment Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 151/461] batman-adv: bla: fix report_work leak on backbone_gw purge Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 152/461] batman-adv: bla: avoid double decrement of bla.num_requests Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 153/461] batman-adv: bla: avoid NULL-ptr deref for claim via dropped interface Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 154/461] batman-adv: tp_meter: avoid use of uninit sender vars Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 155/461] batman-adv: tp_meter: directly shut down timer on cleanup Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 156/461] batman-adv: tp_meter: fix tp_vars reference leak in receiver shutdown Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 157/461] batman-adv: tp_meter: fix race condition in send error reporting Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 158/461] batman-adv: tp_meter: avoid role confusion in tp_list Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 159/461] batman-adv: tt: fix TOCTOU race for reported vlans Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 160/461] batman-adv: tt: reject oversized local TVLV buffers Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 161/461] batman-adv: tt: avoid empty VLAN responses Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 162/461] batman-adv: tt: fix negative last_changeset_len Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 163/461] batman-adv: tt: fix negative tt_buff_len Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 164/461] batman-adv: tt: prevent TVLV entry number overflow Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 165/461] hwmon: (pmbus/adm1266) seed timestamp from the real-time clock Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 166/461] hwmon: (pmbus/adm1266) reject implausible blackbox record_count Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 167/461] hwmon: (pmbus/adm1266) include PEC byte in pmbus_block_xfer read buffer Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 168/461] hwmon: (pmbus/adm1266) bounce blackbox records through a protocol-sized buffer Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 169/461] hwmon: (pmbus/adm1266) cap PDIO scan in get_multiple at ADM1266_PDIO_NR Greg Kroah-Hartman
2026-05-28 19:44 ` [PATCH 7.0 170/461] hwmon: (pmbus/adm1266) dont clobber GPIO bits before PDIO read in get_multiple Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 171/461] hwmon: (pmbus/adm1266) register the gpio_chip after pmbus_do_probe() Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 172/461] hwmon: (pmbus/adm1266) register the nvmem device " Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 173/461] hwmon: (pmbus/adm1266) reject short block-read responses in the GPIO accessors Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 174/461] pinctrl: mediatek: moore: implement gpio_chip::get_direction() Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 175/461] pinctrl: qcom: ipq4019: mark gpio as a GPIO pin function Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 176/461] arm64: dts: renesas: r8a78000: Fix SCIF brg_int clocks Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 177/461] ARM: dts: renesas: genmai: Drop superfluous cells Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 178/461] ARM: dts: renesas: rskrza1: " Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 179/461] pinctrl: renesas: rzg2l: Fix incorrect PUPD register offset for high pins during suspend/resume Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 180/461] pinctrl: renesas: rzg2l: Fix SMT register cache handling Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 181/461] pinctrl: meson: amlogic-a4: fix deadlock issue Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 182/461] pinctrl: qcom: Fix GPIO to PDC wake irq map for qcs615 Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 183/461] kho: skip KHO for crash kernel Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 184/461] mm/memfd_luo: report error when restoring a folio fails mid-loop Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 185/461] HID: intel-thc-hid: Intel-quickspi: Fix some error codes Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 186/461] HID: uclogic: Fix regression of input name assignment Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 187/461] firmware: arm_ffa: Check for NULL FF-A ID table while driver registration Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 188/461] firmware: arm_ffa: Skip free_pages on RX buffer alloc failure Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 189/461] firmware: arm_ffa: Fix per-vcpu self notifications handling in workqueue Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 190/461] firmware: arm_ffa: Unregister bus notifier on teardown for FF-A v1.0 Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 191/461] riscv: errata: Fix bitwise vs logical AND in MIPS errata patching Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 192/461] riscv: Fix register corruption from uninitialized cregs on error Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 193/461] riscv: mm: Fixup no5lvl failure when vaddr is invalid Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 194/461] kunit: config: Enable KUNIT_DEBUGFS by default Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 195/461] kunit: config: KUNIT_DEBUGFS should depend on DEBUG_FS Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 196/461] pinctrl: qcom: Fix wakeirq map by removing disconnected irqs for sm8150 Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 197/461] firmware: arm_ffa: Bound PARTITION_INFO_GET_REGS copies Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 198/461] firmware: arm_ffa: Keep framework RX release under lock Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 199/461] firmware: arm_ffa: Validate framework notification message layout Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 200/461] firmware: arm_ffa: Align RxTx buffer size before mapping Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 201/461] firmware: arm_ffa: Snapshot notifier callbacks under lock Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 202/461] firmware: arm_ffa: Fix sched-recv callback partition lookup Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 203/461] ARM: integrator: Fix early initialization Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 204/461] ALSA: hda: cs35l56: Put ACPI device after setting companion Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 205/461] ALSA: hda: cs35l41: Put ACPI device on missing physical node Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 206/461] btrfs: tracepoints: fix sleep while in atomic context in btrfs_sync_file() Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 207/461] netfilter: x_tables: allow initial table replace without emitting audit log message Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 208/461] netfilter: x_tables: allocate hook ops while under mutex Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 209/461] netfilter: x_tables: unregister the templates first Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 210/461] netfilter: x_tables: add and use xt_unregister_table_pre_exit Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 211/461] netfilter: x_tables: add and use xtables_unregister_table_exit Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 212/461] netfilter: ebtables: move to two-stage removal scheme Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 213/461] netfilter: ebtables: close dangling table module init race Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 214/461] netfilter: x_tables: " Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 215/461] netfilter: bridge: eb_tables: close " Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 216/461] netfilter: nf_conntrack_expect: restore helper propagation via expectation Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 217/461] kprobes: skip non-symbol addresses in kprobe_add_ksym_blacklist() Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 218/461] test_kprobes: clear kprobes between test runs Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 219/461] tcp: Fix imbalanced icsk_accept_queue count Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 220/461] net: napi: Avoid gro timer misfiring at end of busypoll Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 221/461] net: shaper: Reject reparenting of existing nodes Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 222/461] idpf: fix read_dev_clk_lock spinlock init in idpf_ptp_init() Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 223/461] ice: fix setting RSS VSI hash for E830 Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 224/461] ice: fix locking in ice_dcb_rebuild() Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 225/461] ice: dpll: fix rclk pin state get for E810 Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 226/461] ice: dpll: fix misplaced header macros Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 227/461] net: lan966x: avoid unregistering netdev on register failure Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 228/461] net: ti: icssm-prueth: fix eth_ports_node leak in probe Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 229/461] phy: marvell: mvebu-a3700-utmi: fix incorrect USB2_PHY_CTRL register access Greg Kroah-Hartman
2026-05-28 19:45 ` [PATCH 7.0 230/461] phy: spacemit: Remove incorrect clk_disable() in spacemit_usb2phy_init() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 231/461] NFSD: Fix infinite loop in layout state revocation Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 232/461] ASoC: sdw_utils: Add quirk to ignore RT712 CODEC_MIC Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 233/461] ASoC: sdw_utils: Add quirk to ignore RT721 CODEC_MIC Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 234/461] fprobe: Fix unregister_fprobe() to wait for RCU grace period Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 235/461] fs/statmount: fix slab out-of-bounds write in statmount_mnt_idmap Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 236/461] fs: Fix return in jfs_mkdir and orangefs_mkdir Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 237/461] irqchip/ath79-cpu: Remove unused function Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 238/461] fs: fix forced iversion increment on lazytime timestamp updates Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 239/461] ublk: reject max_sectors smaller than PAGE_SECTORS in parameter validation Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 240/461] nsfs: fix wrong error code returned for pidns ioctls Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 241/461] irq_work: Fix use-after-free in irq_work_single() on PREEMPT_RT Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 242/461] nvme: fix bio leak on mapping failure Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 243/461] nvme-pci: fix use-after-free in nvme_free_host_mem() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 244/461] zonefs: handle integer overflow in zonefs_fname_to_fno Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 245/461] tcp: Fix out-of-bounds access for twsk in tcp_ao_established_key() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 246/461] ASoC: SOF: amd: Fix error code handling in psp_send_cmd() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 247/461] powerpc: 82xx: fix uninitialized pointers with free attribute Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 248/461] powerpc: fix dead default for GUEST_STATE_BUFFER_TEST Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 249/461] powerpc/hv-gpci: fix preempt count leak in sysfs show paths Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 250/461] netfs: Fix cancellation of a DIO and single read subrequests Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 251/461] netfs: Fix missing locking around retry adding new subreqs Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 252/461] netfs: Fix missing barriers when accessing stream->subrequests locklessly Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 253/461] netfs: Fix netfs_read_to_pagecache() to pause on subreq failure Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 254/461] netfs: Fix potential for tearing in ->remote_i_size and ->zero_point Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 255/461] netfs: Fix zeropoint update where i_size > remote_i_size Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 256/461] netfs: fix VM_BUG_ON_FOLIO() issue in netfs_write_begin() call Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 257/461] netfs: Fix overrun check in netfs_extract_user_iter() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 258/461] netfs: Fix netfs_invalidate_folio() to clear dirty bit if all changes gone Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 259/461] netfs: Defer the emission of trace_netfs_folio() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 260/461] netfs: Fix streaming write being overwritten Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 261/461] netfs: Fix potential deadlock in write-through mode Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 262/461] netfs: Fix read-gaps to remove netfs_folio from filled folio Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 263/461] netfs: Fix write streaming disablement if fd open O_RDWR Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 264/461] netfs: Fix early put of sink folio in netfs_read_gaps() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 265/461] netfs: Fix leak of request in netfs_write_begin() error handling Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 266/461] netfs: Fix potential UAF in netfs_unlock_abandoned_read_pages() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 267/461] netfs: Fix partial invalidation of streaming-write folio Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 268/461] netfs: Fix folio->private handling in netfs_perform_write() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 269/461] netfs: Fix netfs_read_folio() to wait on writeback Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 270/461] netfs, afs: Fix write skipping in dir/link writepages Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 271/461] afs: Fix the locking used by afs_get_link() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 272/461] net: ethernet: cortina: Make RX SKB per-port Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 273/461] net: ethernet: cortina: Drop half-assembled SKB Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 274/461] net: ethernet: cortina: Carry over frag counter Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 275/461] net: ethernet: cs89x0: remove stale CONFIG_MACH_MX31ADS reference Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 276/461] wifi: ath11k: fix error path leaks in some WMI WOW calls Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 277/461] wifi: ath11k: fix error path leak in ath11k_tm_cmd_wmi_ftm() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 278/461] wifi: ath10k: skip WMI and beacon transmission when device is wedged Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 279/461] net: shaper: flip the polarity of the valid flag Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 280/461] net: shaper: fix trivial ordering issue in net_shaper_commit() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 281/461] net: shaper: reject duplicate leaves in GROUP request Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 282/461] net: shaper: set ret to -ENOMEM when genlmsg_new() fails in group_doit Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 283/461] net: shaper: fix undersized reply skb allocation in GROUP command Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 284/461] net: shaper: reject handle IDs exceeding internal bit-width Greg Kroah-Hartman
2026-05-29  4:23   ` Thorsten Leemhuis
2026-05-29 12:44     ` Sasha Levin
2026-05-28 19:46 ` [PATCH 7.0 285/461] net: shaper: enforce singleton NETDEV scope with id 0 Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 286/461] net: shaper: reject QUEUE scope handle with missing id Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 287/461] block: dont overwrite bip_vcnt in bio_integrity_copy_user() Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 288/461] block: recompute nr_integrity_segments in blk_insert_cloned_request Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 289/461] HID: quirks: really enable the intended work around for appledisplay Greg Kroah-Hartman
2026-05-28 19:46 ` [PATCH 7.0 290/461] block: bio-integrity: Fix null-ptr-deref in bio_integrity_map_user() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 291/461] accel/qaic: Add overflow check to remap_pfn_range during mmap Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 292/461] net/smc: avoid NULL deref of conn->lnk in smc_msg_event tracepoint Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 293/461] ethtool: fix ethnl_bitmap32_not_zero() bit interval semantics Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 294/461] drm/msm/dpu: fix UV scanlines calculation for YUV UBWC formats Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 295/461] drm/msm/dpu: Fix Kaanapali CWB register configuration Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 296/461] drm/msm/dsi: dont dump registers past the mapped region Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 297/461] drm/msm/dpu: dont mix devm and drmm functions Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 298/461] block: rename struct gendisk zone_wplugs_lock field Greg Kroah-Hartman
2026-05-28 19:47 ` Greg Kroah-Hartman [this message]
2026-05-28 19:47 ` [PATCH 7.0 300/461] block: fix handling of dead zone write plugs Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 301/461] selftests: ublk: cap nthreads to kernels actual nr_hw_queues Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 302/461] x86/mce: Restore MCA polling interval halving Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 303/461] Documentation: intel_pstate: Fix description of asymmetric packing with SMT Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 304/461] drm/msm: Fix GMEM_BASE for A650 Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 305/461] drm/msm/a6xx: Add soft fuse detection support Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 306/461] drm/msm/adreno: Fix a reference leak in a6xx_gpu_init() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 307/461] drm/msm/adreno: fix userspace-triggered crash on a2xx-a4xx Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 308/461] drm/msm/a6xx: Restore sysprof_active Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 309/461] drm/msm: Fix iommu_map_sgtable() return value check and avoid WARN Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 310/461] drm/msm/a6xx: Check kzalloc return in a8xx_hfi_send_perf_table Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 311/461] ASoC: intel: sof_sdw: Prepare for configuration without a jack Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 312/461] ASoC: sdw_utils: cs42l43: allow spk component names to be combined Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 313/461] ASoC: sdw_utils: Check speaker component string allocation Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 314/461] riscv: Docs: fix unmatched quote warning Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 315/461] powerpc/time: Remove redundant preempt_disable|enable() calls from arch_irq_work_raise() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 316/461] net/smc: reject CHID-0 ACCEPT that matches an empty ism_dev slot Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 317/461] net: tls: fix off-by-one in sg_chain entry count for wrapped sk_msg ring Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 318/461] net: tls: prevent chain-after-chain in plain text SG Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 319/461] net: phy: DP83TC811: add reading of abilities Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 320/461] ovpn: tcp - use cached peer pointer in ovpn_tcp_close() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 321/461] ovpn: respect peer refcount in CMD_NEW_PEER error path Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 322/461] ovpn: fix race between deleting interface and adding new peer Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 323/461] cifs: client: stage smb3_reconfigure() updates and restore ctx on failure Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 324/461] phy: apple: atc: Fix typec switch/mux leak on unbind Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 325/461] gcc-plugins: Always define CONST_CAST_GIMPLE and CONST_CAST_TREE Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 326/461] x86/xen: Fix xen_e820_swap_entry_with_ram() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 327/461] vfio/pci: Check BAR resources before exporting a DMABUF Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 328/461] ovpn: disable BHs when updating device stats Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 329/461] tls: Preserve sk_err across recvmsg() when data has been copied Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 330/461] net/mlx5: Do not restore destination-less TC rules Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 331/461] net/mlx5: Skip disabled vports when setting max TX speed Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 332/461] scsi: sd: Fix return code handling in sd_spinup_disk() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 333/461] ASoC: codecs: fs210x: fix possible buffer overflow Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 334/461] iommupt: Directly call iommupts unmap_range() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 335/461] iommupt: Avoid rewalking during map Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 336/461] iommu: Fix loss of errno on map failure for classic ops Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 337/461] iommu: Fix up map/unmap debugging for iommupt domains Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 338/461] iommu: Handle unmap error when iommu_debug is enabled Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 339/461] iommupt: Check for missing PAGE_SIZE in the pgsize_bitmap Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 340/461] iommupt: Fix the end_index calculation in __map_range_leaf() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 341/461] ALSA: scarlett2: Add missing error check when initialise Autogain Status Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 342/461] ALSA: hda/ca0132: Disable auto-detect on manual output select Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 343/461] cachefiles: Fix error return when vfs_mkdir() fails Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 344/461] io_uring/net: punt IORING_OP_BIND async if it needs file create Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 345/461] vsock/virtio: fix zerocopy completion for multi-skb sends Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 346/461] btrfs: check for subvolume before deleting squota qgroup Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 347/461] btrfs: fix squota accounting during enable generation Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 348/461] ASoC: amd: acp-sdw-legacy: check CPU DAI name before logging Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 349/461] spi: mtk-snfi: Fix resource leak in mtk_snand_read_page_cache() Greg Kroah-Hartman
2026-05-28 19:47 ` [PATCH 7.0 350/461] netfilter: nft_inner: release local_lock before re-enabling softirqs Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 351/461] ALSA: hda/realtek: Use ALC287_FIXUP_TXNW2781_I2C for ASUS Strix Gxx5 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 352/461] drm/msm/snapshot: fix dumping of the unaligned regions Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 353/461] hwmon: (lm90) Stop work before releasing hwmon device Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 354/461] hwmon: (lm90) Add lock protection to lm90_alert Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 355/461] wifi: iwlwifi: mld: fix TSO segmentation explosion when AMSDU is disabled Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 356/461] wifi: iwlwifi: mld: dont dereference a pointer before NULL checking it Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 357/461] dma-mapping: move dma_map_resource() sanity check into debug code Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 358/461] drm/gem: Make the GEM LRU lock part of drm_device Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 359/461] drm/xe/gsc: Fix double-free of managed BO in error path Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 360/461] drm/xe/vf: Fix signature of print functions Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 361/461] drm/xe/pf: Fix CFI failure in debugfs access Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 362/461] drm/xe: Consolidate workaround entries for Wa_14019988906 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 363/461] drm/xe: Consolidate workaround entries for Wa_18033852989 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 364/461] drm/xe: Define and use MCR version of COMMON_SLICE_CHICKEN1 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 365/461] drm/xe/tuning: Apply windower hardware filtering setting on Xe3 and Xe3p Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 366/461] drm/xe: Define and use MCR version of COMMON_SLICE_CHICKEN4 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 367/461] wifi: ath11k: fix peer resolution on rx path when peer_id=0 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 368/461] wifi: ath12k: fix EHT TX MCS limitation due to wrong 20 MHz-only parsing Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 369/461] drm/mediatek: mtk_hdmi_ddc_v2: Fix non-static global variable Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 370/461] drm/mediatek: mtk_hdmi_v2: " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 371/461] drm/mediatek: mtk_cec: " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 372/461] drm/mediatek: mtk_hdmi_ddc: " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 373/461] io_uring: propagate array_index_nospec opcode into req->opcode Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 374/461] srcu: Dont queue workqueue handlers to never-online CPUs Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 375/461] cgroup/rstat: validate cpu before css_rstat_cpu() access Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 376/461] net/mlx5e: xsk: Fix unlocked writing to ICOSQ Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 377/461] cifs: Fix undefined variables Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 378/461] ice: ptp: serialize E825 PHY timer start with PTP lock Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 379/461] ice: ptp: use primary NAC semaphore on E825 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 380/461] igc: set tx buffer type for SMD frames Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 381/461] drm/i915/dp: Fix readback for target_rr in Adaptive Sync SDP Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 382/461] phy: qcom: qmp-usbc: Fix out-of-bounds array access in dp swing config Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 383/461] kbuild: pacman-pkg: make "rc" releases adhere to pacman versioning scheme Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 384/461] net: dsa: mt7530: fix FDB entries not aging out with short timeout Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 385/461] net: dsa: mt7530: preserve VLAN tags on trapped link-local frames Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 386/461] net: mana: Fix TOCTOU double-fetch of hwc_msg_id from DMA buffer Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 387/461] platform/surface: aggregator_registry: omit battery & AC nodes on Surface Laptop 7 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 388/461] platform/x86: adv_swbutton: Check ACPI_HANDLE() against NULL Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 389/461] platform/x86: hp_accel: Check ACPI_COMPANION() " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 390/461] platform/x86: intel-hid: Check ACPI_HANDLE() " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 391/461] platform/x86: intel_sar: " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 392/461] platform/x86: intel-vbtn: " Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 393/461] platform/x86: uniwill-laptop: Properly initialize charging threshold Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 394/461] platform/x86: uniwill-laptop: Accept charging threshold of 0 Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 395/461] platform/x86: uniwill-laptop: Fix behavior of "force" module param Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 396/461] platform/x86: asus-armoury: fix mini-LED mode get/set on MODE2 devices Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 397/461] ASoC: soc-utils: Add missing va_end in snd_soc_ret() Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 398/461] drm/amdgpu: Align amdgpu_gtt_mgr entries to TLB size on Tahiti (v2) Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 399/461] drm/amdgpu/vce1: Check that the GPU address is < 128 MiB Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 400/461] drm/amdgpu/vce1: Fix VCE 1 firmware size and offsets Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 401/461] RDMA/mana_ib: Report max_msg_sz in mana_ib_query_port Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 402/461] RDMA/rtrs: Fix use-after-free in path file creation cleanup Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 403/461] bridge: mcast: Fix a possible use-after-free when removing a bridge port Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 404/461] net: phy: honor eee_disabled_modes in phy_support_eee() Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 405/461] net: phy: honor eee_disabled_modes in phy_advertise_eee_all() Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 406/461] net: airoha: Fix NPU RX DMA descriptor bits Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 407/461] pds_core: fix error handling in pdsc_devcmd_wait Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 408/461] pds_core: fix debugfs_lookup dentry leak and error handling Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 409/461] erofs: fix managed cache race for unaligned extents Greg Kroah-Hartman
2026-05-28 19:48 ` [PATCH 7.0 410/461] erofs: harden h_shared_count in erofs_init_inode_xattrs() Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 411/461] erofs: fix metabuf leak in inode xattr initialization Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 412/461] wifi: mac80211: bounds-check link_id in ieee80211_ml_epcs Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 413/461] wifi: mac80211: fix MLE defragmentation Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 414/461] wifi: mac80211: fix multi-link element inheritance Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 415/461] wifi: wilc1000: fix dma_buffer leak on bus acquire failure Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 416/461] ALSA: seq: Serialize UMP output teardown with event_input Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 417/461] cgroup: rstat: relax NMI guard after switch to try_cmpxchg Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 418/461] tracing: Avoid NULL return from hist_field_name() on truncation Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 419/461] Bluetooth: hci_sync: Fix not setting mask for HCI_EVT_LE_ALL_REMOTE_FEATURES_COMPLETE Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 420/461] Bluetooth: btintel_pcie: Fix incorrect MAC access programming Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 421/461] Bluetooth: btmtk: fix urb->setup_packet leak in error paths Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 422/461] udp: gso: Fix handling checksum in __udp_gso_segment Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 423/461] udp: Fix UDP length on last GSO_PARTIAL segment Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 424/461] net/mlx5e: Fix eswitch mode block underflow on IPsec acquire SA Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 425/461] net: shaper: annotate the data races Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 426/461] net: shaper: rework the VALID marking (again) Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 427/461] crypto/krb5, rxrpc: Fix lack of pre-decrypt/pre-verify length checks Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 428/461] rxrpc: Fix DATA decrypt vs splice() by copying data to buffer in recvmsg Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 429/461] net: ag71xx: check error for platform_get_irq Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 430/461] bpf, skmsg: fix verdict sk_data_ready racing with ktls rx Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 431/461] tcp: fix stale per-CPU tcp_tw_isn leak enabling ISN prediction Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 432/461] net: stmmac: eswin: fix HSP CSR init ordering after clock enable Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 433/461] net: stmmac: eswin: clear TXD and RXD delay registers during initialization Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 434/461] net: stmmac: eswin: correct RGMII delay granularity to 20 ps Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 435/461] net: stmmac: eswin: validate RGMII delay values Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 436/461] gpio: cdev: check if uAPI v2 config attributes are correctly zeroed Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 437/461] gpio: aggregator: fix a potential use-after-free Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 438/461] gpio: aggregator: stop using dev-sync-probe Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 439/461] gpio: aggregator: remove the software node when deactivating the aggregator Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 440/461] gpio: aggregator: lock device when calling device_is_bound() Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 441/461] ASoC: cs35l56: Fix flushing of IRQ work in cs35l56_sdw_remove() Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 442/461] drm/xe/oa: Fix exec_queue leak on width check in stream open Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 443/461] ASoC: cs-amp-lib: Fix wrong sizeof() in _cs_amp_set_efi_calibration_data() Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 444/461] ASoC: cs-amp-lib: Fix missing dput() after debugfs_lookup() Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 445/461] selftests: net: Fix checksums in xdp_native Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 446/461] nvme-pci: fix dma_vecs leak on p2p memory Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 447/461] nvme-pci: fix dma mapping leak on data setup error Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 448/461] octeontx2-af: npc: Fix allmulticast skip logic for LBK and SDP VFs Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 449/461] net: mana: validate rx_req_idx to prevent out-of-bounds array access Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 450/461] tap: fix stack info leak in tap_ioctl() SIOCGIFHWADDR Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 451/461] net: airoha: Disable GDM2 forwarding before configuring GDM2 loopback Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 452/461] pds_core: ensure null-termination for firmware version strings Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 453/461] net: gro: dont merge zcopy skbs Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 454/461] net: enetc: fix missing error code when pf->vf_state allocation fails Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 455/461] io_uring/nop: pass all errors to userspace Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 456/461] blk-mq: pop cached request if it is usable Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 457/461] ksmbd: fix durable reconnect error path file lifetime Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 458/461] LoongArch: kprobes: Fix handling of fatal unrecoverable recursions Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 459/461] block: avoid use-after-free in disk_free_zone_resources() Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 460/461] Documentation: laptops: Update documentation for uniwill laptops Greg Kroah-Hartman
2026-05-28 19:49 ` [PATCH 7.0 461/461] platform/x86: uniwill-laptop: Do not enable the charging limit even when forced Greg Kroah-Hartman
2026-05-28 21:21 ` [PATCH 7.0 000/461] 7.0.11-rc1 review Ronald Warsow
2026-05-28 22:38 ` Holger Hoffstätte
2026-05-29  0:11 ` Takeshi Ogasawara
2026-05-29  5:27   ` Luna Jernberg
2026-05-29  5:26 ` Ron Economos
2026-05-29  5:41 ` Miguel Ojeda
2026-05-29 19:16   ` Sasha Levin
2026-05-29 19:23     ` Miguel Ojeda
2026-05-29  6:33 ` Brett A C Sheffield
2026-05-29  8:28 ` Pavel Machek
2026-05-29 10:16 ` Jeffrin Thalakkottoor
2026-05-29 12:41 ` Peter Schneider
2026-05-29 17:44 ` Masoud Aghasi
2026-05-29 20:19 ` Florian Fainelli

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=20260528194655.886866034@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=axboe@kernel.dk \
    --cc=bvanassche@acm.org \
    --cc=dlemoal@kernel.org \
    --cc=hch@lst.de \
    --cc=johannes.thumshirn@wdc.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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