From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Kuniyuki Iwashima <kuniyu@amazon.com>,
Paolo Abeni <pabeni@redhat.com>, Jakub Kicinski <kuba@kernel.org>,
Lee Jones <lee@kernel.org>
Subject: [PATCH 6.1 301/325] af_unix: Replace garbage collection algorithm.
Date: Mon, 2 Jun 2025 15:49:37 +0200 [thread overview]
Message-ID: <20250602134332.147479461@linuxfoundation.org> (raw)
In-Reply-To: <20250602134319.723650984@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Kuniyuki Iwashima <kuniyu@amazon.com>
commit 4090fa373f0e763c43610853d2774b5979915959 upstream.
If we find a dead SCC during iteration, we call unix_collect_skb()
to splice all skb in the SCC to the global sk_buff_head, hitlist.
After iterating all SCC, we unlock unix_gc_lock and purge the queue.
Signed-off-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Acked-by: Paolo Abeni <pabeni@redhat.com>
Link: https://lore.kernel.org/r/20240325202425.60930-15-kuniyu@amazon.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Lee Jones <lee@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
include/net/af_unix.h | 8 -
net/unix/af_unix.c | 12 -
net/unix/garbage.c | 318 ++++++++++----------------------------------------
3 files changed, 64 insertions(+), 274 deletions(-)
--- a/include/net/af_unix.h
+++ b/include/net/af_unix.h
@@ -19,9 +19,6 @@ static inline struct unix_sock *unix_get
extern spinlock_t unix_gc_lock;
extern unsigned int unix_tot_inflight;
-
-void unix_inflight(struct user_struct *user, struct file *fp);
-void unix_notinflight(struct user_struct *user, struct file *fp);
void unix_add_edges(struct scm_fp_list *fpl, struct unix_sock *receiver);
void unix_del_edges(struct scm_fp_list *fpl);
void unix_update_edges(struct unix_sock *receiver);
@@ -85,12 +82,7 @@ struct unix_sock {
struct sock *peer;
struct sock *listener;
struct unix_vertex *vertex;
- struct list_head link;
- unsigned long inflight;
spinlock_t lock;
- unsigned long gc_flags;
-#define UNIX_GC_CANDIDATE 0
-#define UNIX_GC_MAYBE_CYCLE 1
struct socket_wq peer_wq;
wait_queue_entry_t peer_wake;
struct scm_stat scm_stat;
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -955,12 +955,10 @@ static struct sock *unix_create1(struct
sk->sk_destruct = unix_sock_destructor;
u = unix_sk(sk);
u->listener = NULL;
- u->inflight = 0;
u->vertex = NULL;
u->path.dentry = NULL;
u->path.mnt = NULL;
spin_lock_init(&u->lock);
- INIT_LIST_HEAD(&u->link);
mutex_init(&u->iolock); /* single task reading lock */
mutex_init(&u->bindlock); /* single task binding lock */
init_waitqueue_head(&u->peer_wait);
@@ -1744,8 +1742,6 @@ static inline bool too_many_unix_fds(str
static int unix_attach_fds(struct scm_cookie *scm, struct sk_buff *skb)
{
- int i;
-
if (too_many_unix_fds(current))
return -ETOOMANYREFS;
@@ -1757,9 +1753,6 @@ static int unix_attach_fds(struct scm_co
if (!UNIXCB(skb).fp)
return -ENOMEM;
- for (i = scm->fp->count - 1; i >= 0; i--)
- unix_inflight(scm->fp->user, scm->fp->fp[i]);
-
if (unix_prepare_fpl(UNIXCB(skb).fp))
return -ENOMEM;
@@ -1768,15 +1761,10 @@ static int unix_attach_fds(struct scm_co
static void unix_detach_fds(struct scm_cookie *scm, struct sk_buff *skb)
{
- int i;
-
scm->fp = UNIXCB(skb).fp;
UNIXCB(skb).fp = NULL;
unix_destroy_fpl(scm->fp);
-
- for (i = scm->fp->count - 1; i >= 0; i--)
- unix_notinflight(scm->fp->user, scm->fp->fp[i]);
}
static void unix_peek_fds(struct scm_cookie *scm, struct sk_buff *skb)
--- a/net/unix/garbage.c
+++ b/net/unix/garbage.c
@@ -322,6 +322,52 @@ static bool unix_vertex_dead(struct unix
return true;
}
+enum unix_recv_queue_lock_class {
+ U_RECVQ_LOCK_NORMAL,
+ U_RECVQ_LOCK_EMBRYO,
+};
+
+static void unix_collect_skb(struct list_head *scc, struct sk_buff_head *hitlist)
+{
+ struct unix_vertex *vertex;
+
+ list_for_each_entry_reverse(vertex, scc, scc_entry) {
+ struct sk_buff_head *queue;
+ struct unix_edge *edge;
+ struct unix_sock *u;
+
+ edge = list_first_entry(&vertex->edges, typeof(*edge), vertex_entry);
+ u = edge->predecessor;
+ queue = &u->sk.sk_receive_queue;
+
+ spin_lock(&queue->lock);
+
+ if (u->sk.sk_state == TCP_LISTEN) {
+ struct sk_buff *skb;
+
+ skb_queue_walk(queue, skb) {
+ struct sk_buff_head *embryo_queue = &skb->sk->sk_receive_queue;
+
+ /* listener -> embryo order, the inversion never happens. */
+ spin_lock_nested(&embryo_queue->lock, U_RECVQ_LOCK_EMBRYO);
+ skb_queue_splice_init(embryo_queue, hitlist);
+ spin_unlock(&embryo_queue->lock);
+ }
+ } else {
+ skb_queue_splice_init(queue, hitlist);
+
+#if IS_ENABLED(CONFIG_AF_UNIX_OOB)
+ if (u->oob_skb) {
+ kfree_skb(u->oob_skb);
+ u->oob_skb = NULL;
+ }
+#endif
+ }
+
+ spin_unlock(&queue->lock);
+ }
+}
+
static bool unix_scc_cyclic(struct list_head *scc)
{
struct unix_vertex *vertex;
@@ -345,7 +391,8 @@ static bool unix_scc_cyclic(struct list_
static LIST_HEAD(unix_visited_vertices);
static unsigned long unix_vertex_grouped_index = UNIX_VERTEX_INDEX_MARK2;
-static void __unix_walk_scc(struct unix_vertex *vertex, unsigned long *last_index)
+static void __unix_walk_scc(struct unix_vertex *vertex, unsigned long *last_index,
+ struct sk_buff_head *hitlist)
{
LIST_HEAD(vertex_stack);
struct unix_edge *edge;
@@ -430,7 +477,9 @@ prev_vertex:
scc_dead = unix_vertex_dead(vertex);
}
- if (!unix_graph_maybe_cyclic)
+ if (scc_dead)
+ unix_collect_skb(&scc, hitlist);
+ else if (!unix_graph_maybe_cyclic)
unix_graph_maybe_cyclic = unix_scc_cyclic(&scc);
list_del(&scc);
@@ -441,7 +490,7 @@ prev_vertex:
goto prev_vertex;
}
-static void unix_walk_scc(void)
+static void unix_walk_scc(struct sk_buff_head *hitlist)
{
unsigned long last_index = UNIX_VERTEX_INDEX_START;
@@ -454,7 +503,7 @@ static void unix_walk_scc(void)
struct unix_vertex *vertex;
vertex = list_first_entry(&unix_unvisited_vertices, typeof(*vertex), entry);
- __unix_walk_scc(vertex, &last_index);
+ __unix_walk_scc(vertex, &last_index, hitlist);
}
list_replace_init(&unix_visited_vertices, &unix_unvisited_vertices);
@@ -463,7 +512,7 @@ static void unix_walk_scc(void)
unix_graph_grouped = true;
}
-static void unix_walk_scc_fast(void)
+static void unix_walk_scc_fast(struct sk_buff_head *hitlist)
{
while (!list_empty(&unix_unvisited_vertices)) {
struct unix_vertex *vertex;
@@ -480,279 +529,40 @@ static void unix_walk_scc_fast(void)
scc_dead = unix_vertex_dead(vertex);
}
+ if (scc_dead)
+ unix_collect_skb(&scc, hitlist);
+
list_del(&scc);
}
list_replace_init(&unix_visited_vertices, &unix_unvisited_vertices);
}
-static LIST_HEAD(gc_candidates);
-static LIST_HEAD(gc_inflight_list);
-
-/* Keep the number of times in flight count for the file
- * descriptor if it is for an AF_UNIX socket.
- */
-void unix_inflight(struct user_struct *user, struct file *filp)
-{
- struct unix_sock *u = unix_get_socket(filp);
-
- spin_lock(&unix_gc_lock);
-
- if (u) {
- if (!u->inflight) {
- WARN_ON_ONCE(!list_empty(&u->link));
- list_add_tail(&u->link, &gc_inflight_list);
- } else {
- WARN_ON_ONCE(list_empty(&u->link));
- }
- u->inflight++;
- }
-
- spin_unlock(&unix_gc_lock);
-}
-
-void unix_notinflight(struct user_struct *user, struct file *filp)
-{
- struct unix_sock *u = unix_get_socket(filp);
-
- spin_lock(&unix_gc_lock);
-
- if (u) {
- WARN_ON_ONCE(!u->inflight);
- WARN_ON_ONCE(list_empty(&u->link));
-
- u->inflight--;
- if (!u->inflight)
- list_del_init(&u->link);
- }
-
- spin_unlock(&unix_gc_lock);
-}
-
-static void scan_inflight(struct sock *x, void (*func)(struct unix_sock *),
- struct sk_buff_head *hitlist)
-{
- struct sk_buff *skb;
- struct sk_buff *next;
-
- spin_lock(&x->sk_receive_queue.lock);
- skb_queue_walk_safe(&x->sk_receive_queue, skb, next) {
- /* Do we have file descriptors ? */
- if (UNIXCB(skb).fp) {
- bool hit = false;
- /* Process the descriptors of this socket */
- int nfd = UNIXCB(skb).fp->count;
- struct file **fp = UNIXCB(skb).fp->fp;
-
- while (nfd--) {
- /* Get the socket the fd matches if it indeed does so */
- struct unix_sock *u = unix_get_socket(*fp++);
-
- /* Ignore non-candidates, they could have been added
- * to the queues after starting the garbage collection
- */
- if (u && test_bit(UNIX_GC_CANDIDATE, &u->gc_flags)) {
- hit = true;
-
- func(u);
- }
- }
- if (hit && hitlist != NULL) {
- __skb_unlink(skb, &x->sk_receive_queue);
- __skb_queue_tail(hitlist, skb);
- }
- }
- }
- spin_unlock(&x->sk_receive_queue.lock);
-}
-
-static void scan_children(struct sock *x, void (*func)(struct unix_sock *),
- struct sk_buff_head *hitlist)
-{
- if (x->sk_state != TCP_LISTEN) {
- scan_inflight(x, func, hitlist);
- } else {
- struct sk_buff *skb;
- struct sk_buff *next;
- struct unix_sock *u;
- LIST_HEAD(embryos);
-
- /* For a listening socket collect the queued embryos
- * and perform a scan on them as well.
- */
- spin_lock(&x->sk_receive_queue.lock);
- skb_queue_walk_safe(&x->sk_receive_queue, skb, next) {
- u = unix_sk(skb->sk);
-
- /* An embryo cannot be in-flight, so it's safe
- * to use the list link.
- */
- WARN_ON_ONCE(!list_empty(&u->link));
- list_add_tail(&u->link, &embryos);
- }
- spin_unlock(&x->sk_receive_queue.lock);
-
- while (!list_empty(&embryos)) {
- u = list_entry(embryos.next, struct unix_sock, link);
- scan_inflight(&u->sk, func, hitlist);
- list_del_init(&u->link);
- }
- }
-}
-
-static void dec_inflight(struct unix_sock *usk)
-{
- usk->inflight--;
-}
-
-static void inc_inflight(struct unix_sock *usk)
-{
- usk->inflight++;
-}
-
-static void inc_inflight_move_tail(struct unix_sock *u)
-{
- u->inflight++;
-
- /* If this still might be part of a cycle, move it to the end
- * of the list, so that it's checked even if it was already
- * passed over
- */
- if (test_bit(UNIX_GC_MAYBE_CYCLE, &u->gc_flags))
- list_move_tail(&u->link, &gc_candidates);
-}
-
static bool gc_in_progress;
static void __unix_gc(struct work_struct *work)
{
struct sk_buff_head hitlist;
- struct unix_sock *u, *next;
- LIST_HEAD(not_cycle_list);
- struct list_head cursor;
spin_lock(&unix_gc_lock);
- if (!unix_graph_maybe_cyclic)
+ if (!unix_graph_maybe_cyclic) {
+ spin_unlock(&unix_gc_lock);
goto skip_gc;
-
- if (unix_graph_grouped)
- unix_walk_scc_fast();
- else
- unix_walk_scc();
-
- /* First, select candidates for garbage collection. Only
- * in-flight sockets are considered, and from those only ones
- * which don't have any external reference.
- *
- * Holding unix_gc_lock will protect these candidates from
- * being detached, and hence from gaining an external
- * reference. Since there are no possible receivers, all
- * buffers currently on the candidates' queues stay there
- * during the garbage collection.
- *
- * We also know that no new candidate can be added onto the
- * receive queues. Other, non candidate sockets _can_ be
- * added to queue, so we must make sure only to touch
- * candidates.
- *
- * Embryos, though never candidates themselves, affect which
- * candidates are reachable by the garbage collector. Before
- * being added to a listener's queue, an embryo may already
- * receive data carrying SCM_RIGHTS, potentially making the
- * passed socket a candidate that is not yet reachable by the
- * collector. It becomes reachable once the embryo is
- * enqueued. Therefore, we must ensure that no SCM-laden
- * embryo appears in a (candidate) listener's queue between
- * consecutive scan_children() calls.
- */
- list_for_each_entry_safe(u, next, &gc_inflight_list, link) {
- struct sock *sk = &u->sk;
- long total_refs;
-
- total_refs = file_count(sk->sk_socket->file);
-
- WARN_ON_ONCE(!u->inflight);
- WARN_ON_ONCE(total_refs < u->inflight);
- if (total_refs == u->inflight) {
- list_move_tail(&u->link, &gc_candidates);
- __set_bit(UNIX_GC_CANDIDATE, &u->gc_flags);
- __set_bit(UNIX_GC_MAYBE_CYCLE, &u->gc_flags);
-
- if (sk->sk_state == TCP_LISTEN) {
- unix_state_lock_nested(sk, U_LOCK_GC_LISTENER);
- unix_state_unlock(sk);
- }
- }
- }
-
- /* Now remove all internal in-flight reference to children of
- * the candidates.
- */
- list_for_each_entry(u, &gc_candidates, link)
- scan_children(&u->sk, dec_inflight, NULL);
-
- /* Restore the references for children of all candidates,
- * which have remaining references. Do this recursively, so
- * only those remain, which form cyclic references.
- *
- * Use a "cursor" link, to make the list traversal safe, even
- * though elements might be moved about.
- */
- list_add(&cursor, &gc_candidates);
- while (cursor.next != &gc_candidates) {
- u = list_entry(cursor.next, struct unix_sock, link);
-
- /* Move cursor to after the current position. */
- list_move(&cursor, &u->link);
-
- if (u->inflight) {
- list_move_tail(&u->link, ¬_cycle_list);
- __clear_bit(UNIX_GC_MAYBE_CYCLE, &u->gc_flags);
- scan_children(&u->sk, inc_inflight_move_tail, NULL);
- }
}
- list_del(&cursor);
- /* Now gc_candidates contains only garbage. Restore original
- * inflight counters for these as well, and remove the skbuffs
- * which are creating the cycle(s).
- */
- skb_queue_head_init(&hitlist);
- list_for_each_entry(u, &gc_candidates, link) {
- scan_children(&u->sk, inc_inflight, &hitlist);
-
-#if IS_ENABLED(CONFIG_AF_UNIX_OOB)
- if (u->oob_skb) {
- kfree_skb(u->oob_skb);
- u->oob_skb = NULL;
- }
-#endif
- }
+ __skb_queue_head_init(&hitlist);
- /* not_cycle_list contains those sockets which do not make up a
- * cycle. Restore these to the inflight list.
- */
- while (!list_empty(¬_cycle_list)) {
- u = list_entry(not_cycle_list.next, struct unix_sock, link);
- __clear_bit(UNIX_GC_CANDIDATE, &u->gc_flags);
- list_move_tail(&u->link, &gc_inflight_list);
- }
+ if (unix_graph_grouped)
+ unix_walk_scc_fast(&hitlist);
+ else
+ unix_walk_scc(&hitlist);
spin_unlock(&unix_gc_lock);
- /* Here we are. Hitlist is filled. Die. */
__skb_queue_purge(&hitlist);
-
- spin_lock(&unix_gc_lock);
-
- /* All candidates should have been detached by now. */
- WARN_ON_ONCE(!list_empty(&gc_candidates));
skip_gc:
- /* Paired with READ_ONCE() in wait_for_unix_gc(). */
WRITE_ONCE(gc_in_progress, false);
-
- spin_unlock(&unix_gc_lock);
}
static DECLARE_WORK(unix_gc_work, __unix_gc);
next prev parent reply other threads:[~2025-06-02 15:18 UTC|newest]
Thread overview: 336+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-02 13:44 [PATCH 6.1 000/325] 6.1.141-rc1 review Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 001/325] gpio: pca953x: Add missing header(s) Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 002/325] gpio: pca953x: Split pca953x_restore_context() and pca953x_save_context() Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 003/325] gpio: pca953x: Simplify code with cleanup helpers Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 004/325] gpio: pca953x: fix IRQ storm on system wake up Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 005/325] phy: renesas: rcar-gen3-usb2: Add support to initialize the bus Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 006/325] phy: renesas: rcar-gen3-usb2: Move IRQ request in probe Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 007/325] phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 008/325] phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 009/325] scsi: target: iscsi: Fix timeout on deleted connection Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 010/325] virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 011/325] dma-mapping: avoid potential unused data compilation warning Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 012/325] cgroup: Fix compilation issue due to cgroup_mutex not being exported Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 013/325] scsi: mpi3mr: Add level check to control event logging Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 014/325] net: enetc: refactor bulk flipping of RX buffers to separate function Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 015/325] drm/amdgpu: Allow P2P access through XGMI Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 016/325] selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 017/325] bpf: fix possible endless loop in BPF map iteration Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 018/325] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 019/325] kconfig: merge_config: use an empty file as initfile Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 020/325] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 021/325] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 022/325] cifs: Fix querying and creating MF symlinks over SMB1 Greg Kroah-Hartman
2025-06-02 13:44 ` [PATCH 6.1 023/325] cifs: Fix negotiate retry functionality Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 024/325] fuse: Return EPERM rather than ENOSYS from link() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 025/325] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 026/325] NFS: Dont allow waiting for exiting tasks Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 027/325] SUNRPC: " Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 028/325] arm64: Add support for HIP09 Spectre-BHB mitigation Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 029/325] tracing: Mark binary printing functions with __printf() attribute Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 030/325] mailbox: use error ret code of of_parse_phandle_with_args() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 031/325] fbdev: fsl-diu-fb: add missing device_remove_file() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 032/325] fbcon: Use correct erase colour for clearing in fbcon Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 033/325] fbdev: core: tileblit: Implement missing margin clearing for tileblit Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 034/325] cifs: Fix establishing NetBIOS session for SMB2+ connection Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 035/325] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 036/325] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 037/325] SUNRPC: rpcbind should never reset the port to the value 0 Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 038/325] thermal/drivers/qoriq: Power down TMU on system suspend Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 039/325] dql: Fix dql->limit value when reset Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 040/325] lockdep: Fix wait context check on softirq for PREEMPT_RT Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 041/325] objtool: Properly disable uaccess validation Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 042/325] PCI: dwc: ep: Ensure proper iteration over outbound map windows Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 043/325] tools/build: Dont pass test log files to linker Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 044/325] pNFS/flexfiles: Report ENETDOWN as a connection error Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 045/325] PCI: vmd: Disable MSI remapping bypass under Xen Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 046/325] libnvdimm/labels: Fix divide error in nd_label_data_init() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 047/325] mmc: host: Wait for Vdd to settle on card power off Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 048/325] x86/mm: Check return value from memblock_phys_alloc_range() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 049/325] i2c: qup: Vote for interconnect bandwidth to DRAM Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 050/325] i2c: pxa: fix call balance of i2c->clk handling routines Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 051/325] btrfs: make btrfs_discard_workfn() block_group ref explicit Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 052/325] btrfs: avoid linker error in btrfs_find_create_tree_block() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 053/325] btrfs: run btrfs_error_commit_super() early Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 054/325] btrfs: fix non-empty delayed iputs list on unmount due to async workers Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 055/325] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 056/325] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 057/325] drm/amd/display: Guard against setting dispclk low for dcn31x Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 058/325] i3c: master: svc: Fix missing STOP for master request Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 059/325] dlm: make tcp still work in multi-link env Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 060/325] um: Store full CSGSFS and SS register from mcontext Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 061/325] um: Update min_low_pfn to match changes in uml_reserved Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 062/325] ext4: reorder capability check last Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 063/325] scsi: st: Tighten the page format heuristics with MODE SELECT Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 064/325] scsi: st: ERASE does not change tape location Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 065/325] vfio/pci: Handle INTx IRQ_NOTCONNECTED Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 066/325] bpf: Return prog btf_id without capable check Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 067/325] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 068/325] rtc: rv3032: fix EERD location Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 069/325] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 070/325] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 071/325] kbuild: fix argument parsing in scripts/config Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 072/325] crypto: octeontx2 - suppress auth failure screaming due to negative tests Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 073/325] dm: restrict dm device size to 2^63-512 bytes Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 074/325] net/smc: use the correct ndev to find pnetid by pnetid table Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 075/325] xen: Add support for XenServer 6.1 platform device Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 076/325] pinctrl-tegra: Restore SFSEL bit when freeing pins Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 077/325] ASoC: sun4i-codec: support hp-det-gpios property Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 078/325] ext4: reject the data_err=abort option in nojournal mode Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 079/325] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 080/325] posix-timers: Add cond_resched() to posix_timer_add() search loop Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 081/325] timer_list: Dont use %pK through printk() Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 082/325] netfilter: conntrack: Bound nf_conntrack sysctl writes Greg Kroah-Hartman
2025-06-02 13:45 ` [PATCH 6.1 083/325] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 084/325] mmc: dw_mmc: add exynos7870 DW MMC support Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 085/325] mmc: sdhci: Disable SD card clock before changing parameters Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 086/325] hwmon: (dell-smm) Increment the number of fans Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 087/325] ipv6: save dontfrag in cork Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 088/325] drm/amd/display: calculate the remain segments for all pipes Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 089/325] gfs2: Check for empty queue in run_queue Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 090/325] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 091/325] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 092/325] iommu/amd/pgtbl_v2: Improve error handling Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 093/325] cpufreq: tegra186: Share policy per cluster Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 094/325] crypto: lzo - Fix compression buffer overrun Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 095/325] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 096/325] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 097/325] ALSA: seq: Improve data consistency at polling Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 098/325] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 099/325] rtc: ds1307: stop disabling alarms on probe Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 100/325] ieee802154: ca8210: Use proper setters and getters for bitwise types Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 101/325] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 102/325] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 103/325] dm cache: prevent BUG_ON by blocking retries on failed device resumes Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 104/325] orangefs: Do not truncate file size Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 105/325] net: phylink: use pl->link_interface in phylink_expects_phy() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 106/325] remoteproc: qcom_wcnss: Handle platforms with only single power domain Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 107/325] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 108/325] media: cx231xx: set device_caps for 417 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 109/325] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 110/325] net: ethernet: ti: cpsw_new: populate netdev of_node Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 111/325] net: pktgen: fix mpls maximum labels list parsing Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 112/325] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 113/325] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 114/325] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 115/325] drm/rockchip: vop2: Add uv swap for cluster window Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 116/325] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 117/325] clk: imx8mp: inform CCF of maximum frequency of clocks Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 118/325] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 119/325] hwmon: (gpio-fan) Add missing mutex locks Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 120/325] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 121/325] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 122/325] fpga: altera-cvp: Increase credit timeout Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 123/325] soc: apple: rtkit: Use high prio work queue Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 124/325] soc: apple: rtkit: Implement OSLog buffers properly Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 125/325] PCI: brcmstb: Expand inbound window size up to 64GB Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 126/325] PCI: brcmstb: Add a softdep to MIP MSI-X driver Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 127/325] firmware: arm_ffa: Set dma_mask for ffa devices Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 128/325] net/mlx5: Avoid report two health errors on same syndrome Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 129/325] selftests/net: have `gro.sh -t` return a correct exit code Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 130/325] drm/amdkfd: KFD release_work possible circular locking Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 131/325] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 132/325] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 133/325] net: xgene-v2: remove incorrect ACPI_PTR annotation Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 134/325] bonding: report duplicate MAC address in all situations Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 135/325] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 136/325] x86/build: Fix broken copy command in genimage.sh when making isoimage Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 137/325] drm/amd/display: handle max_downscale_src_width fail check Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 138/325] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 139/325] cpuidle: menu: Avoid discarding useful information Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 140/325] media: adv7180: Disable test-pattern control on adv7180 Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 141/325] libbpf: Fix out-of-bound read Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 142/325] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Greg Kroah-Hartman
2025-06-02 13:46 ` [PATCH 6.1 143/325] x86/kaslr: Reduce KASLR entropy on most x86 systems Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 144/325] MIPS: Use arch specific syscall name match function Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 145/325] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 146/325] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 147/325] clocksource: mips-gic-timer: Enable counter when CPUs start Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 148/325] scsi: mpt3sas: Send a diag reset if target reset fails Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 149/325] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 150/325] wifi: rtw88: Fix rtw_init_ht_cap() " Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 151/325] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 152/325] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 153/325] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 154/325] EDAC/ie31200: work around false positive build warning Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 155/325] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 156/325] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 157/325] RDMA/core: Fix best page size finding when it can cross SG entries Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 158/325] pmdomain: imx: gpcv2: use proper helper for property detection Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 159/325] can: c_can: Use of_property_present() to test existence of DT property Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 160/325] eth: mlx4: dont try to complete XDP frames in netpoll Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 161/325] PCI: Fix old_size lower bound in calculate_iosize() too Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 162/325] ACPI: HED: Always initialize before evged Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 163/325] vxlan: Join / leave MC group after remote changes Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 164/325] media: test-drivers: vivid: dont call schedule in loop Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 165/325] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 166/325] net/mlx5: Apply rate-limiting to high temperature warning Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 167/325] ASoC: ops: Enforce platform maximum on initial value Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 168/325] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 169/325] ASoC: tas2764: Mark SW_RESET as volatile Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 170/325] ASoC: tas2764: Power up/down amp on mute ops Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 171/325] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 172/325] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 173/325] smack: recognize ipv4 CIPSO w/o categories Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 174/325] kunit: tool: Use qboot on QEMU x86_64 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 175/325] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 176/325] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 177/325] serial: sh-sci: Update the suspend/resume support Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 178/325] phy: core: dont require set_mode() callback for phy_get_mode() to work Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 179/325] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 180/325] drm/amd/display: Initial psr_version with correct setting Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 181/325] drm/amdgpu: enlarge the VBIOS binary size limit Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 182/325] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 183/325] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 184/325] net/mlx5e: set the tx_queue_len for pfifo_fast Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 185/325] net/mlx5e: reduce rep rxq depth to 256 for ECPF Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 186/325] wifi: mac80211: dont unconditionally call drv_mgd_complete_tx() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 187/325] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 188/325] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 189/325] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 190/325] r8152: add vendor/device ID pair for Dell Alienware AW1022z Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 191/325] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 192/325] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 193/325] hwmon: (xgene-hwmon) use appropriate type for the latency value Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 194/325] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 195/325] vxlan: Annotate FDB data races Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 196/325] r8169: dont scan PHY addresses > 0 Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 197/325] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 198/325] rcu: handle unstable rdp in rcu_read_unlock_strict() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 199/325] rcu: fix header guard for rcu_all_qs() Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 200/325] perf: Avoid the read if the count is already updated Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 201/325] ice: count combined queues using Rx/Tx count Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 202/325] net/mana: fix warning in the writer of client oob Greg Kroah-Hartman
2025-06-02 13:47 ` [PATCH 6.1 203/325] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 204/325] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 205/325] scsi: st: Restore some drive settings after reset Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 206/325] HID: usbkbd: Fix the bit shift number for LED_KANA Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 207/325] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 208/325] drm/ast: Find VBIOS mode from regular display size Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 209/325] bpftool: Fix readlink usage in get_fd_type Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 210/325] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 211/325] wifi: rtl8xxxu: retry firmware download on error Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 212/325] wifi: rtw88: Dont use static local variable in rtw8822b_set_tx_power_index_by_rate Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 213/325] wifi: rtw89: add wiphy_lock() to work that isnt held wiphy_lock() yet Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 214/325] spi: zynqmp-gqspi: Always acknowledge interrupts Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 215/325] regulator: ad5398: Add device tree support Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 216/325] wifi: ath9k: return by of_get_mac_address Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 217/325] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 218/325] drm/panel-edp: Add Starry 116KHD024006 Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 219/325] drm: Add valid clones check Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 220/325] ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 221/325] pinctrl: meson: define the pull up/down resistor value as 60 kOhm Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 222/325] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 223/325] ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 224/325] nvmet-tcp: dont restore null sk_state_change Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 225/325] io_uring/fdinfo: annotate racy sq/cq head/tail reads Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 226/325] btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 227/325] wifi: iwlwifi: add support for Killer on MTL Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 228/325] xenbus: Allow PVH dom0 a non-local xenstore Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 229/325] __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 230/325] espintcp: remove encap socket caching to avoid reference leak Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 231/325] dmaengine: idxd: add per DSA wq workqueue for processing cr faults Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 232/325] dmaengine: idxd: add idxd_copy_cr() to copy user completion record during page fault handling Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 233/325] dmaengine: idxd: Fix allowing write() from different address spaces Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 234/325] remoteproc: qcom_wcnss: Fix on platforms without fallback regulators Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 235/325] clk: sunxi-ng: d1: Add missing divider for MMC mod clocks Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 236/325] xfrm: Sanitize marks before insert Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 237/325] dmaengine: idxd: Fix ->poll() return value Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 238/325] Bluetooth: L2CAP: Fix not checking l2cap_chan security level Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 239/325] bridge: netfilter: Fix forwarding of fragmented packets Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 240/325] ice: fix vf->num_mac count with port representors Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 241/325] net: dwmac-sun8i: Use parsed internal PHY address instead of 1 Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 242/325] net: lan743x: Restore SGMII CTRL register on resume Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 243/325] io_uring: fix overflow resched cqe reordering Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 244/325] sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 245/325] octeontx2-pf: Add support for page pool Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 246/325] octeontx2-pf: Add AF_XDP non-zero copy support Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 247/325] net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 248/325] octeontx2-af: Set LMT_ENA bit for APR table entries Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 249/325] octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 250/325] crypto: algif_hash - fix double free in hash_accept Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 251/325] padata: do not leak refcount in reorder_work Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 252/325] can: slcan: allow reception of short error messages Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 253/325] can: bcm: add locking for bcm_op runtime updates Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 254/325] can: bcm: add missing rcu read protection for procfs content Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 255/325] ALSA: pcm: Fix race of buffer access at PCM OSS layer Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 256/325] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10 Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 257/325] llc: fix data loss when reading from a socket in llc_ui_recvmsg() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 258/325] platform/x86: dell-wmi-sysman: Avoid buffer overflow in current_password_store() Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 259/325] drm/edid: fixed the bug that hdr metadata was not reset Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 260/325] smb: client: Fix use-after-free in cifs_fill_dirent Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 261/325] smb: client: Reset all search buffer pointers when releasing buffer Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 262/325] Revert "drm/amd: Keep display off while going into S4" Greg Kroah-Hartman
2025-06-02 13:48 ` [PATCH 6.1 263/325] memcg: always call cond_resched() after fn() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 264/325] mm/page_alloc.c: avoid infinite retries caused by cpuset race Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 265/325] Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection" Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 266/325] ksmbd: fix stream write failure Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 267/325] spi: spi-fsl-dspi: restrict register range for regmap access Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 268/325] spi: spi-fsl-dspi: Halt the module after a new message transfer Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 269/325] spi: spi-fsl-dspi: Reset SR flags before sending a new message Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 270/325] kbuild: Disable -Wdefault-const-init-unsafe Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 271/325] serial: sh-sci: Save and restore more registers Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 272/325] pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 273/325] i3c: master: svc: Fix implicit fallthrough in svc_i3c_master_ibi_work() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 274/325] x86/mm/init: Handle the special case of device private pages in add_pages(), to not increase max_pfn and trigger dma_addressing_limited() bounce buffers bounce buffers Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 275/325] dmaengine: idxd: Fix passing freed memory in idxd_cdev_open() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 276/325] octeontx2-pf: fix page_pool creation fail for rings > 32k Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 277/325] octeontx2-pf: Fix page pool cache index corruption Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 278/325] octeontx2-pf: Fix page pool frag allocation warning Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 279/325] hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 280/325] btrfs: check folio mapping after unlock in relocate_one_folio() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 281/325] af_unix: Kconfig: make CONFIG_UNIX bool Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 282/325] af_unix: Return struct unix_sock from unix_get_socket() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 283/325] af_unix: Run GC on only one CPU Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 284/325] af_unix: Try to run GC async Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 285/325] af_unix: Replace BUG_ON() with WARN_ON_ONCE() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 286/325] af_unix: Remove io_uring code for GC Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 287/325] af_unix: Remove CONFIG_UNIX_SCM Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 288/325] af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 289/325] af_unix: Allocate struct unix_edge " Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 290/325] af_unix: Link struct unix_edge when queuing skb Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 291/325] af_unix: Bulk update unix_tot_inflight/unix_inflight " Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 292/325] af_unix: Iterate all vertices by DFS Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 293/325] af_unix: Detect Strongly Connected Components Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 294/325] af_unix: Save listener for embryo socket Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 295/325] af_unix: Fix up unix_edge.successor " Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 296/325] af_unix: Save O(n) setup of Tarjans algo Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 297/325] af_unix: Skip GC if no cycle exists Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 298/325] af_unix: Avoid Tarjans algorithm if unnecessary Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 299/325] af_unix: Assign a unique index to SCC Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 300/325] af_unix: Detect dead SCC Greg Kroah-Hartman
2025-06-02 13:49 ` Greg Kroah-Hartman [this message]
2025-06-02 13:49 ` [PATCH 6.1 302/325] af_unix: Remove lock dance in unix_peek_fds() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 303/325] af_unix: Try not to hold unix_gc_lock during accept() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 304/325] af_unix: Dont access successor in unix_del_edges() during GC Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 305/325] af_unix: Add dead flag to struct scm_fp_list Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 306/325] af_unix: Fix garbage collection of embryos carrying OOB with SCM_RIGHTS Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 307/325] af_unix: Fix uninit-value in __unix_walk_scc() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 308/325] arm64: dts: qcom: sm8350: Fix typo in pil_camera_mem node Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 309/325] net_sched: hfsc: Address reentrant enqueue adding class to eltree twice Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 310/325] perf/arm-cmn: Fix REQ2/SNP2 mixup Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 311/325] perf/arm-cmn: Initialise cmn->cpu earlier Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 312/325] coredump: fix error handling for replace_fd() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 313/325] pid: add pidfd_prepare() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 314/325] fork: use pidfd_prepare() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 315/325] coredump: hand a pidfd to the usermode coredump helper Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 316/325] HID: quirks: Add ADATA XPG alpha wireless mouse support Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 317/325] nfs: dont share pNFS DS connections between net namespaces Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 318/325] platform/x86: thinkpad_acpi: Support also NEC Lavie X1475JAS Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 319/325] um: let make clean properly clean underlying SUBARCH as well Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 320/325] spi: spi-sun4i: fix early activation Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 321/325] nvme-pci: add NVME_QUIRK_NO_DEEPEST_PS quirk for SOLIDIGM P44 Pro Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 322/325] NFS: Avoid flushing data while holding directory locks in nfs_rename() Greg Kroah-Hartman
2025-06-02 13:49 ` [PATCH 6.1 323/325] platform/x86: fujitsu-laptop: Support Lifebook S2110 hotkeys Greg Kroah-Hartman
2025-06-02 13:50 ` [PATCH 6.1 324/325] platform/x86: thinkpad_acpi: Ignore battery threshold change event notification Greg Kroah-Hartman
2025-06-02 13:50 ` [PATCH 6.1 325/325] net: ethernet: ti: am65-cpsw: Lower random mac address error print to info Greg Kroah-Hartman
2025-06-02 17:03 ` [PATCH 6.1 000/325] 6.1.141-rc1 review Peter Schneider
2025-06-02 17:21 ` Florian Fainelli
2025-06-03 7:50 ` Ron Economos
2025-06-03 8:10 ` Naresh Kamboju
2025-06-03 8:31 ` Pavel Machek
2025-06-03 17:12 ` Shuah Khan
2025-06-03 17:23 ` Mark Brown
2025-06-03 17:23 ` Miguel Ojeda
2025-06-03 20:26 ` Hardik Garg
2025-06-04 9:40 ` Jon Hunter
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=20250602134332.147479461@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=kuba@kernel.org \
--cc=kuniyu@amazon.com \
--cc=lee@kernel.org \
--cc=pabeni@redhat.com \
--cc=patches@lists.linux.dev \
--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