From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Fernando Fernandez Mancera <fmancera@suse.de>,
Pablo Neira Ayuso <pablo@netfilter.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.17 393/507] netfilter: nf_conncount: rework API to use sk_buff directly
Date: Tue, 16 Dec 2025 12:13:54 +0100 [thread overview]
Message-ID: <20251216111359.691558764@linuxfoundation.org> (raw)
In-Reply-To: <20251216111345.522190956@linuxfoundation.org>
6.17-stable review patch. If anyone has any objections, please let me know.
------------------
From: Fernando Fernandez Mancera <fmancera@suse.de>
[ Upstream commit be102eb6a0e7c03db00e50540622f4e43b2d2844 ]
When using nf_conncount infrastructure for non-confirmed connections a
duplicated track is possible due to an optimization introduced since
commit d265929930e2 ("netfilter: nf_conncount: reduce unnecessary GC").
In order to fix this introduce a new conncount API that receives
directly an sk_buff struct. It fetches the tuple and zone and the
corresponding ct from it. It comes with both existing conncount variants
nf_conncount_count_skb() and nf_conncount_add_skb(). In addition remove
the old API and adjust all the users to use the new one.
This way, for each sk_buff struct it is possible to check if there is a
ct present and already confirmed. If so, skip the add operation.
Fixes: d265929930e2 ("netfilter: nf_conncount: reduce unnecessary GC")
Signed-off-by: Fernando Fernandez Mancera <fmancera@suse.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
include/net/netfilter/nf_conntrack_count.h | 17 +-
net/netfilter/nf_conncount.c | 177 ++++++++++++++-------
net/netfilter/nft_connlimit.c | 21 +--
net/netfilter/xt_connlimit.c | 14 +-
net/openvswitch/conntrack.c | 16 +-
5 files changed, 142 insertions(+), 103 deletions(-)
diff --git a/include/net/netfilter/nf_conntrack_count.h b/include/net/netfilter/nf_conntrack_count.h
index 1b58b5b91ff6a..52a06de41aa0f 100644
--- a/include/net/netfilter/nf_conntrack_count.h
+++ b/include/net/netfilter/nf_conntrack_count.h
@@ -18,15 +18,14 @@ struct nf_conncount_list {
struct nf_conncount_data *nf_conncount_init(struct net *net, unsigned int keylen);
void nf_conncount_destroy(struct net *net, struct nf_conncount_data *data);
-unsigned int nf_conncount_count(struct net *net,
- struct nf_conncount_data *data,
- const u32 *key,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone);
-
-int nf_conncount_add(struct net *net, struct nf_conncount_list *list,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone);
+unsigned int nf_conncount_count_skb(struct net *net,
+ const struct sk_buff *skb,
+ u16 l3num,
+ struct nf_conncount_data *data,
+ const u32 *key);
+
+int nf_conncount_add_skb(struct net *net, const struct sk_buff *skb,
+ u16 l3num, struct nf_conncount_list *list);
void nf_conncount_list_init(struct nf_conncount_list *list);
diff --git a/net/netfilter/nf_conncount.c b/net/netfilter/nf_conncount.c
index 913ede2f57f9a..0ffc5ff78a714 100644
--- a/net/netfilter/nf_conncount.c
+++ b/net/netfilter/nf_conncount.c
@@ -122,15 +122,65 @@ find_or_evict(struct net *net, struct nf_conncount_list *list,
return ERR_PTR(-EAGAIN);
}
+static bool get_ct_or_tuple_from_skb(struct net *net,
+ const struct sk_buff *skb,
+ u16 l3num,
+ struct nf_conn **ct,
+ struct nf_conntrack_tuple *tuple,
+ const struct nf_conntrack_zone **zone,
+ bool *refcounted)
+{
+ const struct nf_conntrack_tuple_hash *h;
+ enum ip_conntrack_info ctinfo;
+ struct nf_conn *found_ct;
+
+ found_ct = nf_ct_get(skb, &ctinfo);
+ if (found_ct && !nf_ct_is_template(found_ct)) {
+ *tuple = found_ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
+ *zone = nf_ct_zone(found_ct);
+ *ct = found_ct;
+ return true;
+ }
+
+ if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb), l3num, net, tuple))
+ return false;
+
+ if (found_ct)
+ *zone = nf_ct_zone(found_ct);
+
+ h = nf_conntrack_find_get(net, *zone, tuple);
+ if (!h)
+ return true;
+
+ found_ct = nf_ct_tuplehash_to_ctrack(h);
+ *refcounted = true;
+ *ct = found_ct;
+
+ return true;
+}
+
static int __nf_conncount_add(struct net *net,
- struct nf_conncount_list *list,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone)
+ const struct sk_buff *skb,
+ u16 l3num,
+ struct nf_conncount_list *list)
{
+ const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
const struct nf_conntrack_tuple_hash *found;
struct nf_conncount_tuple *conn, *conn_n;
+ struct nf_conntrack_tuple tuple;
+ struct nf_conn *ct = NULL;
struct nf_conn *found_ct;
unsigned int collect = 0;
+ bool refcounted = false;
+
+ if (!get_ct_or_tuple_from_skb(net, skb, l3num, &ct, &tuple, &zone, &refcounted))
+ return -ENOENT;
+
+ if (ct && nf_ct_is_confirmed(ct)) {
+ if (refcounted)
+ nf_ct_put(ct);
+ return 0;
+ }
if ((u32)jiffies == list->last_gc)
goto add_new_node;
@@ -144,10 +194,10 @@ static int __nf_conncount_add(struct net *net,
if (IS_ERR(found)) {
/* Not found, but might be about to be confirmed */
if (PTR_ERR(found) == -EAGAIN) {
- if (nf_ct_tuple_equal(&conn->tuple, tuple) &&
+ if (nf_ct_tuple_equal(&conn->tuple, &tuple) &&
nf_ct_zone_id(&conn->zone, conn->zone.dir) ==
nf_ct_zone_id(zone, zone->dir))
- return 0; /* already exists */
+ goto out_put; /* already exists */
} else {
collect++;
}
@@ -156,7 +206,7 @@ static int __nf_conncount_add(struct net *net,
found_ct = nf_ct_tuplehash_to_ctrack(found);
- if (nf_ct_tuple_equal(&conn->tuple, tuple) &&
+ if (nf_ct_tuple_equal(&conn->tuple, &tuple) &&
nf_ct_zone_equal(found_ct, zone, zone->dir)) {
/*
* We should not see tuples twice unless someone hooks
@@ -165,7 +215,7 @@ static int __nf_conncount_add(struct net *net,
* Attempt to avoid a re-add in this case.
*/
nf_ct_put(found_ct);
- return 0;
+ goto out_put;
} else if (already_closed(found_ct)) {
/*
* we do not care about connections which are
@@ -188,31 +238,35 @@ static int __nf_conncount_add(struct net *net,
if (conn == NULL)
return -ENOMEM;
- conn->tuple = *tuple;
+ conn->tuple = tuple;
conn->zone = *zone;
conn->cpu = raw_smp_processor_id();
conn->jiffies32 = (u32)jiffies;
list_add_tail(&conn->node, &list->head);
list->count++;
list->last_gc = (u32)jiffies;
+
+out_put:
+ if (refcounted)
+ nf_ct_put(ct);
return 0;
}
-int nf_conncount_add(struct net *net,
- struct nf_conncount_list *list,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone)
+int nf_conncount_add_skb(struct net *net,
+ const struct sk_buff *skb,
+ u16 l3num,
+ struct nf_conncount_list *list)
{
int ret;
/* check the saved connections */
spin_lock_bh(&list->list_lock);
- ret = __nf_conncount_add(net, list, tuple, zone);
+ ret = __nf_conncount_add(net, skb, l3num, list);
spin_unlock_bh(&list->list_lock);
return ret;
}
-EXPORT_SYMBOL_GPL(nf_conncount_add);
+EXPORT_SYMBOL_GPL(nf_conncount_add_skb);
void nf_conncount_list_init(struct nf_conncount_list *list)
{
@@ -309,19 +363,22 @@ static void schedule_gc_worker(struct nf_conncount_data *data, int tree)
static unsigned int
insert_tree(struct net *net,
+ const struct sk_buff *skb,
+ u16 l3num,
struct nf_conncount_data *data,
struct rb_root *root,
unsigned int hash,
- const u32 *key,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone)
+ const u32 *key)
{
struct nf_conncount_rb *gc_nodes[CONNCOUNT_GC_MAX_NODES];
+ const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
+ bool do_gc = true, refcounted = false;
+ unsigned int count = 0, gc_count = 0;
struct rb_node **rbnode, *parent;
- struct nf_conncount_rb *rbconn;
+ struct nf_conntrack_tuple tuple;
struct nf_conncount_tuple *conn;
- unsigned int count = 0, gc_count = 0;
- bool do_gc = true;
+ struct nf_conncount_rb *rbconn;
+ struct nf_conn *ct = NULL;
spin_lock_bh(&nf_conncount_locks[hash]);
restart:
@@ -340,7 +397,7 @@ insert_tree(struct net *net,
} else {
int ret;
- ret = nf_conncount_add(net, &rbconn->list, tuple, zone);
+ ret = nf_conncount_add_skb(net, skb, l3num, &rbconn->list);
if (ret)
count = 0; /* hotdrop */
else
@@ -364,30 +421,35 @@ insert_tree(struct net *net,
goto restart;
}
- /* expected case: match, insert new node */
- rbconn = kmem_cache_alloc(conncount_rb_cachep, GFP_ATOMIC);
- if (rbconn == NULL)
- goto out_unlock;
+ if (get_ct_or_tuple_from_skb(net, skb, l3num, &ct, &tuple, &zone, &refcounted)) {
+ /* expected case: match, insert new node */
+ rbconn = kmem_cache_alloc(conncount_rb_cachep, GFP_ATOMIC);
+ if (rbconn == NULL)
+ goto out_unlock;
- conn = kmem_cache_alloc(conncount_conn_cachep, GFP_ATOMIC);
- if (conn == NULL) {
- kmem_cache_free(conncount_rb_cachep, rbconn);
- goto out_unlock;
- }
+ conn = kmem_cache_alloc(conncount_conn_cachep, GFP_ATOMIC);
+ if (conn == NULL) {
+ kmem_cache_free(conncount_rb_cachep, rbconn);
+ goto out_unlock;
+ }
- conn->tuple = *tuple;
- conn->zone = *zone;
- conn->cpu = raw_smp_processor_id();
- conn->jiffies32 = (u32)jiffies;
- memcpy(rbconn->key, key, sizeof(u32) * data->keylen);
+ conn->tuple = tuple;
+ conn->zone = *zone;
+ conn->cpu = raw_smp_processor_id();
+ conn->jiffies32 = (u32)jiffies;
+ memcpy(rbconn->key, key, sizeof(u32) * data->keylen);
+
+ nf_conncount_list_init(&rbconn->list);
+ list_add(&conn->node, &rbconn->list.head);
+ count = 1;
+ rbconn->list.count = count;
- nf_conncount_list_init(&rbconn->list);
- list_add(&conn->node, &rbconn->list.head);
- count = 1;
- rbconn->list.count = count;
+ rb_link_node_rcu(&rbconn->node, parent, rbnode);
+ rb_insert_color(&rbconn->node, root);
- rb_link_node_rcu(&rbconn->node, parent, rbnode);
- rb_insert_color(&rbconn->node, root);
+ if (refcounted)
+ nf_ct_put(ct);
+ }
out_unlock:
spin_unlock_bh(&nf_conncount_locks[hash]);
return count;
@@ -395,10 +457,10 @@ insert_tree(struct net *net,
static unsigned int
count_tree(struct net *net,
+ const struct sk_buff *skb,
+ u16 l3num,
struct nf_conncount_data *data,
- const u32 *key,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone)
+ const u32 *key)
{
struct rb_root *root;
struct rb_node *parent;
@@ -422,7 +484,7 @@ count_tree(struct net *net,
} else {
int ret;
- if (!tuple) {
+ if (!skb) {
nf_conncount_gc_list(net, &rbconn->list);
return rbconn->list.count;
}
@@ -437,7 +499,7 @@ count_tree(struct net *net,
}
/* same source network -> be counted! */
- ret = __nf_conncount_add(net, &rbconn->list, tuple, zone);
+ ret = __nf_conncount_add(net, skb, l3num, &rbconn->list);
spin_unlock_bh(&rbconn->list.list_lock);
if (ret)
return 0; /* hotdrop */
@@ -446,10 +508,10 @@ count_tree(struct net *net,
}
}
- if (!tuple)
+ if (!skb)
return 0;
- return insert_tree(net, data, root, hash, key, tuple, zone);
+ return insert_tree(net, skb, l3num, data, root, hash, key);
}
static void tree_gc_worker(struct work_struct *work)
@@ -511,18 +573,19 @@ static void tree_gc_worker(struct work_struct *work)
}
/* Count and return number of conntrack entries in 'net' with particular 'key'.
- * If 'tuple' is not null, insert it into the accounting data structure.
- * Call with RCU read lock.
+ * If 'skb' is not null, insert the corresponding tuple into the accounting
+ * data structure. Call with RCU read lock.
*/
-unsigned int nf_conncount_count(struct net *net,
- struct nf_conncount_data *data,
- const u32 *key,
- const struct nf_conntrack_tuple *tuple,
- const struct nf_conntrack_zone *zone)
+unsigned int nf_conncount_count_skb(struct net *net,
+ const struct sk_buff *skb,
+ u16 l3num,
+ struct nf_conncount_data *data,
+ const u32 *key)
{
- return count_tree(net, data, key, tuple, zone);
+ return count_tree(net, skb, l3num, data, key);
+
}
-EXPORT_SYMBOL_GPL(nf_conncount_count);
+EXPORT_SYMBOL_GPL(nf_conncount_count_skb);
struct nf_conncount_data *nf_conncount_init(struct net *net, unsigned int keylen)
{
diff --git a/net/netfilter/nft_connlimit.c b/net/netfilter/nft_connlimit.c
index 92b984fa8175c..d998e27713ac7 100644
--- a/net/netfilter/nft_connlimit.c
+++ b/net/netfilter/nft_connlimit.c
@@ -24,26 +24,11 @@ static inline void nft_connlimit_do_eval(struct nft_connlimit *priv,
const struct nft_pktinfo *pkt,
const struct nft_set_ext *ext)
{
- const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
- const struct nf_conntrack_tuple *tuple_ptr;
- struct nf_conntrack_tuple tuple;
- enum ip_conntrack_info ctinfo;
- const struct nf_conn *ct;
unsigned int count;
+ int err;
- tuple_ptr = &tuple;
-
- ct = nf_ct_get(pkt->skb, &ctinfo);
- if (ct != NULL) {
- tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
- zone = nf_ct_zone(ct);
- } else if (!nf_ct_get_tuplepr(pkt->skb, skb_network_offset(pkt->skb),
- nft_pf(pkt), nft_net(pkt), &tuple)) {
- regs->verdict.code = NF_DROP;
- return;
- }
-
- if (nf_conncount_add(nft_net(pkt), priv->list, tuple_ptr, zone)) {
+ err = nf_conncount_add_skb(nft_net(pkt), pkt->skb, nft_pf(pkt), priv->list);
+ if (err) {
regs->verdict.code = NF_DROP;
return;
}
diff --git a/net/netfilter/xt_connlimit.c b/net/netfilter/xt_connlimit.c
index 0189f8b6b0bd1..848287ab79cfb 100644
--- a/net/netfilter/xt_connlimit.c
+++ b/net/netfilter/xt_connlimit.c
@@ -31,8 +31,6 @@ connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
{
struct net *net = xt_net(par);
const struct xt_connlimit_info *info = par->matchinfo;
- struct nf_conntrack_tuple tuple;
- const struct nf_conntrack_tuple *tuple_ptr = &tuple;
const struct nf_conntrack_zone *zone = &nf_ct_zone_dflt;
enum ip_conntrack_info ctinfo;
const struct nf_conn *ct;
@@ -40,13 +38,8 @@ connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
u32 key[5];
ct = nf_ct_get(skb, &ctinfo);
- if (ct != NULL) {
- tuple_ptr = &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple;
+ if (ct)
zone = nf_ct_zone(ct);
- } else if (!nf_ct_get_tuplepr(skb, skb_network_offset(skb),
- xt_family(par), net, &tuple)) {
- goto hotdrop;
- }
if (xt_family(par) == NFPROTO_IPV6) {
const struct ipv6hdr *iph = ipv6_hdr(skb);
@@ -69,10 +62,9 @@ connlimit_mt(const struct sk_buff *skb, struct xt_action_param *par)
key[1] = zone->id;
}
- connections = nf_conncount_count(net, info->data, key, tuple_ptr,
- zone);
+ connections = nf_conncount_count_skb(net, skb, xt_family(par), info->data, key);
if (connections == 0)
- /* kmalloc failed, drop it entirely */
+ /* kmalloc failed or tuple couldn't be found, drop it entirely */
goto hotdrop;
return (connections > info->limit) ^ !!(info->flags & XT_CONNLIMIT_INVERT);
diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c
index e573e92213029..a0811e1fba656 100644
--- a/net/openvswitch/conntrack.c
+++ b/net/openvswitch/conntrack.c
@@ -928,8 +928,8 @@ static u32 ct_limit_get(const struct ovs_ct_limit_info *info, u16 zone)
}
static int ovs_ct_check_limit(struct net *net,
- const struct ovs_conntrack_info *info,
- const struct nf_conntrack_tuple *tuple)
+ const struct sk_buff *skb,
+ const struct ovs_conntrack_info *info)
{
struct ovs_net *ovs_net = net_generic(net, ovs_net_id);
const struct ovs_ct_limit_info *ct_limit_info = ovs_net->ct_limit_info;
@@ -942,8 +942,9 @@ static int ovs_ct_check_limit(struct net *net,
if (per_zone_limit == OVS_CT_LIMIT_UNLIMITED)
return 0;
- connections = nf_conncount_count(net, ct_limit_info->data,
- &conncount_key, tuple, &info->zone);
+ connections = nf_conncount_count_skb(net, skb, info->family,
+ ct_limit_info->data,
+ &conncount_key);
if (connections > per_zone_limit)
return -ENOMEM;
@@ -972,8 +973,7 @@ static int ovs_ct_commit(struct net *net, struct sw_flow_key *key,
#if IS_ENABLED(CONFIG_NETFILTER_CONNCOUNT)
if (static_branch_unlikely(&ovs_ct_limit_enabled)) {
if (!nf_ct_is_confirmed(ct)) {
- err = ovs_ct_check_limit(net, info,
- &ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
+ err = ovs_ct_check_limit(net, skb, info);
if (err) {
net_warn_ratelimited("openvswitch: zone: %u "
"exceeds conntrack limit\n",
@@ -1770,8 +1770,8 @@ static int __ovs_ct_limit_get_zone_limit(struct net *net,
zone_limit.limit = limit;
nf_ct_zone_init(&ct_zone, zone_id, NF_CT_DEFAULT_ZONE_DIR, 0);
- zone_limit.count = nf_conncount_count(net, data, &conncount_key, NULL,
- &ct_zone);
+ zone_limit.count = nf_conncount_count_skb(net, NULL, 0, data,
+ &conncount_key);
return nla_put_nohdr(reply, sizeof(zone_limit), &zone_limit);
}
--
2.51.0
next prev parent reply other threads:[~2025-12-16 12:00 UTC|newest]
Thread overview: 516+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-16 11:07 [PATCH 6.17 000/507] 6.17.13-rc1 review Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 001/507] smack: deduplicate "does access rule request transmutation" Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 002/507] smack: fix bug: SMACK64TRANSMUTE set on non-directory Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 003/507] smack: deduplicate xattr setting in smack_inode_init_security() Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 004/507] smack: always "instantiate" inode " Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 005/507] smack: fix bug: invalid label of unix socket file Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 006/507] smack: fix bug: unprivileged task can create labels Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 007/507] smack: fix bug: setting task label silently ignores input garbage Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 008/507] gpu: host1x: Fix race in syncpt alloc/free Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 009/507] accel/ivpu: Ensure rpm_runtime_put in case of engine reset/resume fail Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 010/507] drm/panel: visionox-rm69299: Fix clock frequency for SHIFT6mq Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 011/507] drm/panel: visionox-rm69299: Dont clear all mode flags Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 012/507] accel/ivpu: Rework bind/unbind of imported buffers Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 013/507] accel/ivpu: Fix page fault in ivpu_bo_unbind_all_bos_from_context() Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 014/507] accel/ivpu: Make function parameter names consistent Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 015/507] accel/ivpu: Fix DCT active percent format Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 016/507] drm/vgem-fence: Fix potential deadlock on release Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 017/507] bpf: Cleanup unused func args in rqspinlock implementation Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 018/507] tools/nolibc: handle NULL wstatus argument to waitpid() Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 019/507] USB: Fix descriptor count when handling invalid MBIM extended descriptor Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 020/507] perf bpf_counter: Fix opening of "any"(-1) CPU events Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 021/507] ima: Attach CREDS_CHECK IMA hook to bprm_creds_from_file LSM hook Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 022/507] pinctrl: renesas: rzg2l: Fix PMC restore Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 023/507] clk: renesas: cpg-mssr: Add missing 1ms delay into reset toggle callback Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 024/507] clk: renesas: cpg-mssr: Read back reset registers to assure values latched Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 025/507] drm: atmel-hlcdc: fix atmel_xlcdc_plane_setup_scaler() Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 026/507] HID: logitech-hidpp: Do not assume FAP in hidpp_send_message_sync() Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 027/507] remoteproc: imx_rproc: Fix runtime PM cleanup and improve remove path Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 028/507] objtool: Fix standalone --hacks=jump_label Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 029/507] objtool: Fix weak symbol detection Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 030/507] accel/ivpu: Fix race condition when mapping dmabuf Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 031/507] perf parse-events: Fix legacy cache events if event is duplicated in a PMU Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 032/507] wifi: ath10k: move recovery check logic into a new work Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 033/507] wifi: ath11k: restore register window after global reset Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 034/507] wifi: ath12k: Fix MSDU buffer types handling in RX error path Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 035/507] wifi: ath12k: fix VHT MCS assignment Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 036/507] wifi: ath12k: fix TX and RX MCS rate configurations in HE mode Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 037/507] sched/fair: Forfeit vruntime on yield Greg Kroah-Hartman
2025-12-16 11:07 ` [PATCH 6.17 038/507] irqchip/bcm2712-mip: Fix OF node reference imbalance Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 039/507] irqchip/bcm2712-mip: Fix section mismatch Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 040/507] irqchip/irq-bcm7038-l1: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 041/507] irqchip/irq-bcm7120-l2: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 042/507] irqchip/irq-brcmstb-l2: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 043/507] irqchip/imx-mu-msi: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 044/507] irqchip/renesas-rzg2l: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 045/507] irqchip/starfive-jh8100: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 046/507] irqchip/qcom-irq-combiner: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 047/507] crypto: authenc - Correctly pass EINPROGRESS back up to the caller Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 048/507] ntfs3: fix uninit memory after failed mi_read in mi_format_new Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 049/507] ntfs3: Fix uninit buffer allocated by __getname() Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 050/507] dt-bindings: clock: qcom,x1e80100-gcc: Add missing USB4 clocks/resets Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 051/507] clk: qcom: gcc-x1e80100: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 052/507] rculist: Add hlist_nulls_replace_rcu() and hlist_nulls_replace_init_rcu() Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 053/507] inet: Avoid ehash lookup race in inet_ehash_insert() Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 054/507] inet: Avoid ehash lookup race in inet_twsk_hashdance_schedule() Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 055/507] iio: imu: st_lsm6dsx: Fix measurement unit for odr struct member Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 056/507] firmware: qcom: tzmem: fix qcom_tzmem_policy kernel-doc Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 057/507] crypto: aead - Fix reqsize handling Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 058/507] block/mq-deadline: Introduce dd_start_request() Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 059/507] block/mq-deadline: Switch back to a single dispatch list Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 060/507] arm64: dts: freescale: imx8mp-venice-gw7905-2x: remove duplicate usdhc1 props Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 061/507] arm64: dts: imx8mm-venice-gw72xx: remove unused sdhc1 pinctrl Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 062/507] arm64: dts: imx8mp-venice-gw702x: remove off-board uart Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 063/507] arm64: dts: imx8mp-venice-gw702x: remove off-board sdhc1 Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 064/507] arm64: dts: imx95-15x15-evk: add fan-supply property for pwm-fan Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 065/507] perf annotate: Check return value of evsel__get_arch() properly Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 066/507] arm64: dts: exynos: gs101: fix sysreg_apm reg property Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 067/507] PCI: rcar-gen2: Drop ARM dependency from PCI_RCAR_GEN2 Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 068/507] uio: uio_fsl_elbc_gpcm:: Add null pointer check to uio_fsl_elbc_gpcm_probe Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 069/507] tty: introduce tty_port_tty guard() Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 070/507] tty: serial: imx: Only configure the wake register when device is set as wakeup source Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 071/507] clk: qcom: camcc-sm8550: Specify Titan GDSC power domain as a parent to other Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 072/507] clk: qcom: camcc-sm6350: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 073/507] clk: qcom: rpmh: Define RPMH_IPA_CLK on QCS615 Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 074/507] clk: qcom: gcc-sm8750: Add a new frequency for sdcc2 clock Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 075/507] clk: qcom: gcc-ipq5424: Correct the icc_first_node_id Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 076/507] clk: qcom: camcc-sm6350: Fix PLL config of PLL2 Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 077/507] clk: qcom: camcc-sm7150: " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 078/507] soc: qcom: gsbi: fix double disable caused by devm Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 079/507] crypto: asymmetric_keys - prevent overflow in asymmetric_key_generate_id Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 080/507] crypto: hisilicon/qm - restore original qos values Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 081/507] wifi: ath11k: fix VHT MCS assignment Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 082/507] wifi: ath11k: fix peer HE " Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 083/507] s390/smp: Fix fallback CPU detection Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 084/507] scsi: ufs: core: Move the ufshcd_enable_intr() declaration Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 085/507] s390/ap: Dont leak debug feature files if AP instructions are not available Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 086/507] tools/power turbostat: Regression fix Uncore MHz printed in hex Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 087/507] wifi: ath12k: restore register window after global reset Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 088/507] leds: upboard: Fix module alias Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 089/507] PCI: endpoint: pci-epf-test: Fix sleeping function being called from atomic context Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 090/507] arm64: dts: ti: k3-am62p: Fix memory ranges for GPU Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 091/507] firmware: imx: scu-irq: fix OF node leak in Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 092/507] arm64: dts: qcom: x1e80100: Fix compile warnings for USB HS controller Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 093/507] arm64: dts: qcom: x1e80100: Add missing quirk for HS only USB controller Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 094/507] arm64: dts: qcom: sdm845-starqltechn: remove (address|size)-cells Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 095/507] arm64: dts: qcom: starqltechn: remove extra empty line Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 096/507] arm64: dts: qcom: sdm845-starqltechn: fix max77705 interrupts Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 097/507] arm64: dts: qcom: sdm845-oneplus: Correct gpio used for slider Greg Kroah-Hartman
2025-12-16 11:08 ` [PATCH 6.17 098/507] arm64: dts: qcom: qcm6490-fairphone-fp5: Add supplies to simple-fb node Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 099/507] arm64: dts: qcom: sm8650: set ufs as dma coherent Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 100/507] arm64: dts: qcom: qcm6490-shift-otter: Add missing reserved-memory Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 101/507] arm64: dts: qcom: sdm845-starqltechn: Fix i2c-gpio node name Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 102/507] perf hwmon_pmu: Fix uninitialized variable warning Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 103/507] phy: mscc: Fix PTP for VSC8574 and VSC8572 Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 104/507] sctp: Defer SCTP_DBG_OBJCNT_DEC() to sctp_destroy_sock() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 105/507] arm64: dts: qcom: qcm2290: Add CCI node Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 106/507] arm64: dts: qcom: qcm2290: Fix camss register prop ordering Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 107/507] RDMA/rxe: Fix null deref on srq->rq.queue after resize failure Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 108/507] ARM: dts: renesas: gose: Remove superfluous port property Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 109/507] ARM: dts: renesas: r9a06g032-rzn1d400-db: Drop invalid #cells properties Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 110/507] drm/amdgpu: add userq object va track helpers Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 111/507] drm/amdgpu/userq: fix SDMA and compute validation Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 112/507] wifi: iwlwifi: mld: add null check for kzalloc() in iwl_mld_send_proto_offload() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 113/507] Revert "mtd: rawnand: marvell: fix layouts" Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 114/507] mtd: nand: relax ECC parameter validation check Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 115/507] mtd: rawnand: lpc32xx_slc: fix GPIO descriptor leak on probe error and remove Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 116/507] perf: Remove get_perf_callchain() init_nr argument Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 117/507] bpf: Refactor stack map trace depth calculation into helper function Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 118/507] bpf: Fix stackmap overflow check in __bpf_get_stackid() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 119/507] perf/x86/intel/cstate: Remove PC3 support from LunarLake Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 120/507] task_work: Fix NMI race condition Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 121/507] x86/dumpstack: Prevent KASAN false positive warnings in __show_regs() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 122/507] accel/ivpu: Remove skip of dma unmap for imported buffers Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 123/507] media: ov02c10: Fix default vertical flip Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 124/507] tools/nolibc/stdio: let perror work when NOLIBC_IGNORE_ERRNO is set Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 125/507] tools/nolibc/dirent: avoid errno in readdir_r Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 126/507] clk: qcom: gcc-qcs615: Update the SDCC clock to use shared_floor_ops Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 127/507] soc: qcom: smem: fix hwspinlock resource leak in probe error paths Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 128/507] pinctrl: stm32: fix hwspinlock resource leak in probe function Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 129/507] drm: nova: select NOVA_CORE Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 130/507] accel/ivpu: Fix race condition when unbinding BOs Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 131/507] pidfs: add missing PIDFD_INFO_SIZE_VER1 Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 132/507] pidfs: add missing BUILD_BUG_ON() assert on struct pidfd_info Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 133/507] i3c: fix refcount inconsistency in i3c_master_register Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 134/507] i3c: master: svc: Prevent incomplete IBI transaction Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 135/507] random: use offstack cpumask when necessary Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 136/507] docs: kdoc: fix duplicate section warning message Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 137/507] wifi: ath12k: fix potential memory leak in ath12k_wow_arp_ns_offload() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 138/507] wifi: ath12k: fix reusing m3 memory Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 139/507] wifi: ath12k: fix error handling in creating hardware group Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 140/507] wifi: ath12k: unassign arvif on scan vdev create failure Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 141/507] interconnect: qcom: msm8996: add missing link to SLAVE_USB_HS Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 142/507] arm64: dts: qcom: msm8996: add interconnect paths to USB2 controller Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 143/507] accel/amdxdna: Fix incorrect command state for timed out job Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 144/507] interconnect: debugfs: Fix incorrect error handling for NULL path Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 145/507] arm64: dts: renesas: sparrow-hawk: Fix full-size DP connector node name and labels Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 146/507] drm/imagination: Fix reference to devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 147/507] perf lock contention: Load kernel map before lookup Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 148/507] perf record: skip synthesize event when open evsel failed Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 149/507] timers/migration: Convert "while" loops to use "for" Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 150/507] timers/migration: Remove locking on group connection Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 151/507] timers/migration: Fix imbalanced NUMA trees Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 152/507] power: supply: rt5033_charger: Fix device node reference leaks Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 153/507] power: supply: cw2015: Check devm_delayed_work_autocancel() return code Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 154/507] power: supply: max17040: Check iio_read_channel_processed() " Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 155/507] power: supply: rt9467: Return error on failure in rt9467_set_value_from_ranges() Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 156/507] power: supply: rt9467: Prevent using uninitialized local variable " Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 157/507] power: supply: wm831x: Check wm831x_set_bits() return value Greg Kroah-Hartman
2025-12-16 11:09 ` [PATCH 6.17 158/507] power: supply: apm_power: only unset own apm_get_power_status Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 159/507] scsi: target: Do not write NUL characters into ASCII configfs output Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 160/507] scsi: target: Fix LUN/device R/W and total command stats Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 161/507] fs/9p: Dont open remote file with APPEND mode when writeback cache is used Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 162/507] drm/panthor: Handle errors returned by drm_sched_entity_init() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 163/507] drm/panthor: Fix group_free_queue() for partially initialized queues Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 164/507] drm/panthor: Fix UAF race between device unplug and FW event processing Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 165/507] drm/panthor: Fix race with suspend during unplug Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 166/507] drm/panthor: Fix UAF on kernel BO VA nodes Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 167/507] firmware: ti_sci: Set IO Isolation only if the firmware is capable Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 168/507] iommu/amd: Fix potential out-of-bounds read in iommu_mmio_show Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 169/507] cleanup: fix scoped_class() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 170/507] spi: tegra210-quad: Fix timeout handling Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 171/507] libbpf: Fix parsing of multi-split BTF Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 172/507] ARM: dts: am335x-netcom-plus-2xx: add missing GPIO labels Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 173/507] ARM: dts: omap3: beagle-xm: Correct obsolete TWL4030 power compatible Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 174/507] ARM: dts: omap3: n900: " Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 175/507] entry,unwind/deferred: Fix unwind_reset_info() placement Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 176/507] coresight: ETR: Fix ETR buffer use-after-free issue Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 177/507] x86/boot: Fix page table access in 5-level to 4-level paging transition Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 178/507] efi/libstub: " Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 179/507] locktorture: Fix memory leak in param_set_cpumask() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 180/507] wifi: rtw89: usb: use common error path for skbs in rtw89_usb_rx_handler() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 181/507] wifi: rtw89: usb: fix leak in rtw89_usb_write_port() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 182/507] mfd: da9055: Fix missing regmap_del_irq_chip() in error path Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 183/507] wifi: ath12k: Fix timeout error during beacon stats retrieval Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 184/507] ext4: correct the checking of quota files before moving extents Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 185/507] accel/amdxdna: Fix dma_fence leak when job is canceled Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 186/507] io_uring: use WRITE_ONCE for user shared memory Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 187/507] perf/x86: Fix NULL event access and potential PEBS record loss Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 188/507] perf/x86/intel: Correct large PEBS flag check Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 189/507] regulator: core: disable supply if enabling main regulator fails Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 190/507] md: delete mddev kobj before deleting gendisk kobj Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 191/507] md: fix rcu protection in md_wakeup_thread Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 192/507] md: avoid repeated calls to del_gendisk Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 193/507] nbd: defer config put in recv_work Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 194/507] scsi: stex: Fix reboot_notifier leak in probe error path Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 195/507] scsi: smartpqi: Fix device resources accessed after device removal Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 196/507] staging: most: remove broken i2c driver Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 197/507] iio: imu: bmi270: fix dev_err_probe error msg Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 198/507] dt-bindings: PCI: amlogic: Fix the register name of the DBI region Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 199/507] RDMA/rtrs: server: Fix error handling in get_or_create_srv Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 200/507] ARM: dts: stm32: stm32mp157c-phycore: Fix STMPE811 touchscreen node properties Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 201/507] coresight: tmc: add the handle of the event to the path Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 202/507] ntfs3: init run lock for extend inode Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 203/507] drm/panthor: Fix potential memleak of vma structure Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 204/507] scsi: ufs: core: fix incorrect buffer duplication in ufshcd_read_string_desc() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 205/507] md: delete md_redundancy_group when array is becoming inactive Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 206/507] cpufreq/amd-pstate: Call cppc_set_auto_sel() only for online CPUs Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 207/507] powerpc/kdump: Fix size calculation for hot-removed memory ranges Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 208/507] powerpc/32: Fix unpaired stwcx. on interrupt exit Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 209/507] macintosh/mac_hid: fix race condition in mac_hid_toggle_emumouse Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 210/507] wifi: cw1200: Fix potential memory leak in cw1200_bh_rx_helper() Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 211/507] nbd: defer config unlock in nbd_genl_connect Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 212/507] coresight: Change device mode to atomic type Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 213/507] coresight: etm4x: Always set tracers device mode on target CPU Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 214/507] coresight: etm3x: " Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 215/507] coresight: etm4x: Correct polling IDLE bit Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 216/507] coresight: etm4x: Add context synchronization before enabling trace Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 217/507] coresight: etm4x: Properly control filter in CPU idle with FEAT_TRF Greg Kroah-Hartman
2025-12-16 11:10 ` [PATCH 6.17 218/507] perf tools: Fix missing feature check for inherit + SAMPLE_READ Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 219/507] drm/tidss: Remove max_pclk_khz and min_pclk_khz from tidss display features Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 220/507] drm/tidss: Move OLDI mode validation to OLDI bridge mode_valid hook Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 221/507] clk: renesas: r9a09g077: Propagate rate changes to parent clocks Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 222/507] clk: renesas: r9a06g032: Fix memory leak in error path Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 223/507] lib/vsprintf: Check pointer before dereferencing in time_and_date() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 224/507] ocfs2: relax BUG() to ocfs2_error() in __ocfs2_move_extent() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 225/507] ocfs2: use correct endian in ocfs2_dinode_has_extents Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 226/507] ACPI: property: Fix fwnode refcount leak in acpi_fwnode_graph_parse_endpoint() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 227/507] scsi: sim710: Fix resource leak by adding missing ioport_unmap() calls Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 228/507] leds: netxbig: Fix GPIO descriptor leak in error paths Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 229/507] accel/amdxdna: Clear mailbox interrupt register during channel creation Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 230/507] accel/amdxdna: Fix deadlock between context destroy and job timeout Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 231/507] bpf: Free special fields when update [lru_,]percpu_hash maps Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 232/507] PCI: keystone: Exit ks_pcie_probe() for invalid mode Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 233/507] arm64: dts: rockchip: Move the EEPROM to correct I2C bus on Radxa ROCK 5A Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 234/507] arm64: dts: rockchip: Add eeprom vcc-supply for " Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 235/507] arm64: dts: rockchip: Add eeprom vcc-supply for Radxa ROCK 3C Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 236/507] crypto: iaa - Fix incorrect return value in save_iaa_wq() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 237/507] s390/fpu: Fix false-positive kmsan report in fpu_vstl() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 238/507] arm64: dts: qcom: qrb2210-rb1: Fix UART3 wakeup IRQ storm Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 239/507] drm/msm/dpu: drop dpu_hw_dsc_destroy() prototype Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 240/507] ps3disk: use memcpy_{from,to}_bvec index Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 241/507] PCI: Prevent resource tree corruption when BAR resize fails Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 242/507] bpf: Prevent nesting overflow in bpf_try_get_buffers Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 243/507] bpf: Handle return value of ftrace_set_filter_ip in register_fentry Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 244/507] selftests/bpf: Fix failure paths in send_signal test Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 245/507] bpf: Check skb->transport_header is set in bpf_skb_check_mtu Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 246/507] mshv: Fix deposit memory in MSHV_ROOT_HVCALL Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 247/507] Drivers: hv: VMBus protocol version 6.0 Greg Kroah-Hartman
2025-12-16 18:28 ` Michael Kelley
2025-12-18 19:14 ` Wei Liu
2025-12-16 11:11 ` [PATCH 6.17 248/507] Drivers: hv: Allocate encrypted buffers when requested Greg Kroah-Hartman
2025-12-16 18:35 ` Michael Kelley
2025-12-18 12:57 ` Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 249/507] Drivers: hv: Free msginfo when the buffer fails to decrypt Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 250/507] mshv: Fix create memory region overlap check Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 251/507] watchdog: wdat_wdt: Fix ACPI table leak in probe function Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 252/507] watchdog: starfive: Fix resource leak in probe error path Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 253/507] fuse_ctl_add_conn(): fix nlink breakage in case of early failure Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 254/507] tracefs: fix a leak in eventfs_create_events_dir() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 255/507] NFSD/blocklayout: Fix minlength check in proc_layoutget Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 256/507] arm64: dts: imx95-tqma9596sa: fix TPM5 pinctrl node name Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 257/507] arm64: dts: imx95-tqma9596sa: reduce maximum FlexSPI frequency to 66MHz Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 258/507] block/blk-throttle: Fix throttle slice time for SSDs Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 259/507] drm/msm: Fix NULL pointer dereference in crashstate_get_vm_logs() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 260/507] drm/msm: fix missing NULL check after kcalloc in crashstate_get_bos() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 261/507] drm/msm/a2xx: stop over-complaining about the legacy firmware Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 262/507] wifi: rtl818x: Fix potential memory leaks in rtl8180_init_rx_ring() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 263/507] net: phy: Add helper for fixing RGMII PHY mode based on internal mac delay Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 264/507] net: stmmac: dwmac-sophgo: Add phy interface filter Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 265/507] bpf: Fix invalid prog->stats access when update_effective_progs fails Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 266/507] powerpc/64s/hash: Restrict stress_hpt_struct memblock region to within RMA limit Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 267/507] powerpc/64s/ptdump: Fix kernel_hash_pagetable dump for ISA v3.00 HPTE format Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 268/507] net: stmmac: Fix VLAN 0 deletion in vlan_del_hw_rx_fltr() Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 269/507] fs/ntfs3: out1 also needs to put mi Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 270/507] fs/ntfs3: Prevent memory leaks in add sub record Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 271/507] drm/mediatek: Fix CCORR mtk_ctm_s31_32_to_s1_n function issue Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 272/507] drm/msm/a6xx: Flush LRZ cache before PT switch Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 273/507] drm/msm/a6xx: Fix the gemnoc workaround Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 274/507] drm/msm/a6xx: Improve MX rail fallback in RPMH vote init Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 275/507] spi: sophgo: Fix incorrect use of bus width value macros Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 276/507] ipv6: clear RA flags when adding a static route Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 277/507] perf arm_spe: Fix memset subclass in operation Greg Kroah-Hartman
2025-12-16 11:11 ` [PATCH 6.17 278/507] pwm: bcm2835: Make sure the channel is enabled after pwm_request() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 279/507] scsi: ufs: rockchip: Reset controller on PRE_CHANGE of hce enable notify Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 280/507] scsi: qla2xxx: Fix improper freeing of purex item Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 281/507] net: phy: realtek: create rtl8211f_config_rgmii_delay() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 282/507] iommu/vt-d: Fix unused invalidation hint in qi_desc_iotlb Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 283/507] wifi: mac80211: fix CMAC functions not handling errors Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 284/507] mfd: mt6397-irq: Fix missing irq_domain_remove() in error path Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 285/507] mfd: mt6358-irq: " Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 286/507] of/fdt: Consolidate duplicate code into helper functions Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 287/507] of/fdt: Fix incorrect use of dt_root_addr_cells in early_init_dt_check_kho() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 288/507] leds: rgb: leds-qcom-lpg: Dont enable TRILED when configuring PWM Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 289/507] phy: renesas: rcar-gen3-usb2: Fix an error handling path in rcar_gen3_phy_usb2_probe() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 290/507] phy: rockchip: naneng-combphy: Add SoC prefix to register definitions Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 291/507] phy: rockchip: naneng-combphy: Fix PCIe L1ss support RK3562 Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 292/507] phy: freescale: Initialize priv->lock Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 293/507] phy: rockchip: samsung-hdptx: Fix reported clock rate in high bpc mode Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 294/507] phy: rockchip: samsung-hdptx: Reduce ROPLL loop bandwidth Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 295/507] phy: rockchip: samsung-hdptx: Prevent Inter-Pair Skew from exceeding the limits Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 296/507] ASoC: SDCA: Fix missing dash in HIDE DisCo property Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 297/507] selftests/bpf: Use ASSERT_STRNEQ to factor in long slab cache names Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 298/507] net: phy: adin1100: Fix software power-down ready condition Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 299/507] cpuset: Treat cpusets in attaching as populated Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 300/507] clk: spacemit: Set clk_hw_onecell_data::num before using flex array Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 301/507] wifi: rtl818x: rtl8187: Fix potential buffer underflow in rtl8187_rx_cb() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 302/507] RAS: Report all ARM processor CPER information to userspace Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 303/507] ima: Handle error code returned by ima_filter_rule_match() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 304/507] usb: chaoskey: fix locking for O_NONBLOCK Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 305/507] usb: dwc2: fix hang during shutdown if set as peripheral Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 306/507] usb: dwc2: fix hang during suspend " Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 307/507] usb: raw-gadget: cap raw_io transfer length to KMALLOC_MAX_SIZE Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 308/507] regulator: pca9450: Fix error code in probe() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 309/507] selftests/bpf: skip test_perf_branches_hw() on unsupported platforms Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 310/507] selftests/bpf: Improve reliability of test_perf_branches_no_hw() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 311/507] crypto: starfive - Correctly handle return of sg_nents_for_len Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 312/507] crypto: ccree " Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 313/507] PM / devfreq: hisi: Fix potential UAF in OPP handling Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 314/507] RISC-V: KVM: Fix guest page fault within HLV* instructions Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 315/507] erofs: correct FSDAX detection Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 316/507] erofs: limit the level of fs stacking for file-backed mounts Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 317/507] RDMA/bnxt_re: Fix the inline size for GenP7 devices Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 318/507] RDMA/bnxt_re: Pass correct flag for dma mr creation Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 319/507] crypto: ahash - Fix crypto_ahash_import with partial block data Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 320/507] crypto: ahash - Zero positive err value in ahash_update_finish Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 321/507] ASoC: tas2781: correct the wrong period Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 322/507] wifi: mt76: mt7996: fix null pointer deref in mt7996_conf_tx() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 323/507] wifi: mt76: wed: use proper wed reference in mt76 wed driver callabacks Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 324/507] wifi: mt76: mt7925: add MBSSID support Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 325/507] wifi: mt76: mt7921: " Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 326/507] Revert "wifi: mt76: mt792x: improve monitor interface handling" Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 327/507] wifi: mt76: mt7996: fix max nss value when getting rx chainmask Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 328/507] wifi: mt76: mt7996: fix implicit beamforming support for mt7992 Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 329/507] wifi: mt76: mt7996: fix several fields in mt7996_mcu_bss_basic_tlv() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 330/507] wifi: mt76: mt7996: fix teardown command for an MLD peer Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 331/507] wifi: mt76: mt7996: set link_valid field when initializing wcid Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 332/507] wifi: mt76: mt7996: fix MLD group index assignment Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 333/507] wifi: mt76: mt7996: fix using wrong phy to start in mt7996_mac_restart() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 334/507] wifi: mt76: mt7996: grab mt76 mutex in mt7996_mac_sta_event() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 335/507] wifi: mt76: mt7996: skip deflink accounting for offchannel links Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 336/507] wifi: mt76: mt7996: Add missing locking in mt7996_mac_sta_rc_work() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 337/507] mt76: mt7615: Fix memory leak in mt7615_mcu_wtbl_sta_add() Greg Kroah-Hartman
2025-12-16 11:12 ` [PATCH 6.17 338/507] firmware: stratix10-svc: fix make htmldocs warning for stratix10_svc Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 339/507] staging: fbtft: core: fix potential memory leak in fbtft_probe_common() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 340/507] iommu/arm-smmu-v3: Fix error check in arm_smmu_alloc_cd_tables Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 341/507] btrfs: fix double free of qgroup record after failure to add delayed ref head Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 342/507] btrfs: fix racy bitfield write in btrfs_clear_space_info_full() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 343/507] btrfs: fix leaf leak in an error path in btrfs_del_items() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 344/507] PCI: dwc: Fix wrong PORT_LOGIC_LTSSM_STATE_MASK definition Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 345/507] drm/nouveau: restrict the flush page to a 32-bit address Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 346/507] um: Dont rename vmap to kernel_vmap Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 347/507] iomap: always run error completions in user context Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 348/507] wifi: ieee80211: correct FILS status codes Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 349/507] backlight: led-bl: Add devlink to supplier LEDs Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 350/507] backlight: lp855x: Fix lp855x.h kernel-doc warnings Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 351/507] iommu/arm-smmu-qcom: Enable use of all SMR groups when running bare-metal Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 352/507] RDMA/irdma: Fix data race in irdma_sc_ccq_arm Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 353/507] RDMA/irdma: Fix data race in irdma_free_pble Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 354/507] RDMA/irdma: Do not directly rely on IB_PD_UNSAFE_GLOBAL_RKEY Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 355/507] drm/panthor: Avoid adding of kernel BOs to extobj list Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 356/507] clocksource/drivers/ralink: Fix resource leaks in init error path Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 357/507] clocksource/drivers/stm: Fix double deregistration on probe failure Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 358/507] clocksource/drivers/nxp-stm: Fix section mismatches Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 359/507] clocksource/drivers/nxp-stm: Prevent driver unbind Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 360/507] ASoC: nau8325: use simple i2c probe function Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 361/507] ASoC: nau8325: add missing build config Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 362/507] gfs2: Prevent recursive memory reclaim Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 363/507] ASoC: fsl_xcvr: clear the channel status control memory Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 364/507] firmware_loader: make RUST_FW_LOADER_ABSTRACTIONS select FW_LOADER Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 365/507] greybus: gb-beagleplay: Fix timeout handling in bootloader functions Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 366/507] misc: rp1: Fix an error handling path in rp1_probe() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 367/507] kernfs: fix memory leak of kernfs_iattrs in __kernfs_new_node Greg Kroah-Hartman
2025-12-16 16:51 ` Will Rosenberg
2025-12-16 11:13 ` [PATCH 6.17 368/507] drm/amd/display: Fix logical vs bitwise bug in get_embedded_panel_info_v2_1() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 369/507] hwmon: sy7636a: Fix regulator_enable resource leak on error path Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 370/507] ACPI: processor_core: fix map_x2apic_id for amd-pstate on am4 Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 371/507] ublk: prevent invalid access with DEBUG Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 372/507] ext4: improve integrity checking in __mb_check_buddy by enhancing order-0 validation Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 373/507] selftests/net: packetdrill: pass send_omit_free to MSG_ZEROCOPY tests Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 374/507] of: Skip devicetree kunit tests when RISCV+ACPI doesnt populate root node Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 375/507] virtio_vdpa: fix misleading return in void function Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 376/507] virtio: fix typo in virtio_device_ready() comment Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 377/507] virtio: fix whitespace in virtio_config_ops Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 378/507] virtio: fix grammar in virtio_queue_info docs Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 379/507] virtio: fix virtqueue_set_affinity() docs Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 380/507] vdpa/mlx5: Fix incorrect error code reporting in query_virtqueues Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 381/507] vhost: Fix kthread worker cgroup failure handling Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 382/507] vdpa/pds: use %pe for ERR_PTR() in event handler registration Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 383/507] virtio: clean up features qword/dword terms Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 384/507] ASoC: Intel: catpt: Fix error path in hw_params() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 385/507] spi: airoha-snfi: en7523: workaround flash damaging if UART_TXD was short to GND Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 386/507] ARM: dts: samsung: universal_c210: turn off SDIO WLAN chip during system suspend Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 387/507] ARM: dts: samsung: exynos4210-i9100: " Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 388/507] ARM: dts: samsung: exynos4210-trats: " Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 389/507] ARM: dts: samsung: exynos4412-midas: " Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 390/507] regulator: core: Protect regulator_supply_alias_list with regulator_list_mutex Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 391/507] Reinstate "resource: avoid unnecessary lookups in find_next_iomem_res()" Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 392/507] netfilter: flowtable: check for maximum number of encapsulations in bridge vlan Greg Kroah-Hartman
2025-12-16 11:13 ` Greg Kroah-Hartman [this message]
2025-12-16 11:13 ` [PATCH 6.17 394/507] netfilter: nft_connlimit: update the count if add was skipped Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 395/507] iavf: Implement settime64 with -EOPNOTSUPP Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 396/507] net: stmmac: fix rx limit check in stmmac_rx_zc() Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 397/507] mtd: rawnand: renesas: Handle devm_pm_runtime_enable() errors Greg Kroah-Hartman
2025-12-16 11:13 ` [PATCH 6.17 398/507] spi: ch341: fix out-of-bounds memory access in ch341_transfer_one Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 399/507] vfio/pci: Use RCU for error/request triggers to avoid circular locking Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 400/507] net: phy: aquantia: check for NVMEM deferral Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 401/507] selftests: bonding: add delay before each xvlan_over_bond connectivity check Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 402/507] net: netpoll: initialize work queue before error checks Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 403/507] mtd: lpddr_cmds: fix signed shifts in lpddr_cmds Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 404/507] rqspinlock: Enclose lock/unlock within lock entry acquisitions Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 405/507] rqspinlock: Use trylock fallback when per-CPU rqnode is busy Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 406/507] remoteproc: qcom_q6v5_wcss: fix parsing of qcom,halt-regs Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 407/507] md/raid5: fix IO hang when array is broken with IO inflight Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 408/507] clk: keystone: fix compile testing Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 409/507] net: dsa: b53: fix VLAN_ID_IDX write size for BCM5325/65 Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 410/507] net: dsa: b53: fix extracting VID from entry " Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 411/507] net: dsa: b53: b53_arl_read{,25}(): use the entry for comparision Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 412/507] net: dsa: b53: move reading ARL entries into their own function Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 413/507] net: dsa: b53: move writing ARL entries into their own functions Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 414/507] net: dsa: b53: provide accessors for accessing ARL_SRCH_CTL Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 415/507] net: dsa: b53: split reading search entry into their own functions Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 416/507] net: dsa: b53: move ARL entry functions into ops struct Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 417/507] net: dsa: b53: add support for 5389/5397/5398 ARL entry format Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 418/507] net: dsa: b53: use same ARL search result offset for BCM5325/65 Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 419/507] net: dsa: b53: fix CPU port unicast ARL entries " Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 420/507] net: dsa: b53: add support for bcm63xx ARL entry format Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 421/507] net: dsa: b53: fix BCM5325/65 ARL entry multicast port masks Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 422/507] net: dsa: b53: fix BCM5325/65 ARL entry VIDs Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 423/507] net: hsr: create an API to get hsr port type Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 424/507] net: dsa: xrs700x: reject unsupported HSR configurations Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 425/507] net/sched: sch_cake: Fix incorrect qlen reduction in cake_drop Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 426/507] perf jitdump: Add sym/str-tables to build-ID generation Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 427/507] perf tools: Mark split kallsyms DSOs as loaded Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 428/507] perf tools: Fix split kallsyms DSO counting Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 429/507] perf hist: In init, ensure mem_info is put on error paths Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 430/507] pinctrl: single: Fix incorrect type for error return variable Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 431/507] fbdev: ssd1307fb: fix potential page leak in ssd1307fb_probe() Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 432/507] 9p: fix cache/debug options printing in v9fs_show_options Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 433/507] sched/fair: Fix unfairness caused by stalled tg_load_avg_contrib when the last task migrates out Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 434/507] sched/core: Fix psi_dequeue() for Proxy Execution Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 435/507] platform/x86:intel/pmc: Update Arrow Lake telemetry GUID Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 436/507] f2fs: maintain one time GC mode is enabled during whole zoned GC cycle Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 437/507] rtc: amlogic-a4: fix double free caused by devm Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 438/507] kbuild: install-extmod-build: Fix when given dir outside the build dir Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 439/507] kbuild: install-extmod-build: Properly fix CC expansion when ccache is used Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 440/507] NFS: Avoid changing nlink when file removes and attribute updates race Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 441/507] fs/nls: Fix utf16 to utf8 conversion Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 442/507] NFS: Initialise verifiers for visible dentries in readdir and lookup Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 443/507] NFS: Initialise verifiers for visible dentries in nfs_atomic_open() Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 444/507] NFS: Initialise verifiers for visible dentries in _nfs4_open_and_get_state Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 445/507] NFSv4/pNFS: Clear NFS_INO_LAYOUTCOMMIT in pnfs_mark_layout_stateid_invalid Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 446/507] panthor: save task pid and comm in panthor_group Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 447/507] drm/panthor: Prevent potential UAF in group creation Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 448/507] Revert "nfs: ignore SB_RDONLY when remounting nfs" Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 449/507] Revert "nfs: clear SB_RDONLY before getting superblock" Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 450/507] Revert "nfs: ignore SB_RDONLY when mounting nfs" Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 451/507] NFS: Automounted filesystems should inherit ro,noexec,nodev,sync flags Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 452/507] NFS: Fix inheritance of the block sizes when automounting Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 453/507] fs/nls: Fix inconsistency between utf8_to_utf32() and utf32_to_utf8() Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 454/507] platform/x86: asus-wmi: use brightness_set_blocking() for kbd led Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 455/507] ASoC: bcm: bcm63xx-pcm-whistler: Check return value of of_dma_configure() Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 456/507] ASoC: amd: acp: Audio is not resuming after s0ix Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 457/507] ASoC: ak4458: Disable regulator when error happens Greg Kroah-Hartman
2025-12-16 11:14 ` [PATCH 6.17 458/507] ASoC: ak5558: " Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 459/507] f2fs: revert summary entry count from 2048 to 512 in 16kb block support Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 460/507] blk-mq: Abort suspend when wakeup events are pending Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 461/507] block: fix comment for op_is_zone_mgmt() to include RESET_ALL Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 462/507] block: fix memory leak in __blkdev_issue_zero_pages Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 463/507] nvme-auth: use kvfree() for memory allocated with kvcalloc() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 464/507] drm/plane: Fix IS_ERR() vs NULL check in drm_plane_create_hotspot_properties() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 465/507] regulator: fixed: Rely on the core freeing the enable GPIO Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 466/507] ALSA: firewire-motu: fix buffer overflow in hwdep read for DSP events Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 467/507] drm/nouveau: refactor deprecated strcpy Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 468/507] drm/nouveau: fix circular dep oops from vendored i2c encoder Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 469/507] cifs: Fix handling of a beyond-EOF DIO/unbuffered read over SMB1 Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 470/507] cifs: Fix handling of a beyond-EOF DIO/unbuffered read over SMB2 Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 471/507] docs: hwmon: fix link to g762 devicetree binding Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 472/507] i2c: spacemit: fix detect issue Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 473/507] dma/pool: eliminate alloc_pages warning in atomic_pool_expand Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 474/507] ALSA: uapi: Fix typo in asound.h comment Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 475/507] drm/amdkfd: Use huge page size to check split svm range alignment Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 476/507] rtc: gamecube: Check the return value of ioremap() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 477/507] rtc: max31335: Fix ignored return value in set_alarm Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 478/507] ALSA: firewire-motu: add bounds check in put_user loop for DSP events Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 479/507] ARM: 9464/1: fix input-only operand modification in load_unaligned_zeropad() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 480/507] drm/xe/fbdev: use the same 64-byte stride alignment as i915 Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 481/507] drm/i915/fbdev: make intel_framebuffer_create() error return handling explicit Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 482/507] drm/{i915, xe}/fbdev: pass struct drm_device to intel_fbdev_fb_alloc() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 483/507] drm/{i915, xe}/fbdev: deduplicate struct drm_mode_fb_cmd2 init Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 484/507] drm/i915/fbdev: Hold runtime PM ref during fbdev BO creation Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 485/507] block: Use RCU in blk_mq_[un]quiesce_tagset() instead of set->tag_list_lock Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 486/507] ASoC: amd: acp: update tdm channels for specific DAI Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 487/507] dm-raid: fix possible NULL dereference with undefined raid type Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 488/507] dm log-writes: Add missing set_freezable() for freezable kthread Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 489/507] efi/cper: Add a new helper function to print bitmasks Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 490/507] efi/cper: Adjust infopfx size to accept an extra space Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 491/507] efi/cper: align ARM CPER type with UEFI 2.9A/2.10 specs Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 492/507] scsi: imm: Fix use-after-free bug caused by unfinished delayed work Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 493/507] perf/core: Fix missing read event generation on task exit Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 494/507] irqchip/mchp-eic: Fix error code in mchp_eic_domain_alloc() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 495/507] cpu: Make atomic hotplug callbacks run with interrupts disabled on UP Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 496/507] ocfs2: fix memory leak in ocfs2_merge_rec_left() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 497/507] perf/x86/intel: Fix NULL event dereference crash in handle_pmi_common() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 498/507] usb: gadget: tegra-xudc: Always reinitialize data toggle when clear halt Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 499/507] usb: typec: ucsi: fix probe failure in gaokun_ucsi_probe() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 500/507] usb: phy: Initialize struct usb_phy list_head Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 501/507] usb: typec: ucsi: fix use-after-free caused by uec->work Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 502/507] usb: dwc3: dwc3_power_off_all_roothub_ports: Use ioremap_np when required Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 503/507] ALSA: dice: fix buffer overflow in detect_stream_formats() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 504/507] ALSA: hda/realtek: Add match for ASUS Xbox Ally projects Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 505/507] ALSA: hda/tas2781: fix speaker id retrieval for multiple probes Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 506/507] ALSA: hda: cs35l41: Fix NULL pointer dereference in cs35l41_hda_read_acpi() Greg Kroah-Hartman
2025-12-16 11:15 ` [PATCH 6.17 507/507] ALSA: wavefront: Fix integer overflow in sample size validation Greg Kroah-Hartman
2025-12-16 12:10 ` [PATCH 6.17 000/507] 6.17.13-rc1 review Brett A C Sheffield
2025-12-16 12:17 ` Greg Kroah-Hartman
2025-12-16 13:22 ` Brett A C Sheffield
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=20251216111359.691558764@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=fmancera@suse.de \
--cc=pablo@netfilter.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).