From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Hongyu Jin <hongyu.jin@unisoc.com>,
Yibin Ding <yibin.ding@unisoc.com>,
Eric Biggers <ebiggers@google.com>,
Mikulas Patocka <mpatocka@redhat.com>,
Mike Snitzer <snitzer@kernel.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 447/451] dm io: Support IO priority
Date: Sun, 24 Mar 2024 19:12:03 -0400 [thread overview]
Message-ID: <20240324231207.1351418-448-sashal@kernel.org> (raw)
In-Reply-To: <20240324231207.1351418-1-sashal@kernel.org>
From: Hongyu Jin <hongyu.jin@unisoc.com>
[ Upstream commit 6e5f0f6383b4896c7e9b943d84b136149d0f45e9 ]
Some IO will dispatch from kworker with different io_context settings
than the submitting task, we may need to specify a priority to avoid
losing priority.
Add IO priority parameter to dm_io() and update all callers.
Co-developed-by: Yibin Ding <yibin.ding@unisoc.com>
Signed-off-by: Yibin Ding <yibin.ding@unisoc.com>
Signed-off-by: Hongyu Jin <hongyu.jin@unisoc.com>
Reviewed-by: Eric Biggers <ebiggers@google.com>
Reviewed-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
Stable-dep-of: b4d78cfeb304 ("dm-integrity: align the outgoing bio in integrity_recheck")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/md/dm-bufio.c | 6 +++---
drivers/md/dm-integrity.c | 12 ++++++------
drivers/md/dm-io.c | 23 +++++++++++++----------
drivers/md/dm-kcopyd.c | 4 ++--
drivers/md/dm-log.c | 4 ++--
drivers/md/dm-raid1.c | 6 +++---
drivers/md/dm-snap-persistent.c | 4 ++--
drivers/md/dm-verity-target.c | 2 +-
drivers/md/dm-writecache.c | 8 ++++----
include/linux/dm-io.h | 3 ++-
10 files changed, 38 insertions(+), 34 deletions(-)
diff --git a/drivers/md/dm-bufio.c b/drivers/md/dm-bufio.c
index 100a6a236d92a..ec662f97ba828 100644
--- a/drivers/md/dm-bufio.c
+++ b/drivers/md/dm-bufio.c
@@ -614,7 +614,7 @@ static void use_dmio(struct dm_buffer *b, enum req_op op, sector_t sector,
io_req.mem.ptr.vma = (char *)b->data + offset;
}
- r = dm_io(&io_req, 1, ®ion, NULL);
+ r = dm_io(&io_req, 1, ®ion, NULL, IOPRIO_DEFAULT);
if (unlikely(r))
b->end_io(b, errno_to_blk_status(r));
}
@@ -1375,7 +1375,7 @@ int dm_bufio_issue_flush(struct dm_bufio_client *c)
BUG_ON(dm_bufio_in_request());
- return dm_io(&io_req, 1, &io_reg, NULL);
+ return dm_io(&io_req, 1, &io_reg, NULL, IOPRIO_DEFAULT);
}
EXPORT_SYMBOL_GPL(dm_bufio_issue_flush);
@@ -1398,7 +1398,7 @@ int dm_bufio_issue_discard(struct dm_bufio_client *c, sector_t block, sector_t c
BUG_ON(dm_bufio_in_request());
- return dm_io(&io_req, 1, &io_reg, NULL);
+ return dm_io(&io_req, 1, &io_reg, NULL, IOPRIO_DEFAULT);
}
EXPORT_SYMBOL_GPL(dm_bufio_issue_discard);
diff --git a/drivers/md/dm-integrity.c b/drivers/md/dm-integrity.c
index 94382e43ea506..aff818eb31fbb 100644
--- a/drivers/md/dm-integrity.c
+++ b/drivers/md/dm-integrity.c
@@ -579,7 +579,7 @@ static int sync_rw_sb(struct dm_integrity_c *ic, blk_opf_t opf)
}
}
- r = dm_io(&io_req, 1, &io_loc, NULL);
+ r = dm_io(&io_req, 1, &io_loc, NULL, IOPRIO_DEFAULT);
if (unlikely(r))
return r;
@@ -1089,7 +1089,7 @@ static void rw_journal_sectors(struct dm_integrity_c *ic, blk_opf_t opf,
io_loc.sector = ic->start + SB_SECTORS + sector;
io_loc.count = n_sectors;
- r = dm_io(&io_req, 1, &io_loc, NULL);
+ r = dm_io(&io_req, 1, &io_loc, NULL, IOPRIO_DEFAULT);
if (unlikely(r)) {
dm_integrity_io_error(ic, (opf & REQ_OP_MASK) == REQ_OP_READ ?
"reading journal" : "writing journal", r);
@@ -1205,7 +1205,7 @@ static void copy_from_journal(struct dm_integrity_c *ic, unsigned int section, u
io_loc.sector = target;
io_loc.count = n_sectors;
- r = dm_io(&io_req, 1, &io_loc, NULL);
+ r = dm_io(&io_req, 1, &io_loc, NULL, IOPRIO_DEFAULT);
if (unlikely(r)) {
WARN_ONCE(1, "asynchronous dm_io failed: %d", r);
fn(-1UL, data);
@@ -1532,7 +1532,7 @@ static void dm_integrity_flush_buffers(struct dm_integrity_c *ic, bool flush_dat
fr.io_reg.count = 0,
fr.ic = ic;
init_completion(&fr.comp);
- r = dm_io(&fr.io_req, 1, &fr.io_reg, NULL);
+ r = dm_io(&fr.io_req, 1, &fr.io_reg, NULL, IOPRIO_DEFAULT);
BUG_ON(r);
}
@@ -1737,7 +1737,7 @@ static noinline void integrity_recheck(struct dm_integrity_io *dio, char *checks
io_loc.sector = sector;
io_loc.count = ic->sectors_per_block;
- r = dm_io(&io_req, 1, &io_loc, NULL);
+ r = dm_io(&io_req, 1, &io_loc, NULL, IOPRIO_DEFAULT);
if (unlikely(r)) {
dio->bi_status = errno_to_blk_status(r);
goto free_ret;
@@ -2774,7 +2774,7 @@ static void integrity_recalc(struct work_struct *w)
io_loc.sector = get_data_sector(ic, area, offset);
io_loc.count = n_sectors;
- r = dm_io(&io_req, 1, &io_loc, NULL);
+ r = dm_io(&io_req, 1, &io_loc, NULL, IOPRIO_DEFAULT);
if (unlikely(r)) {
dm_integrity_io_error(ic, "reading data", r);
goto err;
diff --git a/drivers/md/dm-io.c b/drivers/md/dm-io.c
index e488b05e35fa3..ec97658387c39 100644
--- a/drivers/md/dm-io.c
+++ b/drivers/md/dm-io.c
@@ -295,7 +295,7 @@ static void km_dp_init(struct dpages *dp, void *data)
*---------------------------------------------------------------*/
static void do_region(const blk_opf_t opf, unsigned int region,
struct dm_io_region *where, struct dpages *dp,
- struct io *io)
+ struct io *io, unsigned short ioprio)
{
struct bio *bio;
struct page *page;
@@ -344,6 +344,7 @@ static void do_region(const blk_opf_t opf, unsigned int region,
&io->client->bios);
bio->bi_iter.bi_sector = where->sector + (where->count - remaining);
bio->bi_end_io = endio;
+ bio->bi_ioprio = ioprio;
store_io_and_region_in_bio(bio, io, region);
if (op == REQ_OP_DISCARD || op == REQ_OP_WRITE_ZEROES) {
@@ -371,7 +372,7 @@ static void do_region(const blk_opf_t opf, unsigned int region,
static void dispatch_io(blk_opf_t opf, unsigned int num_regions,
struct dm_io_region *where, struct dpages *dp,
- struct io *io, int sync)
+ struct io *io, int sync, unsigned short ioprio)
{
int i;
struct dpages old_pages = *dp;
@@ -388,7 +389,7 @@ static void dispatch_io(blk_opf_t opf, unsigned int num_regions,
for (i = 0; i < num_regions; i++) {
*dp = old_pages;
if (where[i].count || (opf & REQ_PREFLUSH))
- do_region(opf, i, where + i, dp, io);
+ do_region(opf, i, where + i, dp, io, ioprio);
}
/*
@@ -413,7 +414,7 @@ static void sync_io_complete(unsigned long error, void *context)
static int sync_io(struct dm_io_client *client, unsigned int num_regions,
struct dm_io_region *where, blk_opf_t opf, struct dpages *dp,
- unsigned long *error_bits)
+ unsigned long *error_bits, unsigned short ioprio)
{
struct io *io;
struct sync_io sio;
@@ -435,7 +436,7 @@ static int sync_io(struct dm_io_client *client, unsigned int num_regions,
io->vma_invalidate_address = dp->vma_invalidate_address;
io->vma_invalidate_size = dp->vma_invalidate_size;
- dispatch_io(opf, num_regions, where, dp, io, 1);
+ dispatch_io(opf, num_regions, where, dp, io, 1, ioprio);
wait_for_completion_io(&sio.wait);
@@ -447,7 +448,8 @@ static int sync_io(struct dm_io_client *client, unsigned int num_regions,
static int async_io(struct dm_io_client *client, unsigned int num_regions,
struct dm_io_region *where, blk_opf_t opf,
- struct dpages *dp, io_notify_fn fn, void *context)
+ struct dpages *dp, io_notify_fn fn, void *context,
+ unsigned short ioprio)
{
struct io *io;
@@ -467,7 +469,7 @@ static int async_io(struct dm_io_client *client, unsigned int num_regions,
io->vma_invalidate_address = dp->vma_invalidate_address;
io->vma_invalidate_size = dp->vma_invalidate_size;
- dispatch_io(opf, num_regions, where, dp, io, 0);
+ dispatch_io(opf, num_regions, where, dp, io, 0, ioprio);
return 0;
}
@@ -509,7 +511,8 @@ static int dp_init(struct dm_io_request *io_req, struct dpages *dp,
}
int dm_io(struct dm_io_request *io_req, unsigned int num_regions,
- struct dm_io_region *where, unsigned long *sync_error_bits)
+ struct dm_io_region *where, unsigned long *sync_error_bits,
+ unsigned short ioprio)
{
int r;
struct dpages dp;
@@ -520,11 +523,11 @@ int dm_io(struct dm_io_request *io_req, unsigned int num_regions,
if (!io_req->notify.fn)
return sync_io(io_req->client, num_regions, where,
- io_req->bi_opf, &dp, sync_error_bits);
+ io_req->bi_opf, &dp, sync_error_bits, ioprio);
return async_io(io_req->client, num_regions, where,
io_req->bi_opf, &dp, io_req->notify.fn,
- io_req->notify.context);
+ io_req->notify.context, ioprio);
}
EXPORT_SYMBOL(dm_io);
diff --git a/drivers/md/dm-kcopyd.c b/drivers/md/dm-kcopyd.c
index 0ef78e56aa88c..fda51bd140ed3 100644
--- a/drivers/md/dm-kcopyd.c
+++ b/drivers/md/dm-kcopyd.c
@@ -572,9 +572,9 @@ static int run_io_job(struct kcopyd_job *job)
io_job_start(job->kc->throttle);
if (job->op == REQ_OP_READ)
- r = dm_io(&io_req, 1, &job->source, NULL);
+ r = dm_io(&io_req, 1, &job->source, NULL, IOPRIO_DEFAULT);
else
- r = dm_io(&io_req, job->num_dests, job->dests, NULL);
+ r = dm_io(&io_req, job->num_dests, job->dests, NULL, IOPRIO_DEFAULT);
return r;
}
diff --git a/drivers/md/dm-log.c b/drivers/md/dm-log.c
index b7dd5a0cd58ba..da77878cb2c02 100644
--- a/drivers/md/dm-log.c
+++ b/drivers/md/dm-log.c
@@ -295,7 +295,7 @@ static int rw_header(struct log_c *lc, enum req_op op)
{
lc->io_req.bi_opf = op;
- return dm_io(&lc->io_req, 1, &lc->header_location, NULL);
+ return dm_io(&lc->io_req, 1, &lc->header_location, NULL, IOPRIO_DEFAULT);
}
static int flush_header(struct log_c *lc)
@@ -308,7 +308,7 @@ static int flush_header(struct log_c *lc)
lc->io_req.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
- return dm_io(&lc->io_req, 1, &null_location, NULL);
+ return dm_io(&lc->io_req, 1, &null_location, NULL, IOPRIO_DEFAULT);
}
static int read_header(struct log_c *log)
diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
index 2327645fc0648..1004199ae77ac 100644
--- a/drivers/md/dm-raid1.c
+++ b/drivers/md/dm-raid1.c
@@ -273,7 +273,7 @@ static int mirror_flush(struct dm_target *ti)
}
error_bits = -1;
- dm_io(&io_req, ms->nr_mirrors, io, &error_bits);
+ dm_io(&io_req, ms->nr_mirrors, io, &error_bits, IOPRIO_DEFAULT);
if (unlikely(error_bits != 0)) {
for (i = 0; i < ms->nr_mirrors; i++)
if (test_bit(i, &error_bits))
@@ -543,7 +543,7 @@ static void read_async_bio(struct mirror *m, struct bio *bio)
map_region(&io, m, bio);
bio_set_m(bio, m);
- BUG_ON(dm_io(&io_req, 1, &io, NULL));
+ BUG_ON(dm_io(&io_req, 1, &io, NULL, IOPRIO_DEFAULT));
}
static inline int region_in_sync(struct mirror_set *ms, region_t region,
@@ -670,7 +670,7 @@ static void do_write(struct mirror_set *ms, struct bio *bio)
*/
bio_set_m(bio, get_default_mirror(ms));
- BUG_ON(dm_io(&io_req, ms->nr_mirrors, io, NULL));
+ BUG_ON(dm_io(&io_req, ms->nr_mirrors, io, NULL, IOPRIO_DEFAULT));
}
static void do_writes(struct mirror_set *ms, struct bio_list *writes)
diff --git a/drivers/md/dm-snap-persistent.c b/drivers/md/dm-snap-persistent.c
index 80b95746a43e0..eee1cd3aa3fcf 100644
--- a/drivers/md/dm-snap-persistent.c
+++ b/drivers/md/dm-snap-persistent.c
@@ -220,7 +220,7 @@ static void do_metadata(struct work_struct *work)
{
struct mdata_req *req = container_of(work, struct mdata_req, work);
- req->result = dm_io(req->io_req, 1, req->where, NULL);
+ req->result = dm_io(req->io_req, 1, req->where, NULL, IOPRIO_DEFAULT);
}
/*
@@ -244,7 +244,7 @@ static int chunk_io(struct pstore *ps, void *area, chunk_t chunk, blk_opf_t opf,
struct mdata_req req;
if (!metadata)
- return dm_io(&io_req, 1, &where, NULL);
+ return dm_io(&io_req, 1, &where, NULL, IOPRIO_DEFAULT);
req.where = &where;
req.io_req = &io_req;
diff --git a/drivers/md/dm-verity-target.c b/drivers/md/dm-verity-target.c
index b48e1b59e6da4..6a707b41dc865 100644
--- a/drivers/md/dm-verity-target.c
+++ b/drivers/md/dm-verity-target.c
@@ -503,7 +503,7 @@ static noinline int verity_recheck(struct dm_verity *v, struct dm_verity_io *io,
io_loc.bdev = v->data_dev->bdev;
io_loc.sector = cur_block << (v->data_dev_block_bits - SECTOR_SHIFT);
io_loc.count = 1 << (v->data_dev_block_bits - SECTOR_SHIFT);
- r = dm_io(&io_req, 1, &io_loc, NULL);
+ r = dm_io(&io_req, 1, &io_loc, NULL, IOPRIO_DEFAULT);
if (unlikely(r))
goto free_ret;
diff --git a/drivers/md/dm-writecache.c b/drivers/md/dm-writecache.c
index a705e24d3e2b6..20fc84b24fc75 100644
--- a/drivers/md/dm-writecache.c
+++ b/drivers/md/dm-writecache.c
@@ -531,7 +531,7 @@ static void ssd_commit_flushed(struct dm_writecache *wc, bool wait_for_ios)
req.notify.context = &endio;
/* writing via async dm-io (implied by notify.fn above) won't return an error */
- (void) dm_io(&req, 1, ®ion, NULL);
+ (void) dm_io(&req, 1, ®ion, NULL, IOPRIO_DEFAULT);
i = j;
}
@@ -568,7 +568,7 @@ static void ssd_commit_superblock(struct dm_writecache *wc)
req.notify.fn = NULL;
req.notify.context = NULL;
- r = dm_io(&req, 1, ®ion, NULL);
+ r = dm_io(&req, 1, ®ion, NULL, IOPRIO_DEFAULT);
if (unlikely(r))
writecache_error(wc, r, "error writing superblock");
}
@@ -596,7 +596,7 @@ static void writecache_disk_flush(struct dm_writecache *wc, struct dm_dev *dev)
req.client = wc->dm_io;
req.notify.fn = NULL;
- r = dm_io(&req, 1, ®ion, NULL);
+ r = dm_io(&req, 1, ®ion, NULL, IOPRIO_DEFAULT);
if (unlikely(r))
writecache_error(wc, r, "error flushing metadata: %d", r);
}
@@ -984,7 +984,7 @@ static int writecache_read_metadata(struct dm_writecache *wc, sector_t n_sectors
req.client = wc->dm_io;
req.notify.fn = NULL;
- return dm_io(&req, 1, ®ion, NULL);
+ return dm_io(&req, 1, ®ion, NULL, IOPRIO_DEFAULT);
}
static void writecache_resume(struct dm_target *ti)
diff --git a/include/linux/dm-io.h b/include/linux/dm-io.h
index 92e7abfe04f92..70b3737052dd2 100644
--- a/include/linux/dm-io.h
+++ b/include/linux/dm-io.h
@@ -79,7 +79,8 @@ void dm_io_client_destroy(struct dm_io_client *client);
* error occurred doing io to the corresponding region.
*/
int dm_io(struct dm_io_request *io_req, unsigned int num_regions,
- struct dm_io_region *region, unsigned int long *sync_error_bits);
+ struct dm_io_region *region, unsigned int long *sync_error_bits,
+ unsigned short ioprio);
#endif /* __KERNEL__ */
#endif /* _LINUX_DM_IO_H */
--
2.43.0
next prev parent reply other threads:[~2024-03-24 23:19 UTC|newest]
Thread overview: 459+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-24 23:04 [PATCH 6.1 000/451] 6.1.83-rc1 review Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 001/451] md: fix data corruption for raid456 when reshape restart while grow up Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 002/451] md/raid10: prevent soft lockup while flush writes Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 003/451] io_uring/unix: drop usage of io_uring socket Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 004/451] io_uring: drop any code related to SCM_RIGHTS Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 005/451] nfsd: allow nfsd_file_get to sanely handle a NULL pointer Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 006/451] nfsd: don't open-code clear_and_wake_up_bit Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 007/451] nfsd: NFSD_FILE_KEY_INODE only needs to find GC'ed entries Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 008/451] nfsd: simplify test_bit return in NFSD_FILE_KEY_FULL comparator Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 009/451] nfsd: don't kill nfsd_files because of lease break error Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 010/451] nfsd: add some comments to nfsd_file_do_acquire Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 011/451] nfsd: don't take/put an extra reference when putting a file Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 012/451] nfsd: update comment over __nfsd_file_cache_purge Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 013/451] nfsd: allow reaping files still under writeback Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 014/451] NFSD: Convert filecache to rhltable Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 015/451] nfsd: simplify the delayed disposal list code Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 016/451] NFSD: Fix problem of COMMIT and NFS4ERR_DELAY in infinite loop Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 017/451] NFSD: Add an nfsd4_encode_nfstime4() helper Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 018/451] nfsd: Fix creation time serialization order Sasha Levin
2024-03-28 10:30 ` Pavel Machek
2024-03-24 23:04 ` [PATCH 6.1 019/451] media: rkisp1: Fix IRQ handling due to shared interrupts Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 020/451] perf/arm-cmn: Workaround AmpereOneX errata AC04_MESH_1 (incorrect child count) Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 021/451] selftests: tls: use exact comparison in recv_partial Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 022/451] ASoC: rt5645: Make LattePanda board DMI match more precise Sasha Levin
2024-03-24 23:04 ` [PATCH 6.1 023/451] ASoC: amd: yc: Fix non-functional mic on Lenovo 82UU Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 024/451] x86/xen: Add some null pointer checking to smp.c Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 025/451] MIPS: Clear Cause.BD in instruction_pointer_set Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 026/451] HID: multitouch: Add required quirk for Synaptics 0xcddc device Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 027/451] gen_compile_commands: fix invalid escape sequence warning Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 028/451] arm64/sve: Lower the maximum allocation for the SVE ptrace regset Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 029/451] soc: microchip: Fix POLARFIRE_SOC_SYS_CTRL input prompt Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 030/451] RDMA/mlx5: Fix fortify source warning while accessing Eth segment Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 031/451] RDMA/mlx5: Relax DEVX access upon modify commands Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 032/451] riscv: dts: sifive: add missing #interrupt-cells to pmic Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 033/451] x86/mm: Move is_vsyscall_vaddr() into asm/vsyscall.h Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 034/451] x86/mm: Disallow vsyscall page read for copy_from_kernel_nofault() Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 035/451] net/iucv: fix the allocation size of iucv_path_table array Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 036/451] parisc/ftrace: add missing CONFIG_DYNAMIC_FTRACE check Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 037/451] block: sed-opal: handle empty atoms when parsing response Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 038/451] dm-verity, dm-crypt: align "struct bvec_iter" correctly Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 039/451] arm64: dts: Fix dtc interrupt_provider warnings Sasha Levin
2024-03-28 10:32 ` Pavel Machek
2024-03-24 23:05 ` [PATCH 6.1 040/451] btrfs: fix data races when accessing the reserved amount of block reserves Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 041/451] btrfs: fix data race at btrfs_use_block_rsv() when accessing block reserve Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 042/451] net: smsc95xx: add support for SYS TEC USB-SPEmodule1 Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 043/451] wifi: mac80211: only call drv_sta_rc_update for uploaded stations Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 044/451] ASoC: amd: yc: Add Lenovo ThinkBook 21J0 into DMI quirk table Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 045/451] scsi: mpt3sas: Prevent sending diag_reset when the controller is ready Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 046/451] ALSA: hda/realtek - ALC285 reduce pop noise from Headphone port Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 047/451] drm/amdgpu: Enable gpu reset for S3 abort cases on Raven series Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 048/451] ASoC: amd: yc: Fix non-functional mic on Lenovo 21J2 Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 049/451] Bluetooth: rfcomm: Fix null-ptr-deref in rfcomm_check_security Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 050/451] Bluetooth: mgmt: Fix limited discoverable off timeout Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 051/451] firewire: core: use long bus reset on gap count error Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 052/451] arm64: tegra: Set the correct PHY mode for MGBE Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 053/451] ASoC: Intel: bytcr_rt5640: Add an extra entry for the Chuwi Vi8 tablet Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 054/451] Input: gpio_keys_polled - suppress deferred probe error for gpio Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 055/451] ASoC: wm8962: Enable oscillator if selecting WM8962_FLL_OSC Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 056/451] ASoC: wm8962: Enable both SPKOUTR_ENA and SPKOUTL_ENA in mono mode Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 057/451] ASoC: wm8962: Fix up incorrect error message in wm8962_set_fll Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 058/451] do_sys_name_to_handle(): use kzalloc() to fix kernel-infoleak Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 059/451] fs: Fix rw_hint validation Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 060/451] s390/dasd: add autoquiesce feature Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 061/451] s390/dasd: Use dev_*() for device log messages Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 062/451] s390/dasd: fix double module refcount decrement Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 063/451] rcu/exp: Fix RCU expedited parallel grace period kworker allocation failure recovery Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 064/451] rcu/exp: Handle RCU expedited grace period kworker allocation failure Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 065/451] nbd: null check for nla_nest_start Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 066/451] fs/select: rework stack allocation hack for clang Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 067/451] md: Don't clear MD_CLOSING when the raid is about to stop Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 068/451] lib/cmdline: Fix an invalid format specifier in an assertion msg Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 069/451] lib: memcpy_kunit: " Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 070/451] time: test: Fix incorrect format specifier Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 071/451] rtc: test: Fix invalid " Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 072/451] io_uring/net: unify how recvmsg and sendmsg copy in the msghdr Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 073/451] io_uring/net: move receive multishot out of the generic msghdr path Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 074/451] io_uring/net: fix overflow check in io_recvmsg_mshot_prep() Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 075/451] aoe: fix the potential use-after-free problem in aoecmd_cfg_pkts Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 076/451] x86/resctrl: Implement new mba_MBps throttling heuristic Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 077/451] x86/sme: Fix memory encryption setting if enabled by default and not overridden Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 078/451] timekeeping: Fix cross-timestamp interpolation on counter wrap Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 079/451] timekeeping: Fix cross-timestamp interpolation corner case decision Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 080/451] timekeeping: Fix cross-timestamp interpolation for non-x86 Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 081/451] sched/fair: Take the scheduling domain into account in select_idle_smt() Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 082/451] sched/fair: Take the scheduling domain into account in select_idle_core() Sasha Levin
2024-03-24 23:05 ` [PATCH 6.1 083/451] wifi: ath10k: fix NULL pointer dereference in ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev() Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 084/451] wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is disabled Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 085/451] wifi: b43: Stop/wake correct queue in PIO " Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 086/451] wifi: b43: Stop correct queue in DMA worker " Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 087/451] wifi: b43: Disable QoS for bcm4331 Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 088/451] wifi: wilc1000: fix declarations ordering Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 089/451] wifi: wilc1000: fix RCU usage in connect path Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 090/451] wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 091/451] wifi: wilc1000: do not realloc workqueue everytime an interface is added Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 092/451] wifi: wilc1000: fix multi-vif management when deleting a vif Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 093/451] wifi: mwifiex: debugfs: Drop unnecessary error check for debugfs_create_dir() Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 094/451] ARM: dts: renesas: r8a73a4: Fix external clocks and clock rate Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 095/451] cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's return value Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 096/451] cpufreq: Explicitly include correct DT includes Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 097/451] cpufreq: mediatek-hw: Wait for CPU supplies before probing Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 098/451] sock_diag: annotate data-races around sock_diag_handlers[family] Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 099/451] inet_diag: annotate data-races around inet_diag_table[] Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 100/451] bpftool: Silence build warning about calloc() Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 101/451] libbpf: Apply map_set_def_max_entries() for inner_maps on creation Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 102/451] selftest/bpf: Add map_in_maps with BPF_MAP_TYPE_PERF_EVENT_ARRAY values Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 103/451] af_unix: Annotate data-race of gc_in_progress in wait_for_unix_gc() Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 104/451] cpufreq: mediatek-hw: Don't error out if supply is not found Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 105/451] libbpf: Fix faccessat() usage on Android Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 106/451] pmdomain: qcom: rpmhpd: Drop SA8540P gfx.lvl Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 107/451] arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on OSM-S i.MX8MM Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 108/451] arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL i.MX8MM Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 109/451] arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals on BL OSM-S board Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 110/451] arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals on BL board Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 111/451] arm64: dts: imx8mm-kontron: Disable pull resistors for SD card signals on BL OSM-S board Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 112/451] arm64: dts: imx8mm-kontron: Disable pull resistors for SD card signals on BL board Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 113/451] arm64: dts: imx8mm-kontron: Fix interrupt for RTC on OSM-S i.MX8MM module Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 114/451] libbpf: Add missing LIBBPF_API annotation to libbpf_set_memlock_rlim API Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 115/451] wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init is complete Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 116/451] wifi: iwlwifi: mvm: report beacon protection failures Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 117/451] wifi: iwlwifi: dbg-tlv: ensure NUL termination Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 118/451] wifi: iwlwifi: fix EWRD table validity check Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 119/451] gpio: vf610: allow disabling the vf610 driver Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 120/451] arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 121/451] pwm: atmel-hlcdc: Convert to platform remove callback returning void Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 122/451] pwm: atmel-hlcdc: Use consistent variable naming Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 123/451] pwm: atmel-hlcdc: Fix clock imbalance related to suspend support Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 124/451] net: blackhole_dev: fix build warning for ethh set but not used Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 125/451] wifi: ath11k: initialize rx_mcs_80 and rx_mcs_160 before use Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 126/451] wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer() Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 127/451] wifi: wfx: fix memory leak when starting AP Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 128/451] arm64: dts: qcom: msm8998: switch USB QMP PHY to new style of bindings Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 129/451] arm64: dts: qcom: msm8998: declare VLS CLAMP register for USB3 PHY Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 130/451] arm64: dts: qcom: sc8280xp: update UFS PHY nodes Sasha Levin
2024-03-25 7:34 ` Johan Hovold
2024-03-24 23:06 ` [PATCH 6.1 131/451] printk: Disable passing console lock owner completely during panic() Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 132/451] pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 133/451] tools/resolve_btfids: Refactor set sorting with types from btf_ids.h Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 134/451] tools/resolve_btfids: Fix cross-compilation to non-host endianness Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 135/451] wifi: iwlwifi: mvm: don't set replay counters to 0xff Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 136/451] s390/pai: fix attr_event_free upper limit for pai device drivers Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 137/451] s390/vdso: drop '-fPIC' from LDFLAGS Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 138/451] selftests: forwarding: Add missing config entries Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 139/451] selftests: forwarding: Add missing multicast routing " Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 140/451] ipv6: mcast: remove one synchronize_net() barrier in ipv6_mc_down() Sasha Levin
2024-03-28 10:35 ` Pavel Machek
2024-03-24 23:06 ` [PATCH 6.1 141/451] arm64: dts: mt8183: kukui: Split out keyboard node and describe detachables Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 142/451] arm64: dts: mt8183: Move CrosEC base detection node to kukui-based DTs Sasha Levin
2024-03-24 23:06 ` [PATCH 6.1 143/451] arm64: dts: mediatek: mt7986: add "#reset-cells" to infracfg Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 144/451] arm64: dts: mediatek: mt8192-asurada: Remove CrosEC base detection node Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 145/451] arm64: dts: mediatek: mt8192: fix vencoder clock name Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 146/451] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 147/451] bpf: Mark bpf_spin_{lock,unlock}() helpers with notrace correctly Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 148/451] selftests/bpf: Convert test_global_funcs test to test_loader framework Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 149/451] selftests/bpf: Add global subprog context passing tests Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 150/451] bpf: don't infer PTR_TO_CTX for programs with unnamed context type Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 151/451] ARM: dts: qcom: msm8974: correct qfprom node size Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 152/451] wifi: wilc1000: prevent use-after-free on vif when cleaning up all interfaces Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 153/451] ACPI: processor_idle: Fix memory leak in acpi_processor_power_exit() Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 154/451] bus: tegra-aconnect: Update dependency to ARCH_TEGRA Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 155/451] iommu/amd: Mark interrupt as managed Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 156/451] wifi: brcmsmac: avoid function pointer casts Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 157/451] arm64: dts: qcom: sdm845-db845c: correct PCIe wake-gpios Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 158/451] arm64: dts: qcom: sm8150: use 'gpios' suffix for PCI GPIOs Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 159/451] arm64: dts: qcom: sm8150: correct PCIe wake-gpios Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 160/451] powercap: dtpm_cpu: Fix error check against freq_qos_add_request() Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 161/451] net: ena: Remove ena_select_queue Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 162/451] arm64: dts: mt8195-cherry-tomato: change watchdog reset boot flow Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 163/451] firmware: arm_scmi: Fix double free in SMC transport cleanup path Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 164/451] wifi: wilc1000: revert reset line logic flip Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 165/451] ARM: dts: arm: realview: Fix development chip ROM compatible value Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 166/451] arm64: dts: renesas: r9a07g043: Split out RZ/G2UL SoC specific parts Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 167/451] arm64: dts: renesas: r9a07g043u: Add IRQC node Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 168/451] arm64: dts: renesas: rzg2l: Add missing interrupts to IRQC nodes Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 169/451] arm64: dts: renesas: r8a779a0: Update to R-Car Gen4 compatible values Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 170/451] arm64: dts: renesas: r8a779a0: Correct avb[01] reg sizes Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 171/451] arm64: dts: renesas: r8a779g0: " Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 172/451] net: mctp: copy skb ext data when fragmenting Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 173/451] pstore: inode: Convert mutex usage to guard(mutex) Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 174/451] pstore: inode: Only d_invalidate() is needed Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 175/451] arm64: dts: allwinner: h6: Add RX DMA channel for SPDIF Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 176/451] ARM: dts: imx6dl-yapp4: Move phy reset into switch node Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 177/451] ARM: dts: imx6dl-yapp4: Fix typo in the QCA switch register address Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 178/451] ARM: dts: imx6dl-yapp4: Move the internal switch PHYs under the switch node Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 179/451] arm64: dts: marvell: reorder crypto interrupts on Armada SoCs Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 180/451] ACPI: resource: Add Infinity laptops to irq1_edge_low_force_override Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 181/451] ACPI: resource: Do IRQ override on Lunnen Ground laptops Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 182/451] ACPI: resource: Add MAIBENBEN X577 to irq1_edge_low_force_override Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 183/451] ACPI: scan: Fix device check notification handling Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 184/451] arm64: dts: rockchip: add missing interrupt-names for rk356x vdpu Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 185/451] x86, relocs: Ignore relocations in .notes section Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 186/451] SUNRPC: fix some memleaks in gssx_dec_option_array Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 187/451] mmc: wmt-sdmmc: remove an incorrect release_mem_region() call in the .remove function Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 188/451] ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 189/451] wifi: rtw88: 8821c: Fix beacon loss and disconnect Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 190/451] wifi: rtw88: 8821c: Fix false alarm count Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 191/451] PCI: Make pci_dev_is_disconnected() helper public for other drivers Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 192/451] iommu/vt-d: Don't issue ATS Invalidation request when device is disconnected Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 193/451] igb: Fix missing time sync events Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 194/451] Bluetooth: Remove HCI_POWER_OFF_TIMEOUT Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 195/451] Bluetooth: mgmt: Remove leftover queuing of power_off work Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 196/451] Bluetooth: Remove superfluous call to hci_conn_check_pending() Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 197/451] Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with gpiod_get_optional() Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 198/451] Bluetooth: Cancel sync command before suspend and power off Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 199/451] Bluetooth: hci_sync: Only allow hci_cmd_sync_queue if running Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 200/451] Bluetooth: hci_conn: Consolidate code for aborting connections Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 201/451] Bluetooth: hci_core: Cancel request on command timeout Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 202/451] Bluetooth: hci_sync: Fix overwriting request callback Sasha Levin
2024-03-24 23:07 ` [PATCH 6.1 203/451] Bluetooth: hci_core: Fix possible buffer overflow Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 204/451] Bluetooth: af_bluetooth: Fix deadlock Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 205/451] Bluetooth: fix use-after-free in accessing skb after sending it Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 206/451] sr9800: Add check for usbnet_get_endpoints Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 207/451] s390/cache: prevent rebuild of shared_cpu_list Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 208/451] bpf: Fix DEVMAP_HASH overflow check on 32-bit arches Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 209/451] bpf: Fix hashtab " Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 210/451] bpf: Fix stackmap " Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 211/451] iommu/vt-d: Retrieve IOMMU perfmon capability information Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 212/451] iommu: Fix compilation without CONFIG_IOMMU_INTEL Sasha Levin
2024-03-28 10:36 ` Pavel Machek
2024-03-24 23:08 ` [PATCH 6.1 213/451] ipv6: fib6_rules: flush route cache when rule is changed Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 214/451] net: ip_tunnel: make sure to pull inner header in ip_tunnel_rcv() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 215/451] net: phy: fix phy_get_internal_delay accessing an empty array Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 216/451] net: hns3: fix wrong judgment condition issue Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 217/451] net: hns3: fix kernel crash when 1588 is received on HIP08 devices Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 218/451] net: hns3: fix port duplex configure error in IMP reset Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 219/451] Bluetooth: MGMT: Fix always using HCI_MAX_AD_LENGTH Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 220/451] Bluetooth: hci_core: Fix missing instances " Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 221/451] Bluetooth: Fix eir name length Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 222/451] net: phy: dp83822: Fix RGMII TX delay configuration Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 223/451] OPP: debugfs: Fix warning around icc_get_name() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 224/451] tcp: fix incorrect parameter validation in the do_tcp_getsockopt() function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 225/451] ipmr: fix incorrect parameter validation in the ip_mroute_getsockopt() function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 226/451] l2tp: fix incorrect parameter validation in the pppol2tp_getsockopt() function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 227/451] udp: fix incorrect parameter validation in the udp_lib_getsockopt() function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 228/451] net: kcm: fix incorrect parameter validation in the kcm_getsockopt) function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 229/451] net/x25: fix incorrect parameter validation in the x25_getsockopt() function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 230/451] nfp: flower: handle acti_netdevs allocation failure Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 231/451] bpf: hardcode BPF_PROG_PACK_SIZE to 2MB * num_possible_nodes() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 232/451] dm raid: fix false positive for requeue needed during reshape Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 233/451] dm: call the resume method on internal suspend Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 234/451] drm/tegra: dsi: Add missing check for of_find_device_by_node Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 235/451] drm/tegra: dpaux: Fix PM disable depth imbalance in tegra_dpaux_probe Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 236/451] drm/tegra: dsi: Make use of the helper function dev_err_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 237/451] drm/tegra: dsi: Fix some error handling paths in tegra_dsi_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 238/451] drm/tegra: dsi: Fix missing pm_runtime_disable() in the error handling path of tegra_dsi_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 239/451] drm/tegra: hdmi: Convert to devm_platform_ioremap_resource() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 240/451] drm/tegra: hdmi: Fix some error handling paths in tegra_hdmi_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 241/451] drm/tegra: rgb: Fix some error handling paths in tegra_dc_rgb_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 242/451] drm/tegra: rgb: Fix missing clk_put() in the error handling paths of tegra_dc_rgb_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 243/451] drm/tegra: output: Fix missing i2c_put_adapter() in the error handling paths of tegra_output_probe() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 244/451] drm/rockchip: inno_hdmi: Fix video timing Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 245/451] drm: Don't treat 0 as -1 in drm_fixp2int_ceil Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 246/451] drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 247/451] drm/rockchip: lvds: do not overwrite error code Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 248/451] drm/rockchip: lvds: do not print scary message when probing defer Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 249/451] drm/panel-edp: use put_sync in unprepare Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 250/451] drm/lima: fix a memleak in lima_heap_alloc Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 251/451] ASoC: amd: acp: Add missing error handling in sof-mach Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 252/451] dmaengine: tegra210-adma: Update dependency to ARCH_TEGRA Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 253/451] media: tc358743: register v4l2 async device only after successful setup Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 254/451] PCI/DPC: Print all TLP Prefixes, not just the first Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 255/451] perf record: Fix possible incorrect free in record__switch_output() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 256/451] HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 257/451] drm/amd/display: Fix a potential buffer overflow in 'dp_dsc_clock_en_read()' Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 258/451] drm/amd/display: Fix potential NULL pointer dereferences in 'dcn10_set_output_transfer_func()' Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 259/451] pinctrl: renesas: r8a779g0: Add Audio SSI pins, groups, and functions Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 260/451] pinctrl: renesas: r8a779g0: Add missing SCIF_CLK2 pin group/function Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 261/451] clk: samsung: exynos850: Propagate SPI IPCLK rate change Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 262/451] perf evsel: Fix duplicate initialization of data->id in evsel__parse_sample() Sasha Levin
2024-03-24 23:08 ` [PATCH 6.1 263/451] PCI/AER: Fix rootport attribute paths in ABI docs Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 264/451] clk: meson: Add missing clocks to axg_clk_regmaps Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 265/451] media: em28xx: annotate unchecked call to media_device_register() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 266/451] media: v4l2-tpg: fix some memleaks in tpg_alloc Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 267/451] media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 268/451] media: edia: dvbdev: fix a use-after-free Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 269/451] pinctrl: mediatek: Drop bogus slew rate register range for MT8186 Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 270/451] pinctrl: mediatek: Drop bogus slew rate register range for MT8192 Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 271/451] clk: qcom: reset: Commonize the de/assert functions Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 272/451] clk: qcom: reset: Ensure write completion on reset de/assertion Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 273/451] quota: simplify drop_dquot_ref() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 274/451] quota: Fix potential NULL pointer dereference Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 275/451] quota: Fix rcu annotations of inode dquot pointers Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 276/451] PCI: switchtec: Fix an error handling path in switchtec_pci_probe() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 277/451] crypto: xilinx - call finalize with bh disabled Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 278/451] perf thread_map: Free strlist on normal path in thread_map__new_by_tid_str() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 279/451] drm/msm/dpu: fix the programming of INTF_CFG2_DATA_HCTL_EN Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 280/451] drm/msm/dpu: Only enable DSC_MODE_MULTIPLEX if dsc_merge is enabled Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 281/451] drm/radeon/ni: Fix wrong firmware size logging in ni_init_microcode() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 282/451] clk: renesas: r8a779g0: Add CMT clocks Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 283/451] clk: renesas: r8a779g0: Add Audio clocks Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 284/451] clk: renesas: r8a779g0: Add thermal clock Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 285/451] clk: renesas: r8a779g0: Correct PFC/GPIO parent clocks Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 286/451] clk: renesas: r8a779f0: Correct PFC/GPIO parent clock Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 287/451] ALSA: seq: fix function cast warnings Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 288/451] perf stat: Avoid metric-only segv Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 289/451] ASoC: meson: aiu: fix function pointer type mismatch Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 290/451] ASoC: meson: t9015: " Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 291/451] powerpc: Force inlining of arch_vmap_p{u/m}d_supported() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 292/451] ASoC: SOF: Introduce container struct for SOF firmware Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 293/451] ASoC: SOF: Add some bounds checking to firmware data Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 294/451] NTB: EPF: fix possible memory leak in pci_vntb_probe() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 295/451] NTB: fix possible name leak in ntb_register_device() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 296/451] media: cedrus: h265: Associate mv col buffers with buffer Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 297/451] media: cedrus: h265: Fix configuring bitstream size Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 298/451] media: sun8i-di: Fix coefficient writes Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 299/451] media: sun8i-di: Fix power on/off sequences Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 300/451] media: sun8i-di: Fix chroma difference threshold Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 301/451] media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 302/451] media: go7007: add check of return value of go7007_read_addr() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 303/451] media: pvrusb2: remove redundant NULL check Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 304/451] media: pvrusb2: fix pvr2_stream_callback casts Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 305/451] clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 306/451] drm/mediatek: dsi: Fix DSI RGB666 formats and definitions Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 307/451] PCI: Mark 3ware-9650SE Root Port Extended Tags as broken Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 308/451] clk: hisilicon: hi3519: Release the correct number of gates in hi3519_clk_unregister() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 309/451] clk: hisilicon: hi3559a: Fix an erroneous devm_kfree() Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 310/451] drm/tegra: put drm_gem_object ref on error in tegra_fb_create Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 311/451] mfd: syscon: Call of_node_put() only when of_parse_phandle() takes a ref Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 312/451] mfd: altera-sysmgr: " Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 313/451] crypto: arm/sha - fix function cast warnings Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 314/451] crypto: jitter - fix CRYPTO_JITTERENTROPY help text Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 315/451] drm/tidss: Fix initial plane zpos values Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 316/451] drm/tidss: Fix sync-lost issue with two displays Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 317/451] mtd: maps: physmap-core: fix flash size larger than 32-bit Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 318/451] mtd: rawnand: lpc32xx_mlc: fix irq handler prototype Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 319/451] ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 320/451] ASoC: meson: axg-tdm-interface: add frame rate constraint Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 321/451] HID: amd_sfh: Update HPD sensor structure elements Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 322/451] HID: amd_sfh: Avoid disabling the interrupt Sasha Levin
2024-03-24 23:09 ` [PATCH 6.1 323/451] drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of atom_get_src_int() Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 324/451] media: pvrusb2: fix uaf in pvr2_context_set_notify Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 325/451] media: dvb-frontends: avoid stack overflow warnings with clang Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 326/451] media: go7007: fix a memleak in go7007_load_encoder Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 327/451] media: ttpci: fix two memleaks in budget_av_attach Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 328/451] media: mediatek: vcodec: avoid -Wcast-function-type-strict warning Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 329/451] gpio: nomadik: fix offset bug in nmk_pmx_set() Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 330/451] drm/mediatek: Fix a null pointer crash in mtk_drm_crtc_finish_page_flip Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 331/451] powerpc/pseries: Fix potential memleak in papr_get_attr() Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 332/451] powerpc/hv-gpci: Fix the H_GET_PERF_COUNTER_INFO hcall return value checks Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 333/451] drm/msm/dpu: add division of drm_display_mode's hskew parameter Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 334/451] modules: wait do_free_init correctly Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 335/451] powerpc/embedded6xx: Fix no previous prototype for avr_uart_send() etc Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 336/451] leds: aw2013: Unlock mutex before destroying it Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 337/451] leds: sgm3140: Add missing timer cleanup and flash gpio control Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 338/451] backlight: lm3630a: Initialize backlight_properties on init Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 339/451] backlight: lm3630a: Don't set bl->props.brightness in get_brightness Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 340/451] backlight: da9052: Fully initialize backlight_properties during probe Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 341/451] backlight: lm3639: " Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 342/451] backlight: lp8788: " Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 343/451] arch/powerpc: Remove <linux/fb.h> from backlight code Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 344/451] sparc32: Fix section mismatch in leon_pci_grpci Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 345/451] clk: Fix clk_core_get NULL dereference Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 346/451] clk: zynq: Prevent null pointer dereference caused by kmalloc failure Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 347/451] ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 348/451] ALSA: usb-audio: Stop parsing channels bits when all channels are found Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 349/451] RDMA/irdma: Allow accurate reporting on QP max send/recv WR Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 350/451] RDMA/irdma: Remove duplicate assignment Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 351/451] RDMA/srpt: Do not register event handler until srpt device is fully setup Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 352/451] f2fs: reduce stack memory cost by using bitfield in struct f2fs_io_info Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 353/451] f2fs: compress: fix to guarantee persisting compressed blocks by CP Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 354/451] f2fs: compress: fix to cover normal cluster write with cp_rwsem Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 355/451] f2fs: compress: fix to check unreleased compressed cluster Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 356/451] f2fs: simplify __allocate_data_block Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 357/451] f2fs: delete obsolete FI_FIRST_BLOCK_WRITTEN Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 358/451] f2fs: delete obsolete FI_DROP_CACHE Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 359/451] f2fs: introduce get_dnode_addr() to clean up codes Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 360/451] f2fs: update blkaddr in __set_data_blkaddr() for cleanup Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 361/451] f2fs: compress: fix to avoid inconsistence bewteen i_blocks and dnode Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 362/451] f2fs: compress: fix to cover f2fs_disable_compressed_file() w/ i_sem Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 363/451] f2fs: fix to avoid potential panic during recovery Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 364/451] scsi: csiostor: Avoid function pointer casts Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 365/451] RDMA/hns: Fix mis-modifying default congestion control algorithm Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 366/451] RDMA/device: Fix a race between mad_client and cm_client init Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 367/451] RDMA/rtrs-clt: Check strnlen return len in sysfs mpath_policy_store() Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 368/451] scsi: bfa: Fix function pointer type mismatch for hcb_qe->cbfn Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 369/451] f2fs: compress: fix to check zstd compress level correctly in mount option Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 370/451] net: sunrpc: Fix an off by one in rpc_sockaddr2uaddr() Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 371/451] NFSv4.2: fix nfs4_listxattr kernel BUG at mm/usercopy.c:102 Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 372/451] NFSv4.2: fix listxattr maximum XDR buffer size Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 373/451] f2fs: compress: fix to check compress flag w/ .i_sem lock Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 374/451] f2fs: check number of blocks in a current section Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 375/451] watchdog: stm32_iwdg: initialize default timeout Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 376/451] f2fs: ro: compress: fix to avoid caching unaligned extent Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 377/451] NFS: Fix an off by one in root_nfs_cat() Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 378/451] f2fs: convert to use sbi directly Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 379/451] f2fs: compress: relocate some judgments in f2fs_reserve_compress_blocks Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 380/451] f2fs: compress: fix reserve_cblocks counting error when out of space Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 381/451] perf/x86/amd/core: Avoid register reset when CPU is dead Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 382/451] afs: Revert "afs: Hide silly-rename files from userspace" Sasha Levin
2024-03-24 23:10 ` [PATCH 6.1 383/451] nfs: fix panic when nfs4_ff_layout_prepare_ds() fails Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 384/451] io_uring/net: correct the type of variable Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 385/451] comedi: comedi_test: Prevent timers rescheduling during deletion Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 386/451] remoteproc: stm32: use correct format strings on 64-bit Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 387/451] remoteproc: stm32: Fix incorrect type in assignment for va Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 388/451] remoteproc: stm32: Fix incorrect type assignment returned by stm32_rproc_get_loaded_rsc_tablef Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 389/451] usb: phy: generic: Get the vbus supply Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 390/451] tty: vt: fix 20 vs 0x20 typo in EScsiignore Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 391/451] serial: max310x: fix syntax error in IRQ error message Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 392/451] tty: serial: samsung: fix tx_empty() to return TIOCSER_TEMT Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 393/451] arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 394/451] kconfig: fix infinite loop when expanding a macro at the end of file Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 395/451] hwtracing: hisi_ptt: Move type check to the beginning of hisi_ptt_pmu_event_init() Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 396/451] rtc: mt6397: select IRQ_DOMAIN instead of depending on it Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 397/451] serial: 8250_exar: Don't remove GPIO device on suspend Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 398/451] staging: greybus: fix get_channel_from_mode() failure path Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 399/451] usb: gadget: net2272: Use irqflags in the call to net2272_probe_fin Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 400/451] ASoC: rockchip: i2s-tdm: Fix inaccurate sampling rates Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 401/451] nouveau: reset the bo resource bus info after an eviction Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 402/451] tcp: Fix NEW_SYN_RECV handling in inet_twsk_purge() Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 403/451] rds: tcp: Fix use-after-free of net in reqsk_timer_handler() Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 404/451] octeontx2-af: Use matching wake_up API variant in CGX command interface Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 405/451] s390/vtime: fix average steal time calculation Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 406/451] net/sched: taprio: proper TCA_TAPRIO_TC_ENTRY_INDEX check Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 407/451] soc: fsl: dpio: fix kcalloc() argument order Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 408/451] tcp: Fix refcnt handling in __inet_hash_connect() Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 409/451] hsr: Fix uninit-value access in hsr_get_node() Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 410/451] nvme: only set reserved_tags in nvme_alloc_io_tag_set for fabrics controllers Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 411/451] nvme: add the Apple shared tag workaround to nvme_alloc_io_tag_set Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 412/451] nvme: fix reconnection fail due to reserved tag allocation Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 413/451] net: mediatek: mtk_eth_soc: clear MAC_MCR_FORCE_LINK only when MAC is up Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 414/451] net: ethernet: mtk_eth_soc: fix PPE hanging issue Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 415/451] packet: annotate data-races around ignore_outgoing Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 416/451] net: veth: do not manipulate GRO when using XDP Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 417/451] net: dsa: mt7530: prevent possible incorrect XTAL frequency selection Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 418/451] drm: Fix drm_fixp2int_round() making it add 0.5 Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 419/451] vdpa_sim: reset must not run Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 420/451] vdpa/mlx5: Allow CVQ size changes Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 421/451] wireguard: receive: annotate data-race around receiving_counter.counter Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 422/451] rds: introduce acquire/release ordering in acquire/release_in_xmit() Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 423/451] hsr: Handle failures in module init Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 424/451] ipv4: raw: Fix sending packets from raw sockets via IPsec tunnels Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 425/451] net: phy: fix phy_read_poll_timeout argument type in genphy_loopback Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 426/451] dm-integrity: fix a memory leak when rechecking the data Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 427/451] net/bnx2x: Prevent access to a freed page in page_pool Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 428/451] octeontx2-af: recover CPT engine when it gets fault Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 429/451] octeontx2-af: add mbox for CPT LF reset Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 430/451] octeontx2-af: optimize cpt pf identification Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 431/451] octeontx2-af: add mbox to return CPT_AF_FLT_INT info Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 432/451] octeontx2: Detect the mbox up or down message via register Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 433/451] net: octeontx2: Use alloc_ordered_workqueue() to create ordered workqueues Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 434/451] octeontx2-pf: Use default max_active works instead of one Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 435/451] octeontx2-pf: Send UP messages to VF only when VF is up Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 436/451] octeontx2-af: Use separate handlers for interrupts Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 437/451] netfilter: nft_set_pipapo: release elements in clone only from destroy path Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 438/451] netfilter: nf_tables: do not compare internal table flags on updates Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 439/451] rcu: add a helper to report consolidated flavor QS Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 440/451] net: report RCU QS on threaded NAPI repolling Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 441/451] bpf: report RCU QS in cpumap kthread Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 442/451] net: dsa: mt7530: fix link-local frames that ingress vlan filtering ports Sasha Levin
2024-03-24 23:11 ` [PATCH 6.1 443/451] net: dsa: mt7530: fix handling of all link-local frames Sasha Levin
2024-03-24 23:12 ` [PATCH 6.1 444/451] spi: spi-mt65xx: Fix NULL pointer access in interrupt handler Sasha Levin
2024-03-24 23:12 ` [PATCH 6.1 445/451] selftests: forwarding: Fix ping failure due to short timeout Sasha Levin
2024-03-24 23:12 ` [PATCH 6.1 446/451] dm: address indent/space issues Sasha Levin
2024-03-24 23:12 ` Sasha Levin [this message]
2024-03-24 23:12 ` [PATCH 6.1 448/451] dm-integrity: align the outgoing bio in integrity_recheck Sasha Levin
2024-03-24 23:12 ` [PATCH 6.1 449/451] x86/efistub: Clear decompressor BSS in native EFI entrypoint Sasha Levin
2024-03-24 23:12 ` [PATCH 6.1 450/451] x86/efistub: Don't clear BSS twice in mixed mode Sasha Levin
2024-03-24 23:12 ` [PATCH 6.1 451/451] Linux 6.1.83-rc1 Sasha Levin
2024-03-25 9:41 ` [PATCH 6.1 000/451] 6.1.83-rc1 review Naresh Kamboju
2024-03-25 17:32 ` Eddie Chapman
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=20240324231207.1351418-448-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=ebiggers@google.com \
--cc=hongyu.jin@unisoc.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mpatocka@redhat.com \
--cc=snitzer@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yibin.ding@unisoc.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