From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Hyunwoo Kim <imv4bel@gmail.com>,
David Howells <dhowells@redhat.com>,
Simon Horman <horms@kernel.org>,
Jiayuan Chen <jiayuan.chen@linux.dev>,
linux-afs@lists.infradead.org, stable@kernel.org,
Jeffrey Altman <jaltman@auristor.com>,
Marc Dionne <marc.dionne@auristor.com>,
Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.18 287/315] rxrpc: Fix RESPONSE packet verification to extract skb to a linear buffer
Date: Sun, 7 Jun 2026 12:01:14 +0200 [thread overview]
Message-ID: <20260607095738.132511502@linuxfoundation.org> (raw)
In-Reply-To: <20260607095727.528828913@linuxfoundation.org>
6.18-stable review patch. If anyone has any objections, please let me know.
------------------
From: David Howells <dhowells@redhat.com>
[ Upstream commit 8bfab4b6ffc2fe92da86300728fc8c3c7ebffb56 ]
This improves the fix for CVE-2026-43500.
Fix the verification of RESPONSE packets to avoid the problem of
overwriting a RESPONSE packet sent via splice to a local address by
extracting the contents of the UDP packet into a kmalloc'd linear buffer
rather than decrypting the data in place in the sk_buff (which may corrupt
the original buffer).
Fixes: 24481a7f5733 ("rxrpc: Fix conn-level packet handling to unshare RESPONSE packets")
Reported-by: Hyunwoo Kim <imv4bel@gmail.com>
Closes: https://lore.kernel.org/r/afKV2zGR6rrelPC7@v4bel/
Signed-off-by: David Howells <dhowells@redhat.com>
cc: Simon Horman <horms@kernel.org>
cc: Jiayuan Chen <jiayuan.chen@linux.dev>
cc: linux-afs@lists.infradead.org
cc: stable@kernel.org
Reviewed-by: Jeffrey Altman <jaltman@auristor.com>
Tested-by: Marc Dionne <marc.dionne@auristor.com>
Link: https://patch.msgid.link/20260515230516.2718212-4-dhowells@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
net/rxrpc/ar-internal.h | 7 ++-
net/rxrpc/conn_event.c | 30 ++++++---------
net/rxrpc/insecure.c | 5 +-
net/rxrpc/rxgk.c | 96 +++++++++++++++---------------------------------
net/rxrpc/rxgk_app.c | 46 +++++++++--------------
net/rxrpc/rxgk_common.h | 92 +---------------------------------------------
net/rxrpc/rxkad.c | 29 +++++---------
7 files changed, 81 insertions(+), 224 deletions(-)
--- a/net/rxrpc/ar-internal.h
+++ b/net/rxrpc/ar-internal.h
@@ -307,15 +307,16 @@ struct rxrpc_security {
struct sk_buff *challenge);
/* verify a response */
- int (*verify_response)(struct rxrpc_connection *,
- struct sk_buff *);
+ int (*verify_response)(struct rxrpc_connection *conn,
+ struct sk_buff *response_skb,
+ void *response, unsigned int len);
/* clear connection security */
void (*clear)(struct rxrpc_connection *);
/* Default ticket -> key decoder */
int (*default_decode_ticket)(struct rxrpc_connection *conn, struct sk_buff *skb,
- unsigned int ticket_offset, unsigned int ticket_len,
+ void *ticket, unsigned int ticket_len,
struct key **_key);
};
--- a/net/rxrpc/conn_event.c
+++ b/net/rxrpc/conn_event.c
@@ -243,28 +243,22 @@ static void rxrpc_call_is_secure(struct
static int rxrpc_verify_response(struct rxrpc_connection *conn,
struct sk_buff *skb)
{
+ unsigned int len = skb->len - sizeof(struct rxrpc_wire_header);
+ void *buffer;
int ret;
- if (skb_cloned(skb) || skb_has_frag_list(skb) ||
- skb_has_shared_frag(skb)) {
- /* Copy the packet if shared so that we can do in-place
- * decryption.
- */
- struct sk_buff *nskb = skb_copy(skb, GFP_NOFS);
+ buffer = kmalloc(len, GFP_NOFS);
+ if (!buffer)
+ return -ENOMEM;
- if (nskb) {
- rxrpc_new_skb(nskb, rxrpc_skb_new_unshared);
- ret = conn->security->verify_response(conn, nskb);
- rxrpc_free_skb(nskb, rxrpc_skb_put_response_copy);
- } else {
- /* OOM - Drop the packet. */
- rxrpc_see_skb(skb, rxrpc_skb_see_unshare_nomem);
- ret = -ENOMEM;
- }
- } else {
- ret = conn->security->verify_response(conn, skb);
- }
+ ret = skb_copy_bits(skb, sizeof(struct rxrpc_wire_header), buffer, len);
+ if (ret < 0)
+ goto out;
+ ret = conn->security->verify_response(conn, skb, buffer, len);
+
+out:
+ kfree(buffer);
return ret;
}
--- a/net/rxrpc/insecure.c
+++ b/net/rxrpc/insecure.c
@@ -54,9 +54,10 @@ static int none_sendmsg_respond_to_chall
}
static int none_verify_response(struct rxrpc_connection *conn,
- struct sk_buff *skb)
+ struct sk_buff *response_skb,
+ void *response, unsigned int len)
{
- return rxrpc_abort_conn(conn, skb, RX_PROTOCOL_ERROR, -EPROTO,
+ return rxrpc_abort_conn(conn, response_skb, RX_PROTOCOL_ERROR, -EPROTO,
rxrpc_eproto_rxnull_response);
}
--- a/net/rxrpc/rxgk.c
+++ b/net/rxrpc/rxgk.c
@@ -1084,11 +1084,12 @@ static int rxgk_sendmsg_respond_to_chall
* unsigned int call_numbers<>;
* };
*/
-static int rxgk_do_verify_authenticator(struct rxrpc_connection *conn,
- const struct krb5_enctype *krb5,
- struct sk_buff *skb,
- __be32 *p, __be32 *end)
+static int rxgk_verify_authenticator(struct rxrpc_connection *conn,
+ const struct krb5_enctype *krb5,
+ struct sk_buff *skb,
+ void *auth, unsigned int auth_len)
{
+ __be32 *p = auth, *end = auth + auth_len;
u32 app_len, call_count, level, epoch, cid, i;
_enter("");
@@ -1152,37 +1153,6 @@ static int rxgk_do_verify_authenticator(
}
/*
- * Extract the authenticator and verify it.
- */
-static int rxgk_verify_authenticator(struct rxrpc_connection *conn,
- const struct krb5_enctype *krb5,
- struct sk_buff *skb,
- unsigned int auth_offset, unsigned int auth_len)
-{
- void *auth;
- __be32 *p;
- int ret;
-
- auth = kmalloc(auth_len, GFP_NOFS);
- if (!auth)
- return -ENOMEM;
-
- ret = skb_copy_bits(skb, auth_offset, auth, auth_len);
- if (ret < 0) {
- ret = rxrpc_abort_conn(conn, skb, RXGK_NOTAUTH, -EPROTO,
- rxgk_abort_resp_short_auth);
- goto error;
- }
-
- p = auth;
- ret = rxgk_do_verify_authenticator(conn, krb5, skb, p,
- p + auth_len / sizeof(*p));
-error:
- kfree(auth);
- return ret;
-}
-
-/*
* Verify a response.
*
* struct RXGK_Response {
@@ -1192,49 +1162,45 @@ error:
* };
*/
static int rxgk_verify_response(struct rxrpc_connection *conn,
- struct sk_buff *skb)
+ struct sk_buff *skb,
+ void *buffer, unsigned int len)
{
const struct krb5_enctype *krb5;
struct rxrpc_key_token *token;
struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
- struct rxgk_response rhdr;
+ struct rxgk_response *rhdr;
struct rxgk_context *gk;
struct key *key = NULL;
- unsigned int offset = sizeof(struct rxrpc_wire_header);
- unsigned int len = skb->len - sizeof(struct rxrpc_wire_header);
- unsigned int token_offset, token_len;
- unsigned int auth_offset, auth_len;
+ unsigned int resp_token_len, auth_len;
+ void *resp_token, *auth;
__be32 xauth_len;
int ret, ec;
_enter("{%d}", conn->debug_id);
/* Parse the RXGK_Response object */
- if (sizeof(rhdr) + sizeof(__be32) > len)
+ if (len < sizeof(*rhdr) + sizeof(__be32))
goto short_packet;
-
- if (skb_copy_bits(skb, offset, &rhdr, sizeof(rhdr)) < 0)
- goto short_packet;
- offset += sizeof(rhdr);
- len -= sizeof(rhdr);
-
- token_offset = offset;
- token_len = ntohl(rhdr.token_len);
- if (token_len > len ||
- xdr_round_up(token_len) + sizeof(__be32) > len)
+ rhdr = buffer;
+ buffer += sizeof(*rhdr);
+ len -= sizeof(*rhdr);
+
+ resp_token = buffer;
+ resp_token_len = ntohl(rhdr->token_len);
+ if (resp_token_len > len ||
+ xdr_round_up(resp_token_len) + sizeof(__be32) > len)
goto short_packet;
- trace_rxrpc_rx_response(conn, sp->hdr.serial, 0, sp->hdr.cksum, token_len);
+ trace_rxrpc_rx_response(conn, sp->hdr.serial, 0, sp->hdr.cksum, resp_token_len);
- offset += xdr_round_up(token_len);
- len -= xdr_round_up(token_len);
+ buffer += xdr_round_up(resp_token_len);
+ len -= xdr_round_up(resp_token_len);
- if (skb_copy_bits(skb, offset, &xauth_len, sizeof(xauth_len)) < 0)
- goto short_packet;
- offset += sizeof(xauth_len);
+ xauth_len = *(__be32 *)buffer;
+ buffer += sizeof(xauth_len);
len -= sizeof(xauth_len);
- auth_offset = offset;
+ auth = buffer;
auth_len = ntohl(xauth_len);
if (auth_len > len)
goto short_packet;
@@ -1249,7 +1215,7 @@ static int rxgk_verify_response(struct r
* to the app to deal with - which might mean a round trip to
* userspace.
*/
- ret = rxgk_extract_token(conn, skb, token_offset, token_len, &key);
+ ret = rxgk_extract_token(conn, skb, resp_token, resp_token_len, &key);
if (ret < 0)
goto out;
@@ -1263,7 +1229,7 @@ static int rxgk_verify_response(struct r
*/
token = key->payload.data[0];
conn->security_level = token->rxgk->level;
- conn->rxgk.start_time = __be64_to_cpu(rhdr.start_time);
+ conn->rxgk.start_time = __be64_to_cpu(rhdr->start_time);
gk = rxgk_generate_transport_key(conn, token->rxgk, sp->hdr.cksum, GFP_NOFS);
if (IS_ERR(gk)) {
@@ -1273,18 +1239,18 @@ static int rxgk_verify_response(struct r
krb5 = gk->krb5;
- trace_rxrpc_rx_response(conn, sp->hdr.serial, krb5->etype, sp->hdr.cksum, token_len);
+ trace_rxrpc_rx_response(conn, sp->hdr.serial, krb5->etype, sp->hdr.cksum,
+ resp_token_len);
/* Decrypt, parse and verify the authenticator. */
- ret = rxgk_decrypt_skb(krb5, gk->resp_enc, skb,
- &auth_offset, &auth_len, &ec);
+ ret = rxgk_decrypt(krb5, gk->resp_enc, &auth, &auth_len, &ec);
if (ret < 0) {
rxrpc_abort_conn(conn, skb, RXGK_SEALEDINCON, ret,
rxgk_abort_resp_auth_dec);
goto out_gk;
}
- ret = rxgk_verify_authenticator(conn, krb5, skb, auth_offset, auth_len);
+ ret = rxgk_verify_authenticator(conn, krb5, skb, auth, auth_len);
if (ret < 0)
goto out_gk;
--- a/net/rxrpc/rxgk_app.c
+++ b/net/rxrpc/rxgk_app.c
@@ -40,7 +40,7 @@
* };
*/
int rxgk_yfs_decode_ticket(struct rxrpc_connection *conn, struct sk_buff *skb,
- unsigned int ticket_offset, unsigned int ticket_len,
+ void *buffer, unsigned int ticket_len,
struct key **_key)
{
struct rxrpc_key_token *token;
@@ -49,7 +49,7 @@ int rxgk_yfs_decode_ticket(struct rxrpc_
size_t pre_ticket_len, payload_len;
unsigned int klen, enctype;
void *payload, *ticket;
- __be32 *t, *p, *q, tmp[2];
+ __be32 *t, *p, *q, *tmp;
int ret;
_enter("");
@@ -59,10 +59,7 @@ int rxgk_yfs_decode_ticket(struct rxrpc_
rxgk_abort_resp_short_yfs_tkt);
/* Get the session key length */
- ret = skb_copy_bits(skb, ticket_offset, tmp, sizeof(tmp));
- if (ret < 0)
- return rxrpc_abort_conn(conn, skb, RXGK_INCONSISTENCY, -EPROTO,
- rxgk_abort_resp_short_yfs_klen);
+ tmp = buffer;
enctype = ntohl(tmp[0]);
klen = ntohl(tmp[1]);
@@ -84,12 +81,7 @@ int rxgk_yfs_decode_ticket(struct rxrpc_
* it.
*/
ticket = payload + pre_ticket_len;
- ret = skb_copy_bits(skb, ticket_offset, ticket, ticket_len);
- if (ret < 0) {
- ret = rxrpc_abort_conn(conn, skb, RXGK_INCONSISTENCY, -EPROTO,
- rxgk_abort_resp_short_yfs_tkt);
- goto error;
- }
+ memcpy(ticket, buffer, ticket_len);
/* Fill out the form header. */
p = payload;
@@ -131,7 +123,7 @@ int rxgk_yfs_decode_ticket(struct rxrpc_
goto error;
}
- /* Ticket read in with skb_copy_bits above */
+ /* Ticket appended above. */
q += xdr_round_up(ticket_len) / 4;
if (WARN_ON((unsigned long)q - (unsigned long)payload != payload_len)) {
ret = -EIO;
@@ -182,14 +174,15 @@ error:
* [tools.ietf.org/html/draft-wilkinson-afs3-rxgk-afs-08 sec 6.1]
*/
int rxgk_extract_token(struct rxrpc_connection *conn, struct sk_buff *skb,
- unsigned int token_offset, unsigned int token_len,
+ void *token, unsigned int token_len,
struct key **_key)
{
const struct krb5_enctype *krb5;
const struct krb5_buffer *server_secret;
struct crypto_aead *token_enc = NULL;
struct key *server_key;
- unsigned int ticket_offset, ticket_len;
+ unsigned int ticket_len;
+ void *ticket;
u32 kvno, enctype;
int ret, ec = 0;
@@ -197,24 +190,23 @@ int rxgk_extract_token(struct rxrpc_conn
__be32 kvno;
__be32 enctype;
__be32 token_len;
- } container;
+ } *container;
- if (token_len < sizeof(container))
+ if (token_len < sizeof(*container))
goto short_packet;
/* Decode the RXGK_TokenContainer object. This tells us which server
* key we should be using. We can then fetch the key, get the secret
* and set up the crypto to extract the token.
*/
- if (skb_copy_bits(skb, token_offset, &container, sizeof(container)) < 0)
- goto short_packet;
+ container = token;
+ token += sizeof(*container);
- kvno = ntohl(container.kvno);
- enctype = ntohl(container.enctype);
- ticket_len = ntohl(container.token_len);
- ticket_offset = token_offset + sizeof(container);
+ kvno = ntohl(container->kvno);
+ enctype = ntohl(container->enctype);
+ ticket_len = ntohl(container->token_len);
- if (ticket_len > xdr_round_down(token_len - sizeof(container)))
+ if (ticket_len > xdr_round_down(token_len - sizeof(*container)))
goto short_packet;
_debug("KVNO %u", kvno);
@@ -237,8 +229,8 @@ int rxgk_extract_token(struct rxrpc_conn
* gain access to K0, from which we can derive the transport key and
* thence decode the authenticator.
*/
- ret = rxgk_decrypt_skb(krb5, token_enc, skb,
- &ticket_offset, &ticket_len, &ec);
+ ticket = token;
+ ret = rxgk_decrypt(krb5, token_enc, &ticket, &ticket_len, &ec);
crypto_free_aead(token_enc);
token_enc = NULL;
if (ret < 0) {
@@ -248,7 +240,7 @@ int rxgk_extract_token(struct rxrpc_conn
return ret;
}
- ret = conn->security->default_decode_ticket(conn, skb, ticket_offset,
+ ret = conn->security->default_decode_ticket(conn, skb, ticket,
ticket_len, _key);
if (ret < 0)
goto cant_get_token;
--- a/net/rxrpc/rxgk_common.h
+++ b/net/rxrpc/rxgk_common.h
@@ -41,10 +41,10 @@ struct rxgk_context {
* rxgk_app.c
*/
int rxgk_yfs_decode_ticket(struct rxrpc_connection *conn, struct sk_buff *skb,
- unsigned int ticket_offset, unsigned int ticket_len,
+ void *ticket, unsigned int ticket_len,
struct key **_key);
int rxgk_extract_token(struct rxrpc_connection *conn, struct sk_buff *skb,
- unsigned int token_offset, unsigned int token_len,
+ void *token, unsigned int token_len,
struct key **_key);
/*
@@ -62,50 +62,6 @@ int rxgk_set_up_token_cipher(const struc
gfp_t gfp);
/*
- * Apply decryption and checksumming functions to part of an skbuff. The
- * offset and length are updated to reflect the actual content of the encrypted
- * region.
- */
-static inline
-int rxgk_decrypt_skb(const struct krb5_enctype *krb5,
- struct crypto_aead *aead,
- struct sk_buff *skb,
- unsigned int *_offset, unsigned int *_len,
- int *_error_code)
-{
- struct scatterlist sg[16];
- size_t offset = 0, len = *_len;
- int nr_sg, ret;
-
- sg_init_table(sg, ARRAY_SIZE(sg));
- nr_sg = skb_to_sgvec(skb, sg, *_offset, len);
- if (unlikely(nr_sg < 0))
- return nr_sg;
-
- ret = crypto_krb5_decrypt(krb5, aead, sg, nr_sg,
- &offset, &len);
- switch (ret) {
- case 0:
- *_offset += offset;
- *_len = len;
- break;
- case -EBADMSG: /* Checksum mismatch. */
- case -EPROTO:
- *_error_code = RXGK_SEALEDINCON;
- break;
- case -EMSGSIZE:
- *_error_code = RXGK_PACKETSHORT;
- break;
- case -ENOPKG: /* Would prefer RXGK_BADETYPE, but not available for YFS. */
- default:
- *_error_code = RXGK_INCONSISTENCY;
- break;
- }
-
- return ret;
-}
-
-/*
* Apply decryption and checksumming functions a flat data buffer. The data
* point and length are updated to reflect the actual content of the encrypted
* region.
@@ -136,50 +92,6 @@ static inline int rxgk_decrypt(const str
case -EPROTO:
*_error_code = RXGK_SEALEDINCON;
break;
- case -EMSGSIZE:
- *_error_code = RXGK_PACKETSHORT;
- break;
- case -ENOPKG: /* Would prefer RXGK_BADETYPE, but not available for YFS. */
- default:
- *_error_code = RXGK_INCONSISTENCY;
- break;
- }
-
- return ret;
-}
-
-/*
- * Check the MIC on a region of an skbuff. The offset and length are updated
- * to reflect the actual content of the secure region.
- */
-static inline
-int rxgk_verify_mic_skb(const struct krb5_enctype *krb5,
- struct crypto_shash *shash,
- const struct krb5_buffer *metadata,
- struct sk_buff *skb,
- unsigned int *_offset, unsigned int *_len,
- u32 *_error_code)
-{
- struct scatterlist sg[16];
- size_t offset = 0, len = *_len;
- int nr_sg, ret;
-
- sg_init_table(sg, ARRAY_SIZE(sg));
- nr_sg = skb_to_sgvec(skb, sg, *_offset, len);
- if (unlikely(nr_sg < 0))
- return nr_sg;
-
- ret = crypto_krb5_verify_mic(krb5, shash, metadata, sg, nr_sg,
- &offset, &len);
- switch (ret) {
- case 0:
- *_offset += offset;
- *_len = len;
- break;
- case -EBADMSG: /* Checksum mismatch */
- case -EPROTO:
- *_error_code = RXGK_SEALEDINCON;
- break;
case -EMSGSIZE:
*_error_code = RXGK_PACKETSHORT;
break;
--- a/net/rxrpc/rxkad.c
+++ b/net/rxrpc/rxkad.c
@@ -963,7 +963,6 @@ static int rxkad_decrypt_ticket(struct r
*_expiry = 0;
ASSERT(server_key->payload.data[0] != NULL);
- ASSERTCMP((unsigned long) ticket & 7UL, ==, 0);
memcpy(&iv, &server_key->payload.data[2], sizeof(iv));
@@ -1112,14 +1111,15 @@ unlock:
* verify a response
*/
static int rxkad_verify_response(struct rxrpc_connection *conn,
- struct sk_buff *skb)
+ struct sk_buff *skb,
+ void *buffer, unsigned int len)
{
struct rxkad_response *response;
struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
struct rxrpc_crypt session_key;
struct key *server_key;
time64_t expiry;
- void *ticket = NULL;
+ void *ticket;
u32 version, kvno, ticket_len, level;
__be32 csum;
int ret, i;
@@ -1142,13 +1142,8 @@ static int rxkad_verify_response(struct
}
}
- ret = -ENOMEM;
- response = kzalloc(sizeof(struct rxkad_response), GFP_NOFS);
- if (!response)
- goto error;
-
- if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header),
- response, sizeof(*response)) < 0) {
+ response = buffer;
+ if (len < sizeof(*response)) {
ret = rxrpc_abort_conn(conn, skb, RXKADPACKETSHORT, -EPROTO,
rxkad_abort_resp_short);
goto error;
@@ -1160,6 +1155,9 @@ static int rxkad_verify_response(struct
trace_rxrpc_rx_response(conn, sp->hdr.serial, version, kvno, ticket_len);
+ buffer += sizeof(*response);
+ len -= sizeof(*response);
+
if (version != RXKAD_VERSION) {
ret = rxrpc_abort_conn(conn, skb, RXKADINCONSISTENCY, -EPROTO,
rxkad_abort_resp_version);
@@ -1179,13 +1177,8 @@ static int rxkad_verify_response(struct
}
/* extract the kerberos ticket and decrypt and decode it */
- ret = -ENOMEM;
- ticket = kmalloc(ticket_len, GFP_NOFS);
- if (!ticket)
- goto error;
-
- if (skb_copy_bits(skb, sizeof(struct rxrpc_wire_header) + sizeof(*response),
- ticket, ticket_len) < 0) {
+ ticket = buffer;
+ if (ticket_len > len) {
ret = rxrpc_abort_conn(conn, skb, RXKADPACKETSHORT, -EPROTO,
rxkad_abort_resp_short_tkt);
goto error;
@@ -1265,8 +1258,6 @@ static int rxkad_verify_response(struct
ret = rxrpc_get_server_data_key(conn, &session_key, expiry, kvno);
error:
- kfree(ticket);
- kfree(response);
key_put(server_key);
_leave(" = %d", ret);
return ret;
next prev parent reply other threads:[~2026-06-07 10:58 UTC|newest]
Thread overview: 632+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-07 9:56 [PATCH 6.18 000/315] 6.18.35-rc1 review Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 001/315] Input: usbtouchscreen - clamp NEXIO data_len/x_len to URB buffer size Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 002/315] net/sched: cls_fw: fix NULL dereference of "old" filters before change() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 003/315] net: mctp: ensure our nlmsg responses are initialised Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 004/315] xfrm: move policy_bydst RCU sync from per-netns .exit to .pre_exit Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 005/315] net/sched: sch_sfb: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 006/315] bcache: fix uninitialized closure object Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 007/315] nfc: llcp: Fix use-after-free in llcp_sock_release() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 008/315] nfc: llcp: Fix use-after-free race in nfc_llcp_recv_cc() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 009/315] xfrm: Check for underflow in xfrm_state_mtu Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 010/315] nfc: nxp-nci: i2c: use rising-edge IRQ on ACPI systems Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 011/315] tools/bootconfig: Fix buf leaks in apply_xbc Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 012/315] HID: remove duplicate hid_warn_ratelimited definition Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 013/315] kunit: fix use-after-free in debugfs when using kunit.filter Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 014/315] accel/rocket: fix UAF via dangling GEM handle in create_bo Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 015/315] kernel/fork: validate exit_signal in kernel_clone() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 016/315] netfilter: synproxy: refresh tcphdr after skb_ensure_writable Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 017/315] netfilter: xt_cpu: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 018/315] netfilter: ebtables: fix OOB read in compat_mtw_from_user Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 019/315] netfilter: nf_tables: fix dst corruption in same register operation Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 020/315] tun: free page on short-frame rejection in tun_xdp_one() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 021/315] tun: free page on build_skb failure " Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 022/315] vsock: keep poll shutdown state consistent Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 023/315] net: netlink: fix sending unassigned nsid after assigned one Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 024/315] net: netlink: dont set nsid on local notifications Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 025/315] net/smc: Do not re-initialize smc hashtables Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 026/315] net/iucv: fix locking in .getsockopt Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 027/315] scsi: core: Run queues for all non-SDEV_DEL devices from scsi_run_host_queues Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 028/315] ipv4: free net->ipv4.sysctl_local_reserved_ports after unregister_net_sysctl_table() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 029/315] ALSA: pcm: oss: Fix setup list UAF on proc write error Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 030/315] ASoC: Intel: bytcht_es8316: Fix MCLK leak on init errors Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 031/315] net/mlx5: HWS: Reject unsupported remove-header action Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.18 032/315] net: hsr: fix potential OOB access in supervision frame handling Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 033/315] gpio: mxc: fix irq_high handling Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 034/315] net: team: Remove unused team_mode_op, port_enabled Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 035/315] net: team: Rename port_disabled team mode op to port_tx_disabled Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 036/315] net: team: fix NULL pointer dereference in team_xmit during mode change Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 037/315] net: Avoid checksumming unreadable skb tail on trim Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 038/315] ethtool: rss: avoid modifying the RSS context response Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 039/315] ethtool: rss: add missing errno on RSS context delete Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 040/315] ethtool: rss: fix falsely ignoring indir table updates Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 041/315] ethtool: rss: fix indir_table and hkey leak on get_rxfh failure Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 042/315] ethtool: rss: fix hkey leak when indir_size is 0 Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 043/315] ethtool: rss: avoid device context leak on reply-build failure Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 044/315] ethtool: module: call ethnl_ops_complete() on module flash errors Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 045/315] ethtool: module: avoid leaking a netdev ref " Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 046/315] ethtool: module: avoid racy updates to dev->ethtool bitfield Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 047/315] ethtool: module: check fw_flash_in_progress under rtnl_lock Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 048/315] ethtool: module: fix cleanup if socket used for flashing multiple devices Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 049/315] ethtool: cmis: require exact CDB reply length Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 050/315] ethtool: cmis: fix u16-to-u8 truncation of msleep_pre_rpl Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 051/315] ethtool: cmis: validate start_cmd_payload_size from module Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 052/315] ethtool: cmis: validate fw->size against start_cmd_payload_size Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 053/315] cxl/test: Update mock dev array before calling platform_device_add() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 054/315] tunnels: load network headers after skb_cow() in iptunnel_pmtud_build_icmp[v6]() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 055/315] vxlan: do not reuse cached ip_hdr() value after skb_tunnel_check_pmtu() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 056/315] tunnels: do not assume transport header in iptunnel_pmtud_check_icmp() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 057/315] ksmbd: fix FSCTL permission bypass by adding a permission check for FSCTL_SET_SPARSE Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 058/315] ASoC: codecs: simple-mux: Fix enum control bounds check Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 059/315] drm/xe: Restore IDLEDLY regiter on engine reset Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 060/315] Bluetooth: 6lowpan: check skb_clone() return value in send_mcast_pkt() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 061/315] bonding: refuse to enslave CAN devices Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 062/315] bridge: Fix sleep in atomic context in netlink path Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 063/315] bridge: Fix sleep in atomic context in sysfs path Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 064/315] ethtool: coalesce: cap profile updates at NET_DIM_PARAMS_NUM_PROFILES Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 065/315] ethtool: tsconfig: fix reply error handling Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 066/315] ethtool: linkstate: fix unbalanced ethnl_ops_complete() on PHY lookup error Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 067/315] ethtool: pse-pd: fix missing ethnl_ops_complete() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 068/315] ethtool: tsconfig: " Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 069/315] ethtool: tsinfo: fix uninitialized stats on the by-PHC path Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 070/315] ethtool: tsinfo: dont pass ERR_PTR to genlmsg_cancel on prepare failure Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 071/315] ethtool: strset: fix header attribute index in ethnl_req_get_phydev() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 072/315] ethtool: eeprom: add missing ethnl_ops_begin() / _complete() during fallback Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 073/315] ethtool: eeprom: add more safeties to EEPROM Netlink fallback Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 074/315] ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 075/315] net/sched: Revert "net/sched: Restrict conditions for adding duplicating netems to qdisc tree" Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 076/315] net: hibmcge: disable Relaxed Ordering to fix RX packet corruption Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 077/315] net/handshake: Use spin_lock_bh for hn_lock Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 073/307] net/sched: Revert "net/sched: Restrict conditions for adding duplicating netems to qdisc tree" Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 078/315] nvme-tcp: store negative errno in queue->tls_err Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 079/315] net/handshake: Pass negative errno through handshake_complete() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 080/315] Bluetooth: l2cap: clear chan->ident on ECRED reconfiguration success Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 081/315] Bluetooth: L2CAP: Fix possible crash on l2cap_ecred_conn_rsp Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 082/315] Bluetooth: hci_sync: Set HCI_CMD_DRAIN_WORKQUEUE during device close Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 083/315] Bluetooth: hci_sync: Reset device counters in hci_dev_close_sync() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 084/315] gpio: adnp: fix flow control regression caused by scoped_guard() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 085/315] gpio: virtuser: Fix uninitialized data bug in gpio_virtuser_direction_do_write() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 086/315] gpio: rockchip: convert bank->clk to devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 087/315] gpio: rockchip: teardown bugs and resource leaks Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 088/315] net: mana: Add NULL guards in teardown path to prevent panic on attach failure Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 089/315] net: mana: Skip redundant detach on already-detached port Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 090/315] sctp: fix race between sctp_wait_for_connect and peeloff Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 091/315] vsock/virtio: bind uarg before filling zerocopy skb Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 087/307] Bluetooth: L2CAP: Fix possible crash on l2cap_ecred_conn_rsp Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.18 092/315] ipv6: fix possible infinite loop in rt6_fill_node() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 093/315] ipv6: fix possible infinite loop in fib6_select_path() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 094/315] net: skbuff: fix pskb_carve leaking zcopy pages Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 095/315] media: rc: fix race between unregister and urb/irq callbacks Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 096/315] media: rc: ttusbir: fix inverted error logic Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 097/315] smb: client: validate the whole DACL before rewriting it in cifsacl Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 098/315] Revert "x86/fpu: Refine and simplify the magic number check during signal return" Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 099/315] s390/cio: Restore GFP_DMA for CHSC allocation Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 100/315] drm/i915/psr: Add defininitions for INTEL_WA_REGISTER_CAPS DPCD register Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 101/315] drm/i915/psr: Read Intel DPCD workaround register Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 102/315] drm/i915/psr: Apply Intel DPCD workaround when SDP on prior line used Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 103/315] phy: mscc: Use PHY_ID_MATCH_EXACT for VSC8584, VSC8582, VSC8575, VSC856X Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 104/315] iio: imu: st_lsm6dsx: fix stack leak in tagged FIFO buffer Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 105/315] iio: imu: adis16550: fix stack leak in trigger handler Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 106/315] iio: pressure: bmp280: fix stack leak in bmp580 " Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 107/315] usb: typec: ucsi: ccg: reject firmware images without a : record header Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 108/315] usb: typec: tcpm: validate VDO count in Discover Identity ACK handlers Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 109/315] usb: typec: tcpm: bound altmode_desc[] per iteration in svdm_consume_modes() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 110/315] usb: typec: ucsi: displayport: NAK DP_CMD_CONFIGURE without a payload VDO Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 111/315] usb: typec: altmodes/displayport: validate count before reading Status Update VDO Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 112/315] usb: typec: wcove: dont write past struct pd_message in wcove_read_rx_buffer() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 113/315] usb: typec: tcpm/tcpci_maxim: validate header NDO against RX_BYTE_CNT Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 114/315] usb: typec: ucsi: validate connector number in ucsi_connector_change() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 115/315] USB: serial: safe_serial: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 116/315] media: rc: igorplugusb: fix control request setup packet Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 117/315] Input: ims-pcu - fix usb_free_coherent() size in ims_pcu_buffers_free() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 118/315] HID: quirks: Add ALWAYS_POLL quirk for SIGMACHIP USB mouse Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 119/315] Bluetooth: btusb: Allow firmware re-download when version matches Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 120/315] hpfs: fix a crash if hpfs_map_dnode_bitmap fails Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 121/315] mm/damon/sysfs-schemes: delete tried region in regions_rmdirs() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 122/315] ipc: limit next_id allocation to the valid ID range Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 123/315] mm: memcontrol: propagate NMI slab stats to memcg vmstats Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 124/315] memfd: deny writeable mappings when implying SEAL_WRITE Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 125/315] mm/rmap: initialize nr_pages to 1 at loop start in try_to_unmap_one Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 126/315] auxdisplay: line-display: fix OOB read on zero-length message_store() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 127/315] smb: client: fix uninitialized variable in smb2_writev_callback Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 128/315] Bluetooth: L2CAP: use chan timer to close channels in cleanup_listen() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 129/315] Bluetooth: L2CAP: fix chan ref leak in l2cap_chan_timeout() on !conn Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 130/315] Bluetooth: HIDP: fix missing length checks in hidp_input_report() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 131/315] Bluetooth: ISO: fix UAF in iso_recv_frame Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 132/315] Bluetooth: ISO: serialize iso_sock_clear_timer with socket lock Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 133/315] Bluetooth: hci_conn: Fix memory leak in hci_le_big_terminate() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 134/315] Bluetooth: hci_qca: Use 100 ms SSR delay for rampatch and NVM loading Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 135/315] Bluetooth: hci_sync: fix UAF in hci_le_create_cis_sync Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 136/315] Input: xpad - fix out-of-bounds access for Share button Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 137/315] parport: Fix race between port and client registration Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 138/315] rust_binder: Avoid holding lock when dropping delivered_death Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 139/315] rust_binder: avoid calling pending_oneway_finished() on TF_UPDATE_TXN Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 140/315] USB: cdc-acm: Fix bit overlap and move quirk definitions to header Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 141/315] KVM: arm64: Correctly cap ZCR_EL2 provided by a guest hypervisor Greg Kroah-Hartman
2026-06-07 17:47 ` Marc Zyngier
2026-06-08 0:34 ` Sasha Levin
2026-06-07 9:58 ` [PATCH 6.18 142/315] KVM: arm64: PMU: Preserve AArch32 counter low bits Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 143/315] KVM: SVM: Flush the current TLB when transitioning from xAVIC => x2AVIC Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 144/315] KVM: SEV: Require in-GHCB scratch area if GHCB v2+ is in use Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 145/315] KVM: SEV: Ignore Port I/O requests of length 0 Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 146/315] KVM: SEV: Use the size of the PSC header as the minimum size for PSC requests Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 147/315] KVM: SEV: WARN if KVM attempts to setup scratch area with min_len==0 Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 148/315] KVM: SEV: Compute the correct max length of the in-GHCB scratch area Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 149/315] KVM: SEV: Check PSC request indices against the actual size of the buffer Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 150/315] KVM: SEV: Use READ_ONCE() when reading entries/indices from PSC buffer Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 151/315] KVM: SEV: Dont explicitly pass PSC buffer to snp_begin_psc() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.18 152/315] Disable -Wattribute-alias for clang-23 and newer Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 153/315] iio: adc: xilinx-xadc: Fix sequencer mode in postdisable for dual mux Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 154/315] iio: adc: npcm: fix unbalanced clk_disable_unprepare() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 155/315] iio: dac: ad3530r: Fix AD3531/AD3531R powerdown mode strings Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 156/315] iio: dac: max5821: fix return value check in powerdown sync Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 157/315] iio: dac: ad5686: fix ref bit initialization for single-channel parts Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 158/315] iio: dac: ad5686: fix input raw value check Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 159/315] iio: dac: ad5686: acquire lock when doing powerdown control Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 160/315] iio: dac: ad5686: fix powerdown control on dual-channel devices Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 161/315] iio: adc: mt6359: fix unchecked return value in mt6358_read_imp Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 162/315] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 163/315] iio: adc: ad4695: Fix call ordering in offload buffer postenable Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 164/315] iio: gyro: itg3200: fix i2c read into the wrong stack location Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 165/315] iio: gyro: adis16260: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 166/315] iio: ssp_sensors: cancel delayed work_refresh on remove Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 167/315] iio: temperature: tsys01: fix broken PROM checksum validation Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 168/315] iio: magnetometer: st_magn: fix default DRDY pin selection for LIS2MDL Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 169/315] iio: light: veml6070: Fix resource leak in probe error path Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 170/315] iio: Fix iio_multiply_value use in iio_read_channel_processed_scale Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 171/315] iio: chemical: mhz19b: reject oversized serial replies Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 172/315] iio: chemical: scd30: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 173/315] iio: light: cm3323: fix reg_conf not being initialized correctly Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 174/315] iio: buffer: hw-consumer: fix use-after-free in error path Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 175/315] iio: buffer: Fix DMA fence leak in iio_buffer_enqueue_dmabuf() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 176/315] USB: serial: omninet: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 177/315] usb: cdns3: gadget: fix request skipping after clearing halt Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 178/315] usb: cdns3: plat: fix leaked usb2_phy initialization on usb3_phy acquisition failure Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 179/315] usb: cdns3: plat: fix unbalanced pm_runtime_forbid() call permanently leaks the runtime PM usage counter across bind/unbind cycles Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 180/315] usb: dwc2: Fix use after free in debug code Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 181/315] Input: elan_i2c - validate firmware size before use Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 182/315] i2c: davinci: fix division by zero on missing clock-frequency Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 183/315] x86/ftrace: Relocate %rip-relative percpu refs in dynamic trampolines Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 184/315] wireguard: send: append trailer after expanding head Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 185/315] bpf: sockmap: fix tail fragment offset in bpf_msg_push_data Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 186/315] macsec: fix replay protection at XPN lower-PN wrap Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 187/315] ipv6: exthdrs: refresh nh pointer after ipv6_hop_jumbo() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 188/315] ASoC: qcom: q6asm-dai: fix error handling in prepare and set_params Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 189/315] ipv6: exthdrs: refresh nh after handling HAO option Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 190/315] ip6: vti: Use ip6_tnl.net in vti6_siocdevprivate() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 191/315] ipv6: validate extension header length before copying to cmsg Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 192/315] xfrm: input: hold netns during deferred transport reinjection Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 193/315] l2tp: use refcount_inc_not_zero in l2tp_session_get_by_ifname Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 194/315] ip6: vti: Use ip6_tnl.net in vti6_changelink() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 195/315] net: skbuff: fix missing zerocopy reference in pskb_carve helpers Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 196/315] spi: spi-mem: avoid mutating op template in spi_mem_supports_op() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 197/315] HID: wacom: Fix OOB write in wacom_hid_set_device_mode() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 198/315] iommu, debugobjects: avoid gcc-16.1 section mismatch warnings Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 199/315] nfc: hci: fix out-of-bounds read in HCP header parsing Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 200/315] xfrm: route MIGRATE notifications to callers netns Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 201/315] xfrm: ipcomp: Free destination pages on acomp errors Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 202/315] xfrm: ah: use skb_to_full_sk in async output callbacks Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 203/315] ALSA: scarlett2: Fix 2i2 Gen 4 direct monitor gain on firmware 2417 Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 204/315] ALSA: firewire-motu: Protect register DSP event queue positions Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 205/315] netfilter: conntrack: tcp: do not force CLOSE on invalid-seq RST without direction check Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 206/315] ASoC: qcom: q6asm-dai: close stream only when running Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 207/315] ASoC: qcom: q6asm-dai: do not set stream state in event and trigger callbacks Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 208/315] xfrm: esp: restore combined single-frag length gate Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 209/315] ALSA: hda/realtek: Fix speaker output on ASUS ROG Strix G615LP Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 210/315] Input: xpad - add "Nova 2 Lite" from GameSir Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 211/315] Input: xpad - add support for ASUS ROG RAIKIRI II Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.18 212/315] ksmbd: OOB read regression in smb_check_perm_dacl() ACE-walk loops Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 213/315] misc: rp1: Send IACK on IRQ activate to fix kdump/kexec Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 214/315] Input: atmel_mxt_ts - fix boundary check in mxt_prepare_cfg_mem Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 215/315] Input: synaptics - add LEN2058 to SMBus passlist for ThinkPad E490 Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 216/315] gpib: cb7210: Fix region leak when request_irq fails Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 217/315] comedi: comedi_test: fix check for valid scan_begin_src in waveform_ai_cmdtest() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 218/315] comedi: comedi_test: Fix limiting of convert_arg " Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 214/307] tty: serial: samsung: Remove redundant port lock acquisition in rx helpers Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 219/315] counter: Fix refcount leak in counter_alloc() error path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 220/315] tty: serial: pch_uart: add check for dma_alloc_coherent() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 221/315] tty: serial: samsung: Remove redundant port lock acquisition in rx helpers Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 222/315] usb: chipidea: core: convert ci_role_switch to local variable Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 223/315] usb: core: Fix up Interrupt IN endpoints with bogus wBytesPerInterval Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 224/315] usb: musb: omap2430: Fix use-after-free in omap2430_probe() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 225/315] USB: quirks: add NO_LPM for Lenovo ThinkPad USB-C Dock Gen2 hub controllers Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 226/315] usb: storage: Add quirks for PNY Elite Portable SSD Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 227/315] usbip: vudc: Fix use after free bug in vudc_remove due to race condition Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 228/315] usb: usbtmc: check URB actual_length for interrupt-IN notifications Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 229/315] usb: usbtmc: reject interrupt endpoints with small wMaxPacketSize Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 230/315] usb: typec: tipd: Fix error code in tps6598x_probe() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 231/315] usb: typec: tcpm: improve handling of DISCOVER_MODES failures Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 232/315] usb: typec: ucsi: Check if power role change actually happened before handling Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 233/315] usb: typec: ucsi: Dont update power_supply on power role change if not connected Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 234/315] USB: serial: option: add MeiG SRM813Q Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 235/315] USB: serial: option: add missing RSVD(5) flag for Rolling RW135R-GL Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 236/315] USB: serial: belkin_sa: validate interrupt status length Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 237/315] USB: serial: cypress_m8: validate interrupt packet headers Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 238/315] USB: serial: keyspan: fix missing indat transfer sanity check Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 239/315] USB: serial: mxuport: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 240/315] USB: serial: mct_u232: fix missing interrupt-in transfer sanity check Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 241/315] usb: gadget: uvc: hold opts->lock across XU walks in uvc_function_bind Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 242/315] usb: gadget: net2280: Fix double free in probe error path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 243/315] usb: gadget: f_hid: fix device reference leak in hidg_alloc() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 244/315] usb: gadget: composite: fix integer underflow in WebUSB GET_URL handling Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 245/315] usb: gadget: dummy_hcd: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 246/315] usb: gadget: f_fs: copy only received bytes on short ep0 read Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 247/315] usb: gadget: f_fs: serialize DMABUF cancel against request completion Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 248/315] thunderbolt: property: Reject u32 wrap in tb_property_entry_valid() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 249/315] thunderbolt: property: Reject dir_len < 4 to prevent size_t underflow Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 250/315] scsi: fcoe: Reject FIP descriptors with zero fip_dlen in CVL walker Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 251/315] scsi: scsi_transport_fc: Widen FPIN pname walker counter to u32 Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 252/315] scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 253/315] scsi: target: iscsi: Bound iscsi_encode_text_output() appends to rsp_buf Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 254/315] scsi: target: iscsi: Validate CHAP_R length before base64 decode Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 255/315] drm/hyperv: validate resolution_count and fix WIN8 fallback Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 256/315] drm/hyperv: validate VMBus packet size in receive callback Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 257/315] drm/gem: fix race between change_handle and handle_delete Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 258/315] drm/i915/psr: Block DC states on vblank enable when Panel Replay supported Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 259/315] drm/i915: Fix potential UAF in TTM object purge Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 260/315] drm/amd/pm/si: Disregard vblank time when no displays are connected Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 261/315] serial: altera_jtaguart: handle uart_add_one_port() failures Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 262/315] serial: qcom-geni: fix UART_RX_PAR_EN bit position Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 263/315] serial: qcom_geni: fix kfifo underflow when flush precedes DMA completion IRQ Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 264/315] serial: sh-sci: fix memory region release in error path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 265/315] serial: zs: Fix swapped RI/DSR modem line transition counting Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 266/315] serial: fsl_lpuart: fix rx buffer and DMA map leaks in start_rx_dma Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 267/315] drm/amdkfd: fix NULL pointer bug in svm_range_set_attr Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 268/315] drm/amdkfd: fix a vulnerability of integer overflow in kfd debugger Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 269/315] drm/amdkfd: Check for pdd drm file first in CRIU restore path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 270/315] drm/amdgpu: fix lock leak on ENOMEM in AMDGPU_GEM_OP_GET_MAPPING_INFO Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 271/315] drm/amdgpu: fix calling VM invalidation in amdgpu_hmm_invalidate_gfx Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.18 272/315] drm/amdgpu: check num_entries in GEM_OP GET_MAPPING_INFO Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 273/315] serial: dz: Fix bootconsole message clobbering at chip reset Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 274/315] serial: dz: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 275/315] serial: dz: Convert to use a platform device Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 276/315] serial: zs: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 277/315] serial: zs: Switch to using channel reset Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 278/315] serial: zs: Convert to use a platform device Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 279/315] serial: core: introduce guard(uart_port_lock_check_sysrq_irqsave) Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 280/315] serial: 8250: dispatch SysRq character in serial8250_handle_irq() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 281/315] serial: 8250_dw: dispatch SysRq character in dw8250_handle_irq() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 282/315] platform/x86/intel/vsec: Refactor base_addr handling Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 283/315] platform/x86/intel/vsec: Make driver_data info const Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 284/315] platform/x86/intel/vsec: Fix enable_cnt imbalance on PCIe error recovery Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 285/315] x86/mm: Disable broadcast TLB flush when PCID is disabled Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 286/315] rxrpc: Fix DATA decrypt vs splice() by copying data to buffer in recvmsg Greg Kroah-Hartman
2026-06-07 10:01 ` Greg Kroah-Hartman [this message]
2026-06-07 10:01 ` [PATCH 6.18 288/315] serdev: Provide a bustype shutdown function Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 289/315] Bluetooth: hci_qca: Migrate to serdev specific " Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 290/315] Bluetooth: hci_qca: Convert timeout from jiffies to ms Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 291/315] selftests: mptcp: drop nanoseconds width specifier Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 292/315] net: devmem: reject dma-buf bind with non-page-aligned size or SG length Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 293/315] mptcp: handle first subflow closing consistently Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 294/315] mptcp: borrow forward memory from subflow Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 295/315] mptcp: do not drop partial packets Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 296/315] arm64: tlb: Flush walk cache when unsharing PMD tables Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 297/315] octeontx2-pf: avoid double free of pool->stack on AQ init failure Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 298/315] mptcp: cleanup fallback dummy mapping generation Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 299/315] mptcp: reset rcv wnd on disconnect Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 300/315] cpufreq: intel_pstate: Add and use hybrid_get_cpu_type() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 301/315] cpufreq: intel_pstate: Use correct scaling factor on Raptor Lake-E Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 302/315] xfrm: iptfs: reset runtime state when cloning SAs Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 303/315] usb: dwc3: xilinx: fix error handling in zynqmp init error paths Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 304/315] USB: serial: cypress_m8: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 305/315] USB: serial: digi_acceleport: fix memory corruption with small endpoints Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 306/315] USB: serial: mct_u232: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 307/315] hwmon: (pmbus) Add support for guarded PMBus lock Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 308/315] hwmon: (pmbus/adm1266) serialize sequencer_state debugfs read with pmbus_lock Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 309/315] hwmon: (pmbus/adm1266) serialize GPIO PMBus accesses " Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 310/315] mm/slub: hold cpus_read_lock around flush_rcu_sheaves_on_cache() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 311/315] net: phy: micrel: fix LAN8814 QSGMII soft reset Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 312/315] xhci: tegra: Fix ghost USB device on dual-role port unplug Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 314/315] drm/i915/psr: Use DC_OFF wake reference to block DC6 on vblank enable Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.18 315/315] thunderbolt: property: Cap recursion depth in __tb_property_parse_dir() Greg Kroah-Hartman
2026-06-07 16:58 ` [PATCH 6.18 000/315] 6.18.35-rc1 review Pavel Machek
2026-06-07 17:04 ` Miguel Ojeda
2026-06-07 20:40 ` Peter Schneider
2026-06-08 4:03 ` Wentao Guan
-- strict thread matches above, loose matches on Subject: below --
2026-06-07 9:56 [PATCH 6.12 000/307] 6.12.93-rc1 review Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 001/307] Input: usbtouchscreen - clamp NEXIO data_len/x_len to URB buffer size Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 002/307] drm/v3d: Fix use-after-free of CPU job query arrays on error path Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 003/307] drm/v3d: Release indirect CSD GEM reference on CPU job free Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 004/307] net/sched: cls_fw: fix NULL dereference of "old" filters before change() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 005/307] net: mctp: ensure our nlmsg responses are initialised Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 006/307] xfrm: move policy_bydst RCU sync from per-netns .exit to .pre_exit Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 007/307] net/sched: sch_sfb: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 008/307] bcache: fix uninitialized closure object Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 009/307] net: cpsw_new: Fix potential unregister of netdev that has not been registered yet Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 010/307] arm64: Introduce esr_is_ubsan_brk() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 011/307] arm64: debug: clean up single_step_handler logic Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 012/307] arm64: refactor aarch32_break_handler() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 013/307] arm64: debug: call software breakpoint handlers statically Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 014/307] arm64: debug: call step " Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 015/307] arm64: debug: remove break/step handler registration infrastructure Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 016/307] arm64: entry: Add entry and exit functions for debug exceptions Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 017/307] arm64: debug: split hardware breakpoint exception entry Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 018/307] arm64: debug: refactor reinstall_suspended_bps() Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 019/307] arm64: debug: split single stepping exception entry Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 020/307] arm64: debug: split hardware watchpoint " Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 021/307] arm64: debug: split brk64 " Greg Kroah-Hartman
2026-06-07 9:56 ` [PATCH 6.12 022/307] arm64: debug: split bkpt32 " Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 023/307] arm64: debug: remove debug exception registration infrastructure Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 024/307] arm64: debug: always unmask interrupts in el0_softstp() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 025/307] nfc: llcp: Fix use-after-free in llcp_sock_release() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 026/307] nfc: llcp: Fix use-after-free race in nfc_llcp_recv_cc() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 027/307] xfrm: Check for underflow in xfrm_state_mtu Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 028/307] nfc: nxp-nci: i2c: use rising-edge IRQ on ACPI systems Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 029/307] kunit: fix use-after-free in debugfs when using kunit.filter Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 030/307] kernel/fork: validate exit_signal in kernel_clone() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 031/307] netfilter: synproxy: refresh tcphdr after skb_ensure_writable Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 032/307] netfilter: xt_cpu: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 033/307] netfilter: ebtables: fix OOB read in compat_mtw_from_user Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 034/307] tun: free page on short-frame rejection in tun_xdp_one() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 035/307] tun: free page on build_skb failure " Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 036/307] vsock: keep poll shutdown state consistent Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 037/307] net: netlink: fix sending unassigned nsid after assigned one Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 038/307] net: netlink: dont set nsid on local notifications Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 039/307] net/smc: Do not re-initialize smc hashtables Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 040/307] net/iucv: fix locking in .getsockopt Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 041/307] scsi: core: Run queues for all non-SDEV_DEL devices from scsi_run_host_queues Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 042/307] ipv4: free net->ipv4.sysctl_local_reserved_ports after unregister_net_sysctl_table() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 043/307] ALSA: pcm: oss: Fix setup list UAF on proc write error Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 044/307] ASoC: Intel: bytcht_es8316: Fix MCLK leak on init errors Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 045/307] net: hsr: fix potential OOB access in supervision frame handling Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 046/307] accel/ivpu: prevent uninitialized data bug in debugfs Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 047/307] gpio: mxc: fix irq_high handling Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 048/307] net: Avoid checksumming unreadable skb tail on trim Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 049/307] ethtool: rss: fix hkey leak when indir_size is 0 Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 050/307] ethtool: module: avoid leaking a netdev ref on module flash errors Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 051/307] ethtool: module: check fw_flash_in_progress under rtnl_lock Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 052/307] ethtool: module: fix cleanup if socket used for flashing multiple devices Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 053/307] ethtool: cmis: require exact CDB reply length Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 054/307] ethtool: cmis: fix u16-to-u8 truncation of msleep_pre_rpl Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 055/307] net: ethtool: Add new parameters and a function to support EPL Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 056/307] net: ethtool: Add support for writing firmware blocks using EPL payload Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 057/307] ethtool: cmis: validate start_cmd_payload_size from module Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 058/307] ethtool: cmis: validate fw->size against start_cmd_payload_size Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 059/307] cxl/test: Update mock dev array before calling platform_device_add() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 060/307] tunnels: load network headers after skb_cow() in iptunnel_pmtud_build_icmp[v6]() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 061/307] vxlan: do not reuse cached ip_hdr() value after skb_tunnel_check_pmtu() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 062/307] tunnels: do not assume transport header in iptunnel_pmtud_check_icmp() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 063/307] ASoC: codecs: simple-mux: Fix enum control bounds check Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 064/307] Bluetooth: 6lowpan: check skb_clone() return value in send_mcast_pkt() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 065/307] bonding: refuse to enslave CAN devices Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 066/307] ethtool: coalesce: cap profile updates at NET_DIM_PARAMS_NUM_PROFILES Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 067/307] ethtool: linkstate: fix unbalanced ethnl_ops_complete() on PHY lookup error Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 068/307] ethtool: pse-pd: fix missing ethnl_ops_complete() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 069/307] ethtool: strset: fix header attribute index in ethnl_req_get_phydev() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 070/307] ethtool: eeprom: add missing ethnl_ops_begin() / _complete() during fallback Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 071/307] ethtool: eeprom: add more safeties to EEPROM Netlink fallback Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 072/307] ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 074/307] net/sched: fix packet loop on netem when duplicate is on Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 075/307] net/sched: act_mirred: Move the recursion counter struct netdev_xmit Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 076/307] net/sched: act_mirred: add loop detection Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 077/307] net: Introduce skb tc depth field to track packet loops Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 078/307] net/sched: Fix ethx:ingress -> ethy:egress -> ethx:ingress mirred loop Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 079/307] net/sched: act_mirred: Fix return code in early mirred redirect error paths Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 080/307] net/handshake: Use spin_lock_bh for hn_lock Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 081/307] nvme-tcp: store negative errno in queue->tls_err Greg Kroah-Hartman
2026-06-07 9:57 ` [PATCH 6.12 082/307] net/handshake: Pass negative errno through handshake_complete() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 083/307] remove pointless includes of <linux/fdtable.h> Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 084/307] net/handshake: Take a long-lived file reference at submit Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 085/307] net/handshake: Drain pending requests at net namespace exit Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 086/307] Bluetooth: l2cap: clear chan->ident on ECRED reconfiguration success Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 088/307] Bluetooth: hci_sync: Set HCI_CMD_DRAIN_WORKQUEUE during device close Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 089/307] gpio: virtuser: Fix uninitialized data bug in gpio_virtuser_direction_do_write() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 090/307] gpio: rockchip: convert bank->clk to devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 091/307] net: mana: Add NULL guards in teardown path to prevent panic on attach failure Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 092/307] sctp: fix race between sctp_wait_for_connect and peeloff Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 093/307] ipv6: fix possible infinite loop in rt6_fill_node() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 094/307] ipv6: fix possible infinite loop in fib6_select_path() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 095/307] net: skbuff: fix pskb_carve leaking zcopy pages Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 096/307] perf: Fix dangling cgroup pointer in cpuctx Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 097/307] batman-adv: v: stop OGMv2 on disabled interface Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 098/307] batman-adv: tvlv: abort OGM send on tvlv append failure Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 099/307] batman-adv: tt: reject oversized local TVLV buffers Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 100/307] batman-adv: bla: avoid NULL-ptr deref for claim via dropped interface Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 101/307] batman-adv: tvlv: reject oversized TVLV packets Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 102/307] batman-adv: iv: recover OGM scheduling after forward packet error Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 103/307] batman-adv: tp_meter: avoid role confusion in tp_list Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 104/307] s390/cio: Restore GFP_DMA for CHSC allocation Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 105/307] batman-adv: tp_meter: directly shut down timer on cleanup Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 106/307] batman-adv: tt: fix TOCTOU race for reported vlans Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 107/307] batman-adv: tt: avoid empty VLAN responses Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 108/307] batman-adv: bla: avoid double decrement of bla.num_requests Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 109/307] mm/page_alloc: clear page->private in free_pages_prepare() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 110/307] media: rc: fix race between unregister and urb/irq callbacks Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 111/307] media: rc: ttusbir: fix inverted error logic Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 112/307] inet: frags: add inet_frag_queue_flush() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 113/307] inet: frags: flush pending skbs in fqdir_pre_exit() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 114/307] HID: core: Add printk_ratelimited variants to hid_warn() etc Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 115/307] HID: pass the buffer size to hid_report_raw_event Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 116/307] HID: core: introduce hid_safe_input_report() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 117/307] HID: core: Fix size_t specifier in hid_report_raw_event() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 118/307] drm/i915/psr: Add defininitions for INTEL_WA_REGISTER_CAPS DPCD register Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 119/307] drm/i915/psr: Read Intel DPCD workaround register Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 120/307] drm/dp: Add eDP 1.5 bit definition Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 121/307] drm/i915/psr: Apply Intel DPCD workaround when SDP on prior line used Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 122/307] arm64: io: Rename ioremap_prot() to __ioremap_prot() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 123/307] arm64: io: Extract user memory type in ioremap_prot() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 124/307] phy: mscc: Use PHY_ID_MATCH_EXACT for VSC8584, VSC8582, VSC8575, VSC856X Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 125/307] batman-adv: tt: prevent TVLV entry number overflow Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 126/307] iio: imu: st_lsm6dsx: fix stack leak in tagged FIFO buffer Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 127/307] usb: typec: ucsi: ccg: reject firmware images without a : record header Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 128/307] usb: typec: tcpm: validate VDO count in Discover Identity ACK handlers Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 129/307] usb: typec: tcpm: bound altmode_desc[] per iteration in svdm_consume_modes() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 130/307] usb: typec: ucsi: displayport: NAK DP_CMD_CONFIGURE without a payload VDO Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 131/307] usb: typec: altmodes/displayport: validate count before reading Status Update VDO Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 132/307] usb: typec: wcove: dont write past struct pd_message in wcove_read_rx_buffer() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 133/307] usb: typec: tcpm/tcpci_maxim: validate header NDO against RX_BYTE_CNT Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 134/307] usb: typec: ucsi: validate connector number in ucsi_connector_change() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 135/307] USB: serial: safe_serial: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 136/307] media: rc: igorplugusb: fix control request setup packet Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 137/307] Input: ims-pcu - fix usb_free_coherent() size in ims_pcu_buffers_free() Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 138/307] HID: quirks: Add ALWAYS_POLL quirk for SIGMACHIP USB mouse Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 139/307] Bluetooth: btusb: Allow firmware re-download when version matches Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 140/307] hpfs: fix a crash if hpfs_map_dnode_bitmap fails Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 141/307] ipc: limit next_id allocation to the valid ID range Greg Kroah-Hartman
2026-06-07 9:58 ` [PATCH 6.12 142/307] auxdisplay: line-display: fix OOB read on zero-length message_store() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 143/307] Bluetooth: L2CAP: use chan timer to close channels in cleanup_listen() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 144/307] Bluetooth: L2CAP: fix chan ref leak in l2cap_chan_timeout() on !conn Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 145/307] Bluetooth: HIDP: fix missing length checks in hidp_input_report() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 146/307] Bluetooth: ISO: fix UAF in iso_recv_frame Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 147/307] Bluetooth: ISO: serialize iso_sock_clear_timer with socket lock Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 148/307] Bluetooth: hci_sync: fix UAF in hci_le_create_cis_sync Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 149/307] Input: xpad - fix out-of-bounds access for Share button Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 150/307] parport: Fix race between port and client registration Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 151/307] USB: cdc-acm: Fix bit overlap and move quirk definitions to header Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 152/307] KVM: arm64: PMU: Preserve AArch32 counter low bits Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 153/307] KVM: SVM: Flush the current TLB when transitioning from xAVIC => x2AVIC Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 154/307] KVM: SEV: Require in-GHCB scratch area if GHCB v2+ is in use Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 155/307] KVM: SEV: Use the size of the PSC header as the minimum size for PSC requests Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 156/307] KVM: SEV: WARN if KVM attempts to setup scratch area with min_len==0 Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 157/307] KVM: SEV: Compute the correct max length of the in-GHCB scratch area Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 158/307] KVM: SEV: Check PSC request indices against the actual size of the buffer Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 159/307] KVM: SEV: Use READ_ONCE() when reading entries/indices from PSC buffer Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 160/307] KVM: SEV: Dont explicitly pass PSC buffer to snp_begin_psc() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 161/307] Disable -Wattribute-alias for clang-23 and newer Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 162/307] iio: adc: xilinx-xadc: Fix sequencer mode in postdisable for dual mux Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 163/307] iio: adc: npcm: fix unbalanced clk_disable_unprepare() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 164/307] iio: dac: max5821: fix return value check in powerdown sync Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 165/307] iio: dac: ad5686: fix input raw value check Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 166/307] iio: dac: ad5686: acquire lock when doing powerdown control Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 167/307] iio: adc: mt6359: fix unchecked return value in mt6358_read_imp Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 168/307] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 169/307] iio: gyro: itg3200: fix i2c read into the wrong stack location Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 170/307] iio: gyro: adis16260: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 171/307] iio: ssp_sensors: cancel delayed work_refresh on remove Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 172/307] iio: temperature: tsys01: fix broken PROM checksum validation Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 173/307] iio: magnetometer: st_magn: fix default DRDY pin selection for LIS2MDL Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 174/307] iio: light: cm3323: fix reg_conf not being initialized correctly Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 175/307] iio: buffer: hw-consumer: fix use-after-free in error path Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 176/307] iio: buffer: Fix DMA fence leak in iio_buffer_enqueue_dmabuf() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 177/307] USB: serial: omninet: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 178/307] usb: cdns3: gadget: fix request skipping after clearing halt Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 179/307] usb: cdns3: plat: fix leaked usb2_phy initialization on usb3_phy acquisition failure Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 180/307] usb: cdns3: plat: fix unbalanced pm_runtime_forbid() call permanently leaks the runtime PM usage counter across bind/unbind cycles Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 181/307] usb: dwc2: Fix use after free in debug code Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 182/307] Input: elan_i2c - validate firmware size before use Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 183/307] wireguard: send: append trailer after expanding head Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 184/307] bpf: sockmap: fix tail fragment offset in bpf_msg_push_data Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 185/307] macsec: fix replay protection at XPN lower-PN wrap Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 186/307] ipv6: exthdrs: refresh nh pointer after ipv6_hop_jumbo() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 187/307] ASoC: qcom: q6asm-dai: fix error handling in prepare and set_params Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 188/307] ipv6: exthdrs: refresh nh after handling HAO option Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 189/307] ip6: vti: Use ip6_tnl.net in vti6_siocdevprivate() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 190/307] ipv6: validate extension header length before copying to cmsg Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 191/307] xfrm: input: hold netns during deferred transport reinjection Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 192/307] l2tp: use refcount_inc_not_zero in l2tp_session_get_by_ifname Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 193/307] ip6: vti: Use ip6_tnl.net in vti6_changelink() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 194/307] net: skbuff: fix missing zerocopy reference in pskb_carve helpers Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 195/307] HID: wacom: Fix OOB write in wacom_hid_set_device_mode() Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 196/307] iommu, debugobjects: avoid gcc-16.1 section mismatch warnings Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 197/307] nfc: hci: fix out-of-bounds read in HCP header parsing Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 198/307] xfrm: route MIGRATE notifications to callers netns Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 199/307] xfrm: ah: use skb_to_full_sk in async output callbacks Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 200/307] ALSA: scarlett2: Fix 2i2 Gen 4 direct monitor gain on firmware 2417 Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 201/307] netfilter: conntrack: tcp: do not force CLOSE on invalid-seq RST without direction check Greg Kroah-Hartman
2026-06-07 9:59 ` [PATCH 6.12 202/307] ASoC: qcom: q6asm-dai: close stream only when running Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 203/307] ASoC: qcom: q6asm-dai: do not set stream state in event and trigger callbacks Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 204/307] xfrm: esp: restore combined single-frag length gate Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 205/307] Input: xpad - add "Nova 2 Lite" from GameSir Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 206/307] Input: xpad - add support for ASUS ROG RAIKIRI II Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 207/307] ksmbd: OOB read regression in smb_check_perm_dacl() ACE-walk loops Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 208/307] Input: atmel_mxt_ts - fix boundary check in mxt_prepare_cfg_mem Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 209/307] Input: synaptics - add LEN2058 to SMBus passlist for ThinkPad E490 Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 210/307] comedi: comedi_test: fix check for valid scan_begin_src in waveform_ai_cmdtest() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 211/307] comedi: comedi_test: Fix limiting of convert_arg " Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 212/307] counter: Fix refcount leak in counter_alloc() error path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 213/307] tty: serial: pch_uart: add check for dma_alloc_coherent() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 215/307] usb: chipidea: core: convert ci_role_switch to local variable Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 216/307] usb: core: Fix up Interrupt IN endpoints with bogus wBytesPerInterval Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 217/307] USB: quirks: add NO_LPM for Lenovo ThinkPad USB-C Dock Gen2 hub controllers Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 218/307] usb: storage: Add quirks for PNY Elite Portable SSD Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 219/307] usbip: vudc: Fix use after free bug in vudc_remove due to race condition Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 220/307] usb: usbtmc: check URB actual_length for interrupt-IN notifications Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 221/307] usb: usbtmc: reject interrupt endpoints with small wMaxPacketSize Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 222/307] usb: typec: tcpm: improve handling of DISCOVER_MODES failures Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 223/307] USB: serial: option: add MeiG SRM813Q Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 224/307] USB: serial: option: add missing RSVD(5) flag for Rolling RW135R-GL Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 225/307] USB: serial: belkin_sa: validate interrupt status length Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 226/307] USB: serial: cypress_m8: validate interrupt packet headers Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 227/307] USB: serial: keyspan: fix missing indat transfer sanity check Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 228/307] USB: serial: mxuport: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 229/307] USB: serial: mct_u232: fix missing interrupt-in transfer sanity check Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 230/307] usb: gadget: uvc: hold opts->lock across XU walks in uvc_function_bind Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 231/307] usb: gadget: net2280: Fix double free in probe error path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 232/307] usb: gadget: f_hid: fix device reference leak in hidg_alloc() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 233/307] usb: gadget: composite: fix integer underflow in WebUSB GET_URL handling Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 234/307] usb: gadget: dummy_hcd: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 235/307] usb: gadget: f_fs: copy only received bytes on short ep0 read Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 236/307] usb: gadget: f_fs: serialize DMABUF cancel against request completion Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 237/307] thunderbolt: property: Reject u32 wrap in tb_property_entry_valid() Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 238/307] thunderbolt: property: Reject dir_len < 4 to prevent size_t underflow Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 239/307] scsi: fcoe: Reject FIP descriptors with zero fip_dlen in CVL walker Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 240/307] scsi: scsi_transport_fc: Widen FPIN pname walker counter to u32 Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 241/307] scsi: target: iscsi: Bound iscsi_encode_text_output() appends to rsp_buf Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 242/307] scsi: target: iscsi: Validate CHAP_R length before base64 decode Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 243/307] drm/hyperv: validate resolution_count and fix WIN8 fallback Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 244/307] drm/hyperv: validate VMBus packet size in receive callback Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 245/307] drm/i915: Fix potential UAF in TTM object purge Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 246/307] drm/amd/pm/si: Disregard vblank time when no displays are connected Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 247/307] serial: altera_jtaguart: handle uart_add_one_port() failures Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 248/307] serial: qcom-geni: fix UART_RX_PAR_EN bit position Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 249/307] serial: qcom_geni: fix kfifo underflow when flush precedes DMA completion IRQ Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 250/307] serial: sh-sci: fix memory region release in error path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 251/307] serial: zs: Fix swapped RI/DSR modem line transition counting Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 252/307] serial: fsl_lpuart: fix rx buffer and DMA map leaks in start_rx_dma Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 253/307] drm/amdkfd: fix NULL pointer bug in svm_range_set_attr Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 254/307] drm/amdkfd: fix a vulnerability of integer overflow in kfd debugger Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 255/307] drm/amdkfd: Check for pdd drm file first in CRIU restore path Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 256/307] serial: dz: Fix bootconsole message clobbering at chip reset Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 257/307] serial: dz: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 258/307] serial: dz: Convert to use a platform device Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 259/307] serial: zs: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 260/307] serial: zs: Switch to using channel reset Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 261/307] serial: zs: Convert to use a platform device Greg Kroah-Hartman
2026-06-07 10:00 ` [PATCH 6.12 262/307] USB: serial: cypress_m8: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 263/307] USB: serial: digi_acceleport: fix memory corruption with small endpoints Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 264/307] xhci: tegra: Fix ghost USB device on dual-role port unplug Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 265/307] iommu: Skip PASID validation for devices without PASID capability Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 266/307] x86/boot: Disable stack protector for early boot code Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 267/307] x86/kexec: Disable KCOV instrumentation after load_segments() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 268/307] rxrpc: Fix DATA decrypt vs splice() by copying data to buffer in recvmsg Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 269/307] rxrpc: Fix RESPONSE packet verification to extract skb to a linear buffer Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 270/307] serdev: Provide a bustype shutdown function Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 271/307] Bluetooth: hci_qca: Migrate to serdev specific " Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 272/307] Bluetooth: hci_qca: Convert timeout from jiffies to ms Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 273/307] ALSA: scarlett2: Return ENOSPC for out-of-bounds flash writes Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 274/307] ALSA: scarlett2: Allow flash writes ending at segment boundary Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 275/307] mm/memory: fix spurious warning when unmapping device-private/exclusive pages Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 276/307] platform/x86/intel/vsec: Fix enable_cnt imbalance on PCIe error recovery Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 277/307] net: hsr: defer node table free until after RCU readers Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 278/307] selftests: mptcp: drop nanoseconds width specifier Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 279/307] mptcp: pm: fix ADD_ADDR timer infinite retry on option space insufficient Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 280/307] ice: fix VF queue configuration with low MTU values Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 281/307] ring-buffer: Flush and stop persistent ring buffer on panic Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 282/307] mptcp: cleanup fallback dummy mapping generation Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 283/307] mptcp: reset rcv wnd on disconnect Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 284/307] arm64: tlb: Flush walk cache when unsharing PMD tables Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 285/307] octeontx2-pf: avoid double free of pool->stack on AQ init failure Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 286/307] mptcp: introduce the mptcp_init_skb helper Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 287/307] mptcp: handle first subflow closing consistently Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 288/307] mptcp: do not drop partial packets Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 289/307] mm/damon/sysfs-schemes: delete tried region in regions_rmdirs() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 290/307] iio: chemical: scd30: Use guard(mutex) to allow early returns Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 291/307] iio: chemical: scd30: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 292/307] iio: dac: ad5686: fix ref bit initialization for single-channel parts Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 293/307] ALSA: firewire-motu: Protect register DSP event queue positions Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 294/307] usb: dwc3: xilinx: fix error handling in zynqmp init error paths Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 295/307] usb: musb: omap2430: Fix use-after-free in omap2430_probe() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 296/307] usb: typec: ucsi: Check if power role change actually happened before handling Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 297/307] thunderbolt: property: Cap recursion depth in __tb_property_parse_dir() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 298/307] scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 299/307] usb: typec: ucsi: Dont update power_supply on power role change if not connected Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 300/307] x86/alternatives: Rename apply_relocation() to text_poke_apply_relocation() Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 301/307] x86/ftrace: Relocate %rip-relative percpu refs in dynamic trampolines Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 302/307] hwmon: (pmbus/adm1266) serialize sequencer_state debugfs read with pmbus_lock Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 303/307] hwmon: (pmbus/adm1266) serialize NVMEM blackbox " Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 304/307] hwmon: (pmbus/adm1266) serialize GPIO PMBus accesses " Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 305/307] mm: perform all memfd seal checks in a single place Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 306/307] mm/memfd: fix spelling and grammatical issues Greg Kroah-Hartman
2026-06-07 10:01 ` [PATCH 6.12 307/307] memfd: deny writeable mappings when implying SEAL_WRITE Greg Kroah-Hartman
2026-06-07 17:00 ` [PATCH 6.12 000/307] 6.12.93-rc1 review Pavel Machek
2026-06-07 17:32 ` Miguel Ojeda
2026-06-07 19:45 ` Peter Schneider
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=20260607095738.132511502@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dhowells@redhat.com \
--cc=horms@kernel.org \
--cc=imv4bel@gmail.com \
--cc=jaltman@auristor.com \
--cc=jiayuan.chen@linux.dev \
--cc=kuba@kernel.org \
--cc=linux-afs@lists.infradead.org \
--cc=marc.dionne@auristor.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox