From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Eric Dumazet <edumazet@google.com>,
David Ahern <dsahern@kernel.org>,
Sabrina Dubroca <sd@queasysnail.net>,
Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.9 347/374] inet: introduce dst_rtable() helper
Date: Thu, 6 Jun 2024 16:05:26 +0200 [thread overview]
Message-ID: <20240606131703.491449842@linuxfoundation.org> (raw)
In-Reply-To: <20240606131651.683718371@linuxfoundation.org>
6.9-stable review patch. If anyone has any objections, please let me know.
------------------
From: Eric Dumazet <edumazet@google.com>
[ Upstream commit 05d6d492097c55f2d153fc3fd33cbe78e1e28e0a ]
I added dst_rt6_info() in commit
e8dfd42c17fa ("ipv6: introduce dst_rt6_info() helper")
This patch does a similar change for IPv4.
Instead of (struct rtable *)dst casts, we can use :
#define dst_rtable(_ptr) \
container_of_const(_ptr, struct rtable, dst)
Patch is smaller than IPv6 one, because IPv4 has skb_rtable() helper.
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Reviewed-by: Sabrina Dubroca <sd@queasysnail.net>
Link: https://lore.kernel.org/r/20240429133009.1227754-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Stable-dep-of: 92f1655aa2b2 ("net: fix __dst_negative_advice() race")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/infiniband/core/addr.c | 12 +++---------
drivers/net/vrf.c | 2 +-
drivers/s390/net/qeth_core.h | 5 ++---
include/linux/skbuff.h | 9 ---------
include/net/ip.h | 4 ++--
include/net/route.h | 11 +++++++++++
net/atm/clip.c | 2 +-
net/core/dst_cache.c | 2 +-
net/core/filter.c | 3 +--
net/ipv4/af_inet.c | 2 +-
net/ipv4/icmp.c | 26 ++++++++++++++------------
net/ipv4/ip_input.c | 2 +-
net/ipv4/ip_output.c | 8 ++++----
net/ipv4/route.c | 24 +++++++++++-------------
net/ipv4/udp.c | 2 +-
net/ipv4/xfrm4_policy.c | 2 +-
net/l2tp/l2tp_ip.c | 2 +-
net/mpls/mpls_iptunnel.c | 2 +-
net/netfilter/ipvs/ip_vs_xmit.c | 2 +-
net/netfilter/nf_flow_table_ip.c | 4 ++--
net/netfilter/nft_rt.c | 2 +-
net/sctp/protocol.c | 4 ++--
net/tipc/udp_media.c | 2 +-
23 files changed, 64 insertions(+), 70 deletions(-)
diff --git a/drivers/infiniband/core/addr.c b/drivers/infiniband/core/addr.c
index f20dfe70fa0e4..be0743dac3fff 100644
--- a/drivers/infiniband/core/addr.c
+++ b/drivers/infiniband/core/addr.c
@@ -348,16 +348,10 @@ static int dst_fetch_ha(const struct dst_entry *dst,
static bool has_gateway(const struct dst_entry *dst, sa_family_t family)
{
- const struct rtable *rt;
- const struct rt6_info *rt6;
+ if (family == AF_INET)
+ return dst_rtable(dst)->rt_uses_gateway;
- if (family == AF_INET) {
- rt = container_of(dst, struct rtable, dst);
- return rt->rt_uses_gateway;
- }
-
- rt6 = dst_rt6_info(dst);
- return rt6->rt6i_flags & RTF_GATEWAY;
+ return dst_rt6_info(dst)->rt6i_flags & RTF_GATEWAY;
}
static int fetch_ha(const struct dst_entry *dst, struct rdma_dev_addr *dev_addr,
diff --git a/drivers/net/vrf.c b/drivers/net/vrf.c
index 71cfa03a77449..c3af9ad5e1547 100644
--- a/drivers/net/vrf.c
+++ b/drivers/net/vrf.c
@@ -860,7 +860,7 @@ static int vrf_rt6_create(struct net_device *dev)
static int vrf_finish_output(struct net *net, struct sock *sk, struct sk_buff *skb)
{
struct dst_entry *dst = skb_dst(skb);
- struct rtable *rt = (struct rtable *)dst;
+ struct rtable *rt = dst_rtable(dst);
struct net_device *dev = dst->dev;
unsigned int hh_len = LL_RESERVED_SPACE(dev);
struct neighbour *neigh;
diff --git a/drivers/s390/net/qeth_core.h b/drivers/s390/net/qeth_core.h
index 5f17a2a5d0e33..41fe8a043d61f 100644
--- a/drivers/s390/net/qeth_core.h
+++ b/drivers/s390/net/qeth_core.h
@@ -970,9 +970,8 @@ static inline struct dst_entry *qeth_dst_check_rcu(struct sk_buff *skb,
static inline __be32 qeth_next_hop_v4_rcu(struct sk_buff *skb,
struct dst_entry *dst)
{
- struct rtable *rt = (struct rtable *) dst;
-
- return (rt) ? rt_nexthop(rt, ip_hdr(skb)->daddr) : ip_hdr(skb)->daddr;
+ return (dst) ? rt_nexthop(dst_rtable(dst), ip_hdr(skb)->daddr) :
+ ip_hdr(skb)->daddr;
}
static inline struct in6_addr *qeth_next_hop_v6_rcu(struct sk_buff *skb,
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 4ff48eda3f642..5b1078c160f27 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1174,15 +1174,6 @@ static inline bool skb_dst_is_noref(const struct sk_buff *skb)
return (skb->_skb_refdst & SKB_DST_NOREF) && skb_dst(skb);
}
-/**
- * skb_rtable - Returns the skb &rtable
- * @skb: buffer
- */
-static inline struct rtable *skb_rtable(const struct sk_buff *skb)
-{
- return (struct rtable *)skb_dst(skb);
-}
-
/* For mangling skb->pkt_type from user space side from applications
* such as nft, tc, etc, we only allow a conservative subset of
* possible pkt_types to be set.
diff --git a/include/net/ip.h b/include/net/ip.h
index 25cb688bdc623..6d735e00d3f3e 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -423,7 +423,7 @@ int ip_decrease_ttl(struct iphdr *iph)
static inline int ip_mtu_locked(const struct dst_entry *dst)
{
- const struct rtable *rt = (const struct rtable *)dst;
+ const struct rtable *rt = dst_rtable(dst);
return rt->rt_mtu_locked || dst_metric_locked(dst, RTAX_MTU);
}
@@ -461,7 +461,7 @@ static inline bool ip_sk_ignore_df(const struct sock *sk)
static inline unsigned int ip_dst_mtu_maybe_forward(const struct dst_entry *dst,
bool forwarding)
{
- const struct rtable *rt = container_of(dst, struct rtable, dst);
+ const struct rtable *rt = dst_rtable(dst);
struct net *net = dev_net(dst->dev);
unsigned int mtu;
diff --git a/include/net/route.h b/include/net/route.h
index d4a0147942f1a..af55401aa8f40 100644
--- a/include/net/route.h
+++ b/include/net/route.h
@@ -77,6 +77,17 @@ struct rtable {
rt_pmtu:31;
};
+#define dst_rtable(_ptr) container_of_const(_ptr, struct rtable, dst)
+
+/**
+ * skb_rtable - Returns the skb &rtable
+ * @skb: buffer
+ */
+static inline struct rtable *skb_rtable(const struct sk_buff *skb)
+{
+ return dst_rtable(skb_dst(skb));
+}
+
static inline bool rt_is_input_route(const struct rtable *rt)
{
return rt->rt_is_input != 0;
diff --git a/net/atm/clip.c b/net/atm/clip.c
index 294cb9efe3d38..015fb679be425 100644
--- a/net/atm/clip.c
+++ b/net/atm/clip.c
@@ -345,7 +345,7 @@ static netdev_tx_t clip_start_xmit(struct sk_buff *skb,
dev->stats.tx_dropped++;
return NETDEV_TX_OK;
}
- rt = (struct rtable *) dst;
+ rt = dst_rtable(dst);
if (rt->rt_gw_family == AF_INET)
daddr = &rt->rt_gw4;
else
diff --git a/net/core/dst_cache.c b/net/core/dst_cache.c
index b17171345d649..0c0bdb058c5b1 100644
--- a/net/core/dst_cache.c
+++ b/net/core/dst_cache.c
@@ -83,7 +83,7 @@ struct rtable *dst_cache_get_ip4(struct dst_cache *dst_cache, __be32 *saddr)
return NULL;
*saddr = idst->in_saddr.s_addr;
- return container_of(dst, struct rtable, dst);
+ return dst_rtable(dst);
}
EXPORT_SYMBOL_GPL(dst_cache_get_ip4);
diff --git a/net/core/filter.c b/net/core/filter.c
index 03c1fdd111f25..a5856a8b4498b 100644
--- a/net/core/filter.c
+++ b/net/core/filter.c
@@ -2314,8 +2314,7 @@ static int bpf_out_neigh_v4(struct net *net, struct sk_buff *skb,
rcu_read_lock();
if (!nh) {
- struct dst_entry *dst = skb_dst(skb);
- struct rtable *rt = container_of(dst, struct rtable, dst);
+ struct rtable *rt = skb_rtable(skb);
neigh = ip_neigh_for_gw(rt, skb, &is_v6gw);
} else if (nh->nh_family == AF_INET6) {
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c
index c6bebca49591f..5622ddd3bf55b 100644
--- a/net/ipv4/af_inet.c
+++ b/net/ipv4/af_inet.c
@@ -1308,8 +1308,8 @@ static int inet_sk_reselect_saddr(struct sock *sk)
int inet_sk_rebuild_header(struct sock *sk)
{
+ struct rtable *rt = dst_rtable(__sk_dst_check(sk, 0));
struct inet_sock *inet = inet_sk(sk);
- struct rtable *rt = (struct rtable *)__sk_dst_check(sk, 0);
__be32 daddr;
struct ip_options_rcu *inet_opt;
struct flowi4 *fl4;
diff --git a/net/ipv4/icmp.c b/net/ipv4/icmp.c
index 437e782b9663b..207482d30dc7e 100644
--- a/net/ipv4/icmp.c
+++ b/net/ipv4/icmp.c
@@ -483,6 +483,7 @@ static struct rtable *icmp_route_lookup(struct net *net,
struct icmp_bxm *param)
{
struct net_device *route_lookup_dev;
+ struct dst_entry *dst, *dst2;
struct rtable *rt, *rt2;
struct flowi4 fl4_dec;
int err;
@@ -508,16 +509,17 @@ static struct rtable *icmp_route_lookup(struct net *net,
/* No need to clone since we're just using its address. */
rt2 = rt;
- rt = (struct rtable *) xfrm_lookup(net, &rt->dst,
- flowi4_to_flowi(fl4), NULL, 0);
- if (!IS_ERR(rt)) {
+ dst = xfrm_lookup(net, &rt->dst,
+ flowi4_to_flowi(fl4), NULL, 0);
+ rt = dst_rtable(dst);
+ if (!IS_ERR(dst)) {
if (rt != rt2)
return rt;
- } else if (PTR_ERR(rt) == -EPERM) {
+ } else if (PTR_ERR(dst) == -EPERM) {
rt = NULL;
- } else
+ } else {
return rt;
-
+ }
err = xfrm_decode_session_reverse(net, skb_in, flowi4_to_flowi(&fl4_dec), AF_INET);
if (err)
goto relookup_failed;
@@ -551,19 +553,19 @@ static struct rtable *icmp_route_lookup(struct net *net,
if (err)
goto relookup_failed;
- rt2 = (struct rtable *) xfrm_lookup(net, &rt2->dst,
- flowi4_to_flowi(&fl4_dec), NULL,
- XFRM_LOOKUP_ICMP);
- if (!IS_ERR(rt2)) {
+ dst2 = xfrm_lookup(net, &rt2->dst, flowi4_to_flowi(&fl4_dec), NULL,
+ XFRM_LOOKUP_ICMP);
+ rt2 = dst_rtable(dst2);
+ if (!IS_ERR(dst2)) {
dst_release(&rt->dst);
memcpy(fl4, &fl4_dec, sizeof(*fl4));
rt = rt2;
- } else if (PTR_ERR(rt2) == -EPERM) {
+ } else if (PTR_ERR(dst2) == -EPERM) {
if (rt)
dst_release(&rt->dst);
return rt2;
} else {
- err = PTR_ERR(rt2);
+ err = PTR_ERR(dst2);
goto relookup_failed;
}
return rt;
diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c
index 5e9c8156656a7..d6fbcbd2358a5 100644
--- a/net/ipv4/ip_input.c
+++ b/net/ipv4/ip_input.c
@@ -616,7 +616,7 @@ static void ip_list_rcv_finish(struct net *net, struct sock *sk,
dst = skb_dst(skb);
if (curr_dst != dst) {
hint = ip_extract_route_hint(net, skb,
- ((struct rtable *)dst)->rt_type);
+ dst_rtable(dst)->rt_type);
/* dispatch old sublist */
if (!list_empty(&sublist))
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
index 39229fd0601a1..9500031a1f55b 100644
--- a/net/ipv4/ip_output.c
+++ b/net/ipv4/ip_output.c
@@ -198,7 +198,7 @@ EXPORT_SYMBOL_GPL(ip_build_and_send_pkt);
static int ip_finish_output2(struct net *net, struct sock *sk, struct sk_buff *skb)
{
struct dst_entry *dst = skb_dst(skb);
- struct rtable *rt = (struct rtable *)dst;
+ struct rtable *rt = dst_rtable(dst);
struct net_device *dev = dst->dev;
unsigned int hh_len = LL_RESERVED_SPACE(dev);
struct neighbour *neigh;
@@ -475,7 +475,7 @@ int __ip_queue_xmit(struct sock *sk, struct sk_buff *skb, struct flowi *fl,
goto packet_routed;
/* Make sure we can route this packet. */
- rt = (struct rtable *)__sk_dst_check(sk, 0);
+ rt = dst_rtable(__sk_dst_check(sk, 0));
if (!rt) {
__be32 daddr;
@@ -971,7 +971,7 @@ static int __ip_append_data(struct sock *sk,
bool zc = false;
unsigned int maxfraglen, fragheaderlen, maxnonfragsize;
int csummode = CHECKSUM_NONE;
- struct rtable *rt = (struct rtable *)cork->dst;
+ struct rtable *rt = dst_rtable(cork->dst);
bool paged, hold_tskey, extra_uref = false;
unsigned int wmem_alloc_delta = 0;
u32 tskey = 0;
@@ -1390,7 +1390,7 @@ struct sk_buff *__ip_make_skb(struct sock *sk,
struct inet_sock *inet = inet_sk(sk);
struct net *net = sock_net(sk);
struct ip_options *opt = NULL;
- struct rtable *rt = (struct rtable *)cork->dst;
+ struct rtable *rt = dst_rtable(cork->dst);
struct iphdr *iph;
u8 pmtudisc, ttl;
__be16 df = 0;
diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index b814fdab19f71..12738051ebea7 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -831,7 +831,7 @@ static void ip_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buf
u32 mark = skb->mark;
__u8 tos = iph->tos;
- rt = (struct rtable *) dst;
+ rt = dst_rtable(dst);
__build_flow_key(net, &fl4, sk, iph, oif, tos, prot, mark, 0);
__ip_do_redirect(rt, skb, &fl4, true);
@@ -839,7 +839,7 @@ static void ip_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buf
static struct dst_entry *ipv4_negative_advice(struct dst_entry *dst)
{
- struct rtable *rt = (struct rtable *)dst;
+ struct rtable *rt = dst_rtable(dst);
struct dst_entry *ret = dst;
if (rt) {
@@ -1056,7 +1056,7 @@ static void ip_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
struct sk_buff *skb, u32 mtu,
bool confirm_neigh)
{
- struct rtable *rt = (struct rtable *) dst;
+ struct rtable *rt = dst_rtable(dst);
struct flowi4 fl4;
ip_rt_build_flow_key(&fl4, sk, skb);
@@ -1127,7 +1127,7 @@ void ipv4_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, u32 mtu)
__build_flow_key(net, &fl4, sk, iph, 0, 0, 0, 0, 0);
- rt = (struct rtable *)odst;
+ rt = dst_rtable(odst);
if (odst->obsolete && !odst->ops->check(odst, 0)) {
rt = ip_route_output_flow(sock_net(sk), &fl4, sk);
if (IS_ERR(rt))
@@ -1136,7 +1136,7 @@ void ipv4_sk_update_pmtu(struct sk_buff *skb, struct sock *sk, u32 mtu)
new = true;
}
- __ip_rt_update_pmtu((struct rtable *)xfrm_dst_path(&rt->dst), &fl4, mtu);
+ __ip_rt_update_pmtu(dst_rtable(xfrm_dst_path(&rt->dst)), &fl4, mtu);
if (!dst_check(&rt->dst, 0)) {
if (new)
@@ -1193,7 +1193,7 @@ EXPORT_SYMBOL_GPL(ipv4_sk_redirect);
INDIRECT_CALLABLE_SCOPE struct dst_entry *ipv4_dst_check(struct dst_entry *dst,
u32 cookie)
{
- struct rtable *rt = (struct rtable *) dst;
+ struct rtable *rt = dst_rtable(dst);
/* All IPV4 dsts are created with ->obsolete set to the value
* DST_OBSOLETE_FORCE_CHK which forces validation calls down
@@ -1528,10 +1528,8 @@ void rt_del_uncached_list(struct rtable *rt)
static void ipv4_dst_destroy(struct dst_entry *dst)
{
- struct rtable *rt = (struct rtable *)dst;
-
ip_dst_metrics_put(dst);
- rt_del_uncached_list(rt);
+ rt_del_uncached_list(dst_rtable(dst));
}
void rt_flush_dev(struct net_device *dev)
@@ -2832,7 +2830,7 @@ static struct dst_ops ipv4_dst_blackhole_ops = {
struct dst_entry *ipv4_blackhole_route(struct net *net, struct dst_entry *dst_orig)
{
- struct rtable *ort = (struct rtable *) dst_orig;
+ struct rtable *ort = dst_rtable(dst_orig);
struct rtable *rt;
rt = dst_alloc(&ipv4_dst_blackhole_ops, NULL, DST_OBSOLETE_DEAD, 0);
@@ -2877,9 +2875,9 @@ struct rtable *ip_route_output_flow(struct net *net, struct flowi4 *flp4,
if (flp4->flowi4_proto) {
flp4->flowi4_oif = rt->dst.dev->ifindex;
- rt = (struct rtable *)xfrm_lookup_route(net, &rt->dst,
- flowi4_to_flowi(flp4),
- sk, 0);
+ rt = dst_rtable(xfrm_lookup_route(net, &rt->dst,
+ flowi4_to_flowi(flp4),
+ sk, 0));
}
return rt;
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
index b5ad0c527c521..72d3bf136810d 100644
--- a/net/ipv4/udp.c
+++ b/net/ipv4/udp.c
@@ -1218,7 +1218,7 @@ int udp_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
}
if (connected)
- rt = (struct rtable *)sk_dst_check(sk, 0);
+ rt = dst_rtable(sk_dst_check(sk, 0));
if (!rt) {
struct net *net = sock_net(sk);
diff --git a/net/ipv4/xfrm4_policy.c b/net/ipv4/xfrm4_policy.c
index c33bca2c38415..1853a8415d9f1 100644
--- a/net/ipv4/xfrm4_policy.c
+++ b/net/ipv4/xfrm4_policy.c
@@ -69,7 +69,7 @@ static int xfrm4_get_saddr(struct net *net, int oif,
static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
const struct flowi *fl)
{
- struct rtable *rt = (struct rtable *)xdst->route;
+ struct rtable *rt = dst_rtable(xdst->route);
const struct flowi4 *fl4 = &fl->u.ip4;
xdst->u.rt.rt_iif = fl4->flowi4_iif;
diff --git a/net/l2tp/l2tp_ip.c b/net/l2tp/l2tp_ip.c
index 970af3983d116..19c8cc5289d59 100644
--- a/net/l2tp/l2tp_ip.c
+++ b/net/l2tp/l2tp_ip.c
@@ -459,7 +459,7 @@ static int l2tp_ip_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
fl4 = &inet->cork.fl.u.ip4;
if (connected)
- rt = (struct rtable *)__sk_dst_check(sk, 0);
+ rt = dst_rtable(__sk_dst_check(sk, 0));
rcu_read_lock();
if (!rt) {
diff --git a/net/mpls/mpls_iptunnel.c b/net/mpls/mpls_iptunnel.c
index 606349c8df0e6..4385fd3b13be3 100644
--- a/net/mpls/mpls_iptunnel.c
+++ b/net/mpls/mpls_iptunnel.c
@@ -81,7 +81,7 @@ static int mpls_xmit(struct sk_buff *skb)
ttl = net->mpls.default_ttl;
else
ttl = ip_hdr(skb)->ttl;
- rt = (struct rtable *)dst;
+ rt = dst_rtable(dst);
} else if (dst->ops->family == AF_INET6) {
if (tun_encap_info->ttl_propagate == MPLS_TTL_PROP_DISABLED)
ttl = tun_encap_info->default_ttl;
diff --git a/net/netfilter/ipvs/ip_vs_xmit.c b/net/netfilter/ipvs/ip_vs_xmit.c
index 5cd511162bc03..e1f17392f58c1 100644
--- a/net/netfilter/ipvs/ip_vs_xmit.c
+++ b/net/netfilter/ipvs/ip_vs_xmit.c
@@ -318,7 +318,7 @@ __ip_vs_get_out_rt(struct netns_ipvs *ipvs, int skb_af, struct sk_buff *skb,
if (dest) {
dest_dst = __ip_vs_dst_check(dest);
if (likely(dest_dst))
- rt = (struct rtable *) dest_dst->dst_cache;
+ rt = dst_rtable(dest_dst->dst_cache);
else {
dest_dst = ip_vs_dest_dst_alloc();
spin_lock_bh(&dest->dst_lock);
diff --git a/net/netfilter/nf_flow_table_ip.c b/net/netfilter/nf_flow_table_ip.c
index 100887beed314..c2c005234dcd3 100644
--- a/net/netfilter/nf_flow_table_ip.c
+++ b/net/netfilter/nf_flow_table_ip.c
@@ -434,7 +434,7 @@ nf_flow_offload_ip_hook(void *priv, struct sk_buff *skb,
return NF_ACCEPT;
if (unlikely(tuplehash->tuple.xmit_type == FLOW_OFFLOAD_XMIT_XFRM)) {
- rt = (struct rtable *)tuplehash->tuple.dst_cache;
+ rt = dst_rtable(tuplehash->tuple.dst_cache);
memset(skb->cb, 0, sizeof(struct inet_skb_parm));
IPCB(skb)->iif = skb->dev->ifindex;
IPCB(skb)->flags = IPSKB_FORWARDED;
@@ -446,7 +446,7 @@ nf_flow_offload_ip_hook(void *priv, struct sk_buff *skb,
switch (tuplehash->tuple.xmit_type) {
case FLOW_OFFLOAD_XMIT_NEIGH:
- rt = (struct rtable *)tuplehash->tuple.dst_cache;
+ rt = dst_rtable(tuplehash->tuple.dst_cache);
outdev = rt->dst.dev;
skb->dev = outdev;
nexthop = rt_nexthop(rt, flow->tuplehash[!dir].tuple.src_v4.s_addr);
diff --git a/net/netfilter/nft_rt.c b/net/netfilter/nft_rt.c
index 2434c624aafde..14d88394bcb7f 100644
--- a/net/netfilter/nft_rt.c
+++ b/net/netfilter/nft_rt.c
@@ -73,7 +73,7 @@ void nft_rt_get_eval(const struct nft_expr *expr,
if (nft_pf(pkt) != NFPROTO_IPV4)
goto err;
- *dest = (__force u32)rt_nexthop((const struct rtable *)dst,
+ *dest = (__force u32)rt_nexthop(dst_rtable(dst),
ip_hdr(skb)->daddr);
break;
case NFT_RT_NEXTHOP6:
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index e849f368ed913..5a7436a13b741 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -552,7 +552,7 @@ static void sctp_v4_get_saddr(struct sctp_sock *sk,
struct flowi *fl)
{
union sctp_addr *saddr = &t->saddr;
- struct rtable *rt = (struct rtable *)t->dst;
+ struct rtable *rt = dst_rtable(t->dst);
if (rt) {
saddr->v4.sin_family = AF_INET;
@@ -1085,7 +1085,7 @@ static inline int sctp_v4_xmit(struct sk_buff *skb, struct sctp_transport *t)
skb_reset_inner_mac_header(skb);
skb_reset_inner_transport_header(skb);
skb_set_inner_ipproto(skb, IPPROTO_SCTP);
- udp_tunnel_xmit_skb((struct rtable *)dst, sk, skb, fl4->saddr,
+ udp_tunnel_xmit_skb(dst_rtable(dst), sk, skb, fl4->saddr,
fl4->daddr, dscp, ip4_dst_hoplimit(dst), df,
sctp_sk(sk)->udp_port, t->encap_port, false, false);
return 0;
diff --git a/net/tipc/udp_media.c b/net/tipc/udp_media.c
index f892b0903dbaf..b849a3d133a01 100644
--- a/net/tipc/udp_media.c
+++ b/net/tipc/udp_media.c
@@ -174,7 +174,7 @@ static int tipc_udp_xmit(struct net *net, struct sk_buff *skb,
local_bh_disable();
ndst = dst_cache_get(cache);
if (dst->proto == htons(ETH_P_IP)) {
- struct rtable *rt = (struct rtable *)ndst;
+ struct rtable *rt = dst_rtable(ndst);
if (!rt) {
struct flowi4 fl = {
--
2.43.0
next prev parent reply other threads:[~2024-06-06 14:11 UTC|newest]
Thread overview: 388+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-06 13:59 [PATCH 6.9 000/374] 6.9.4-rc1 review Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 001/374] perf build: Fix out of tree build related to installation of sysreg-defs Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 002/374] perf record: Delete session after stopping sideband thread Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 003/374] perf test: Use a single fd for the child process out/err Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 004/374] perf probe: Add missing libgen.h header needed for using basename() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 005/374] iio: core: Leave private pointer NULL when no private data supplied Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 006/374] greybus: lights: check return of get_channel_from_mode Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 007/374] dt-bindings: pinctrl: qcom: update functions to match with driver Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 008/374] f2fs: multidev: fix to recognize valid zero block address Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 009/374] f2fs: fix to wait on page writeback in __clone_blkaddrs() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 010/374] fpga: manager: add owner module and take its refcount Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 011/374] fpga: bridge: " Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 012/374] counter: linux/counter.h: fix Excess kernel-doc description warning Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 013/374] perf annotate: Get rid of duplicate --group option item Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 014/374] perf sched timehist: Fix -g/--call-graph option failure Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 015/374] usb: typec: ucsi: allow non-partner GET_PDOS for Qualcomm devices Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 016/374] usb: typec: ucsi: always register a link to USB PD device Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 017/374] usb: typec: ucsi: simplify partners PD caps registration Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 018/374] perf report: Fix PAI counter names for s390 virtual machines Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 019/374] perf stat: Do not fail on metrics on s390 z/VM systems Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.9 020/374] soundwire: cadence: fix invalid PDI offset Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 021/374] dmaengine: idma64: Add check for dma_set_max_seg_size Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 022/374] firmware: dmi-id: add a release callback function Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 023/374] perf annotate: Fix annotation_calc_lines() to pass correct address to get_srcline() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 024/374] serial: max3100: Lock port->lock when calling uart_handle_cts_change() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 025/374] serial: max3100: Update uart_driver_registered on driver removal Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 026/374] serial: max3100: Fix bitwise types Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 027/374] greybus: arche-ctrl: move device table to its right location Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 028/374] PCI: dwc: ep: Fix DBI access failure for drivers requiring refclk from host Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 029/374] PCI: tegra194: Fix probe path for Endpoint mode Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 030/374] serial: sc16is7xx: add proper sched.h include for sched_set_fifo() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 031/374] module: dont ignore sysfs_create_link() failures Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 032/374] interconnect: qcom: qcm2290: Fix mas_snoc_bimc QoS port assignment Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 033/374] arm64: dts: meson: fix S4 power-controller node Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 034/374] perf tests: Make "test data symbol" more robust on Neoverse N1 Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 035/374] perf tests: Apply attributes to all events in object code reading test Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 036/374] perf map: Remove kernel map before updating start and end addresses Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 037/374] perf record: Fix debug message placement for test consumption Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 038/374] dt-bindings: PCI: rcar-pci-host: Add missing IOMMU properties Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 039/374] perf bench uprobe: Remove lib64 from libc.so.6 binary path Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 040/374] f2fs: compress: fix to relocate check condition in f2fs_{release,reserve}_compress_blocks() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 041/374] f2fs: compress: fix to relocate check condition in f2fs_ioc_{,de}compress_file() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 042/374] f2fs: fix to relocate check condition in f2fs_fallocate() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 043/374] f2fs: fix to check pinfile flag in f2fs_move_file_range() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 044/374] f2fs: write missing last sum blk of file pinning section Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 045/374] iio: adc: stm32: Fixing err code to not indicate success Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 046/374] riscv: dts: starfive: visionfive 2: Remove non-existing TDM hardware Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 047/374] riscv: dts: starfive: visionfive 2: Remove non-existing I2S hardware Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 048/374] remove call_{read,write}_iter() functions Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 049/374] coresight: etm4x: Fix unbalanced pm_runtime_enable() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 050/374] perf dwarf-aux: Check pointer offset when checking variables Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 051/374] perf docs: Document bpf event modifier Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 052/374] perf test shell arm_coresight: Increase buffer size for Coresight basic tests Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 053/374] iio: pressure: dps310: support negative temperature values Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 054/374] iio: adc: adi-axi-adc: only error out in major version mismatch Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 055/374] coresight: etm4x: Do not hardcode IOMEM access for register restore Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 056/374] coresight: etm4x: Do not save/restore Data trace control registers Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 057/374] coresight: etm4x: Safe access for TRCQCLTR Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 058/374] coresight: etm4x: Fix access to resource selector registers Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 059/374] vfio/pci: fix potential memory leak in vfio_intx_enable() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 060/374] fpga: region: add owner module and take its refcount Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 061/374] pinctrl: renesas: r8a779h0: Fix IRQ suffixes Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 062/374] udf: Convert udf_expand_file_adinicb() to use a folio Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 063/374] microblaze: Remove gcc flag for non existing early_printk.c file Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 064/374] microblaze: Remove early printk call from cpuinfo-static.c Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 065/374] pinctrl: renesas: rzg2l: Limit 2.5V power supply to Ethernet interfaces Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 066/374] PCI: Wait for Link Training==0 before starting Link retrain Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 067/374] perf intel-pt: Fix unassigned instruction op (discovered by MemorySanitizer) Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 068/374] riscv: Flush the instruction cache during SMP bringup Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 069/374] docs: iio: adis16475: fix device files tables Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 070/374] usb: xhci: check if requested segments exceeds ERST capacity Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 071/374] leds: pwm: Disable PWM when going to suspend Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 072/374] ovl: remove upper umask handling from ovl_create_upper() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 073/374] PCI: of_property: Return error for int_map allocation failure Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 074/374] VMCI: Fix an error handling path in vmci_guest_probe_device() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 075/374] dt-bindings: pinctrl: mediatek: mt7622: fix array properties Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 076/374] pinctrl: qcom: pinctrl-sm7150: Fix sdc1 and ufs special pins regs Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 077/374] iio: adc: PAC1934: fix accessing out of bounds array index Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 078/374] watchdog: cpu5wdt.c: Fix use-after-free bug caused by cpu5wdt_trigger Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 079/374] watchdog: bd9576: Drop "always-running" property Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.9 080/374] watchdog: sa1100: Fix PTR_ERR_OR_ZERO() vs NULL check in sa1100dog_probe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 081/374] dt-bindings: phy: qcom,sc8280xp-qmp-pcie-phy: fix x1e80100-gen3x2 schema Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 082/374] dt-bindings: phy: qcom,sc8280xp-qmp-ufs-phy: fix msm899[68] power-domains Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 083/374] dt-bindings: phy: qcom,usb-snps-femto-v2: use correct fallback for sc8180x Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 084/374] dmaengine: idxd: Avoid unnecessary destruction of file_ida Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 085/374] usb: gadget: u_audio: Fix race condition use of controls after free during gadget unbind Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 086/374] usb: gadget: u_audio: Clear uac pointer when freed Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 087/374] stm class: Fix a double free in stm_register_device() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 088/374] ppdev: Add an error check in register_device Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 089/374] i2c: cadence: Avoid fifo clear after start Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 090/374] i2c: synquacer: Fix an error handling path in synquacer_i2c_probe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 091/374] perf bench internals inject-build-id: Fix trap divide when collecting just one DSO Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 092/374] perf ui browser: Dont save pointer to stack memory Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 093/374] perf annotate: Fix memory leak in annotated_source Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 094/374] extcon: max8997: select IRQ_DOMAIN instead of depending on it Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 095/374] spmi: pmic-arb: Replace three IS_ERR() calls by null pointer checks in spmi_pmic_arb_probe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 096/374] PCI/EDR: Align EDR_PORT_DPC_ENABLE_DSM with PCI Firmware r3.3 Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 097/374] PCI/EDR: Align EDR_PORT_LOCATE_DSM " Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 098/374] f2fs: fix block migration when section is not aligned to pow2 Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 099/374] perf ui browser: Avoid SEGV on title Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 100/374] perf report: Avoid SEGV in report__setup_sample_type() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 101/374] perf thread: Fixes to thread__new() related to initializing comm Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 102/374] perf dwarf-aux: Add die_collect_vars() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 103/374] perf dwarf-aux: Fix build with HAVE_DWARF_CFI_SUPPORT Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 104/374] perf symbols: Remove map from list before updating addresses Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 105/374] perf symbols: Update kcore map before merging in remaining symbols Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 106/374] perf symbols: Fix ownership of string in dso__load_vmlinux() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 107/374] f2fs: compress: fix to update i_compr_blocks correctly Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 108/374] f2fs: compress: fix error path of inc_valid_block_count() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 109/374] f2fs: compress: fix to cover {reserve,release}_compress_blocks() w/ cp_rwsem lock Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 110/374] f2fs: fix to release node block count in error path of f2fs_new_node_page() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 111/374] f2fs: compress: dont allow unaligned truncation on released compress inode Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 112/374] fuse: set FR_PENDING atomically in fuse_resend() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 113/374] fuse: clear FR_SENT when re-adding requests into pending list Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 114/374] serial: sh-sci: protect invalidating RXDMA on shutdown Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 115/374] libsubcmd: Fix parse-options memory leak Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 116/374] perf daemon: Fix file leak in daemon_session__control Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 117/374] backlight: mp3309c: Fix signedness bug in mp3309c_parse_fwnode() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 118/374] f2fs: fix to add missing iput() in gc_data_segment() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 119/374] usb: fotg210: Add missing kernel doc description Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 120/374] perf annotate: Fix segfault on sample histogram Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 121/374] perf stat: Dont display metric header for non-leader uncore events Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 122/374] perf tools: Use pmus to describe type from attribute Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 123/374] perf tools: Add/use PMU reverse lookup from config to name Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 124/374] perf pmu: Assume sysfs events are always the same case Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 125/374] perf pmu: Count sys and cpuid JSON events separately Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 126/374] LoongArch: Fix callchain parse error with kernel tracepoint events again Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 127/374] s390/vdso: Generate unwind information for C modules Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 128/374] s390/vdso: Create .build-id links for unstripped vdso files Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 129/374] s390/vdso: Use standard stack frame layout Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 130/374] s390/ftrace: Use unwinder instead of __builtin_return_address() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 131/374] s390/stacktrace: Merge perf_callchain_user() and arch_stack_walk_user() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 132/374] s390/stacktrace: Skip first user stack frame Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 133/374] s390/stacktrace: Improve detection of invalid instruction pointers Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 134/374] s390/vdso: Introduce and use struct stack_frame_vdso_wrapper Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 135/374] s390/stackstrace: Detect vdso stack frames Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 136/374] s390/ipl: Fix incorrect initialization of len fields in nvme reipl block Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 137/374] s390/ipl: Fix incorrect initialization of nvme dump block Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 138/374] s390/ap: Fix bind complete udev event sent after each AP bus scan Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 139/374] s390/boot: Remove alt_stfle_fac_list from decompressor Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.9 140/374] dt-bindings: PCI: rockchip,rk3399-pcie: Add missing maxItems to ep-gpios Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 141/374] Revert "selftests/harness: remove use of LINE_MAX" Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 142/374] ocfs2: correctly use ocfs2_find_next_zero_bit() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 143/374] selftests/harness: use 1024 in place of LINE_MAX Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 144/374] mailbox: mtk-cmdq: Fix pm_runtime_get_sync() warning in mbox shutdown Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 145/374] gpiolib: acpi: Fix failed in acpi_gpiochip_find() by adding parent node match Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 146/374] Input: ims-pcu - fix printf string overflow Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 147/374] Input: ioc3kbd - add device table Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 148/374] mmc: sdhci_am654: Add tuning algorithm for delay chain Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 149/374] mmc: sdhci_am654: Write ITAPDLY for DDR52 timing Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 150/374] mmc: sdhci_am654: Add OTAP/ITAP delay enable Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 151/374] mmc: sdhci_am654: Add ITAPDLYSEL in sdhci_j721e_4bit_set_clock Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 152/374] mmc: sdhci_am654: Fix ITAPDLY for HS400 timing Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 153/374] x86/percpu: Unify arch_raw_cpu_ptr() defines Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 154/374] x86/percpu: Use __force to cast from __percpu address space Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 155/374] phy: qcom: qmp-combo: fix sm8650 voltage swing table Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 156/374] Input: pm8xxx-vibrator - correct VIB_MAX_LEVELS calculation Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 157/374] media: ti: j721e-csi2rx: Fix races while restarting DMA Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 158/374] media: v4l: Dont turn on privacy LED if streamon fails Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 159/374] media: ov2680: Clear the ret variable on success Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 160/374] media: ov2680: Allow probing if link-frequencies is absent Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 161/374] media: ov2680: Do not fail if data-lanes property " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 162/374] drm/msm/dsi: Print dual-DSI-adjusted pclk instead of original mode pclk Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 163/374] drm/msm/dpu: Always flush the slave INTF on the CTL Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 164/374] drm/msm/dpu: Allow configuring multiple active DSC blocks Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 165/374] drm/mediatek: dp: Fix mtk_dp_aux_transfer return value Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 166/374] drm/meson: gate px_clk when setting rate Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 167/374] um: Fix return value in ubd_init() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 168/374] um: Add winch to winch_handlers before registering winch IRQ Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 169/374] um: vector: fix bpfflash parameter evaluation Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 170/374] fs/ntfs3: Check folio pointer for NULL Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 171/374] fs/ntfs3: Use 64 bit variable to avoid 32 bit overflow Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 172/374] fs/ntfs3: Use variable length array instead of fixed size Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 173/374] drm/msm/dpu: Add callback function pointer check before its call Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 174/374] drm/bridge: tc358775: fix support for jeida-18 and jeida-24 Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 175/374] media: stk1160: fix bounds checking in stk1160_copy_video() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 176/374] drm: Make drivers depends on DRM_DW_HDMI Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 177/374] drm/bridge: imx: Fix unmet depenency for PHY_FSL_SAMSUNG_HDMI_PHY Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 178/374] string_kunit: Add test cases for str*cmp functions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 179/374] string: Prepare to merge strscpy_kunit.c into string_kunit.c Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 180/374] string: Prepare to merge strcat KUnit tests " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 181/374] Input: cyapa - add missing input core locking to suspend/resume functions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 182/374] drm/amdgpu: init microcode chip name from ip versions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 183/374] drm/amdgpu: Fix buffer size in gfx_v9_4_3_init_ cp_compute_microcode() and rlc_microcode() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 184/374] media: mediatek: vcodec: fix possible unbalanced PM counter Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 185/374] tools/arch/x86/intel_sdsi: Fix maximum meter bundle length Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 186/374] tools/arch/x86/intel_sdsi: Fix meter_show display Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 187/374] tools/arch/x86/intel_sdsi: Fix meter_certificate decoding Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 188/374] platform/x86: thinkpad_acpi: Take hotkey_mutex during hotkey_exit() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 189/374] media: flexcop-usb: fix sanity check of bNumEndpoints Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 190/374] powerpc/pseries: Add failure related checks for h_get_mpp and h_get_ppp Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 191/374] ASoC: SOF: debug: Handle cases when fw_lib_prefix is not set, NULL Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 192/374] um: Fix the -Wmissing-prototypes warning for __switch_mm Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 193/374] um: Fix the -Wmissing-prototypes warning for get_thread_reg Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 194/374] um: Fix the declaration of kasan_map_memory Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 195/374] cxl/trace: Correct DPA field masks for general_media & dram events Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 196/374] cxl/region: Fix cxlr_pmem leaks Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 197/374] media: sunxi: a83-mips-csi2: also select GENERIC_PHY Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 198/374] media: cec: cec-adap: always cancel work in cec_transmit_msg_fh Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 199/374] media: cec: cec-api: add locking in cec_release() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.9 200/374] media: cec: core: avoid recursive cec_claim_log_addrs Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 201/374] media: cec: core: avoid confusing "transmit timed out" message Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 202/374] Revert "drm/bridge: ti-sn65dsi83: Fix enable error path" Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 203/374] drm: zynqmp_dpsub: Always register bridge Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 204/374] ASoC: amd: acp: fix for acp platform device creation failure Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 205/374] selftests/powerpc/dexcr: Add -no-pie to hashchk tests Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 206/374] drm/msm/adreno: fix CP cycles stat retrieval on a7xx Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 207/374] drm/msm/a6xx: Avoid a nullptr dereference when speedbin setting fails Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 208/374] ASoC: tas2781: Fix a warning reported by robot kernel test Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 209/374] null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 210/374] printk: Fix LOG_CPU_MAX_BUF_SHIFT when BASE_SMALL is enabled Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 211/374] powerpc/bpf/32: Fix failing test_bpf tests Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 212/374] KVM: PPC: Book3S HV nestedv2: Cancel pending DEC exception Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 213/374] KVM: PPC: Book3S HV nestedv2: Fix an error handling path in gs_msg_ops_kvmhv_nestedv2_config_fill_info() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 214/374] KVM: arm64: Destroy mpidr_data for late vCPU creation Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 215/374] nilfs2: make superblock data array index computation sparse friendly Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 216/374] ALSA: hda/cs_dsp_ctl: Use private_free for control cleanup Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 217/374] ALSA: hda: hda_component: Initialize shared data during bind callback Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 218/374] ALSA: hda: cs35l56: Fix lifetime of cs_dsp instance Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 219/374] ASoC: mediatek: mt8192: fix register configuration for tdm Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 220/374] ASoC: rt715-sdca-sdw: Fix wrong complete waiting in rt715_dev_resume() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 221/374] ALSA: hda/realtek: Drop doubly quirk entry for 103c:8a2e Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 222/374] drm/nouveau: use tile_mode and pte_kind for VM_BIND bo allocations Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 223/374] Bluetooth: ISO: Handle PA sync when no BIGInfo reports are generated Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 224/374] Bluetooth: L2CAP: Fix div-by-zero in l2cap_le_flowctl_init() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 225/374] blk-cgroup: fix list corruption from resetting io stat Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 226/374] blk-cgroup: fix list corruption from reorder of WRITE ->lqueued Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 227/374] blk-cgroup: Properly propagate the iostat update up the hierarchy Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 228/374] regulator: bd71828: Dont overwrite runtime voltages Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 229/374] xen/x86: add extra pages to unpopulated-alloc if available Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 230/374] perf/arm-dmc620: Fix lockdep assert in ->event_init() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 231/374] ubsan: Restore dependency on ARCH_HAS_UBSAN Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 232/374] x86/kconfig: Select ARCH_WANT_FRAME_POINTERS again when UNWINDER_FRAME_POINTER=y Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 233/374] net: Always descend into dsa/ folder with CONFIG_NET_DSA enabled Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 234/374] ipv6: sr: fix missing sk_buff release in seg6_input_core Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 235/374] selftests: net: kill smcrouted in the cleanup logic in amt.sh Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 236/374] nfc: nci: Fix uninit-value in nci_rx_work Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 237/374] ASoC: tas2552: Add TX path for capturing AUDIO-OUT data Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 238/374] ASoC: tas2781: Fix wrong loading calibrated data sequence Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 239/374] NFSv4: Fixup smatch warning for ambiguous return Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 240/374] nfs: keep server info for remounts Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 241/374] sunrpc: fix NFSACL RPC retry on soft mount Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 242/374] rpcrdma: fix handling for RDMA_CM_EVENT_DEVICE_REMOVAL Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 243/374] regulator: pickable ranges: dont always cache vsel Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 244/374] regulator: tps6287x: Force writing VSEL bit Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 245/374] af_unix: Update unix_sk(sk)->oob_skb under sk_receive_queue lock Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 246/374] ipv6: sr: fix memleak in seg6_hmac_init_algo Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 247/374] selftests: forwarding: Change inappropriate log_test_skip() calls Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 248/374] selftests: forwarding: Have RET track kselftest framework constants Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 249/374] selftests: forwarding: Convert log_test() to recognize RET values Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 250/374] selftests: net: Unify code of busywait() and slowwait() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 251/374] selftests/net: use tc rule to filter the na packet Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 252/374] regulator: tps6594-regulator: Correct multi-phase configuration Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 253/374] tcp: Fix shift-out-of-bounds in dctcp_update_alpha() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 254/374] pNFS/filelayout: fixup pNfs allocation modes Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 255/374] openvswitch: Set the skbuff pkt_type for proper pmtud support Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 256/374] arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 257/374] rv: Update rv_en(dis)able_monitor doc to match kernel-doc Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 258/374] net: lan966x: Remove ptp traps in case the ptp is not enabled Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 259/374] virtio_balloon: Give the balloon its own wakeup source Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.9 260/374] virtio: delete vq in vp_find_vqs_msix() when request_irq() fails Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 261/374] riscv: cpufeature: Fix thead vector hwcap removal Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 262/374] riscv: cpufeature: Fix extension subset checking Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 263/374] i3c: master: svc: change ENXIO to EAGAIN when IBI occurs during start frame Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 264/374] riscv: stacktrace: fixed walk_stackframe() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 265/374] riscv: selftests: Add hwprobe binaries to .gitignore Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 266/374] Revert "ixgbe: Manual AN-37 for troublesome link partners for X550 SFI" Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 267/374] net: fec: avoid lock evasion when reading pps_enable Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 268/374] tls: fix missing memory barrier in tls_init Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 269/374] tcp: remove 64 KByte limit for initial tp->rcv_wnd value Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 270/374] net: relax socket state check at accept time Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 271/374] nfc: nci: Fix handling of zero-length payload packets in nci_rx_work() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 272/374] drivers/xen: Improve the late XenStore init protocol Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 273/374] ice: Interpret .set_channels() input differently Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 274/374] idpf: " Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 275/374] null_blk: fix null-ptr-dereference while configuring power and submit_queues Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 276/374] netfs: Fix setting of BDP_ASYNC from iocb flags Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 277/374] kasan, fortify: properly rename memintrinsics Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 278/374] cifs: Set zero_point in the copy_file_range() and remap_file_range() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 279/374] cifs: Fix missing set of remote_i_size Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 280/374] tracing/probes: fix error check in parse_btf_field() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 281/374] tpm_tis_spi: Account for SPI header when allocating TPM SPI xfer buffer Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 282/374] tcp: reduce accepted window in NEW_SYN_RECV state Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 283/374] netfilter: nfnetlink_queue: acquire rcu_read_lock() in instance_destroy_rcu() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 284/374] netfilter: ipset: Add list flush to cancel_gc Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 285/374] netfilter: nft_payload: restore vlan q-in-q match support Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 286/374] spi: Dont mark message DMA mapped when no transfer in it is Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 287/374] spi: stm32: Revert change that enabled controller before asserting CS Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 288/374] dma-mapping: benchmark: fix up kthread-related error handling Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 289/374] dma-mapping: benchmark: fix node id validation Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 290/374] dma-mapping: benchmark: handle NUMA_NO_NODE correctly Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 291/374] nvme: fix multipath batched completion accounting Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 292/374] nvme-multipath: fix io accounting on failover Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 293/374] nvmet: fix ns enable/disable possible hang Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 294/374] drm/amd/display: Enable colorspace property for MST connectors Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 295/374] net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8061 Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 296/374] net/mlx5: Lag, do bond only if slaves agree on roce state Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 297/374] net/mlx5: Do not query MPIR on embedded CPU function Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 298/374] net/mlx5: Fix MTMP register capability offset in MCAM register Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 299/374] net/mlx5: Use mlx5_ipsec_rx_status_destroy to correctly delete status rules Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 300/374] net/mlx5e: Fix IPsec tunnel mode offload feature check Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 301/374] net/mlx5e: Use rx_missed_errors instead of rx_dropped for reporting buffer exhaustion Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 302/374] net/mlx5e: Fix UDP GSO for encapsulated packets Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 303/374] dma-buf/sw-sync: dont enable IRQ from sync_print_obj() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 304/374] bpf: Fix potential integer overflow in resolve_btfids Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 305/374] netkit: Fix setting mac address in l2 mode Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 306/374] netkit: Fix pkt_type override upon netkit pass verdict Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 307/374] ALSA: core: Remove debugfs at disconnection Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 308/374] ALSA: hda/realtek: Adjust G814JZR to use SPI init for amp Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 309/374] enic: Validate length of nl attributes in enic_set_vf_port Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 310/374] af_unix: Annotate data-race around unix_sk(sk)->addr Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 311/374] af_unix: Read sk->sk_hash under bindlock during bind() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 312/374] Octeontx2-pf: Free send queue buffers incase of leaf to inner Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 313/374] net: usb: smsc95xx: fix changing LED_SEL bit value updated from EEPROM Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 314/374] ASoC: cs42l43: Only restrict 44.1kHz for the ASP Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 315/374] bpf: Allow delete from sockmap/sockhash only if update is allowed Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 316/374] null_blk: Fix return value of nullb_device_power_store() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 317/374] ipv4: Fix address dump when IPv4 is disabled on an interface Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 318/374] net:fec: Add fec_enet_deinit() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 319/374] net: micrel: Fix lan8841_config_intr after getting out of sleep mode Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.9 320/374] idpf: dont enable NAPI and interrupts prior to allocating Rx buffers Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 321/374] ice: fix accounting if a VLAN already exists Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 322/374] selftests: mptcp: simult flows: mark unbalanced tests as flaky Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 323/374] selftests: mptcp: join: mark fastclose " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 324/374] selftests: mptcp: add ms units for tc-netem delay Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 325/374] selftests: mptcp: join: mark fail tests as flaky Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 326/374] drm/xe: Add dbg messages on the suspend resume functions Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 327/374] drm/xe: check pcode init status only on root gt of root tile Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 328/374] drm/xe: Change pcode timeout to 50msec while polling again Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 329/374] drm/xe: Only use reserved BCS instances for usm migrate exec queue Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 330/374] ALSA: seq: Fix missing bank setup between MIDI1/MIDI2 UMP conversion Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 331/374] ALSA: seq: Dont clear bank selection at event -> UMP MIDI2 conversion Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 332/374] sd: also set max_user_sectors when setting max_sectors Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 333/374] block: stack max_user_sectors Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 334/374] net: ti: icssg-prueth: Fix start counter for ft1 filter Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 335/374] netfilter: nft_payload: skbuff vlan metadata mangle support Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 336/374] netfilter: tproxy: bail out if IP has been disabled on the device Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 337/374] netfilter: nft_fib: allow from forward/input without iif selector Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 338/374] net/sched: taprio: make q->picos_per_byte available to fill_sched_entry() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 339/374] net/sched: taprio: extend minimum interval restriction to entire cycle too Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 340/374] kconfig: fix comparison to constant symbols, m, n Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 341/374] drm/i915/guc: avoid FIELD_PREP warning Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 342/374] drm/i915/gt: Fix CCS ids calculation for CCS mode setting Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 343/374] kheaders: use `command -v` to test for existence of `cpio` Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 344/374] spi: stm32: Dont warn about spurious interrupts Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 345/374] drm/amdgpu: Adjust logic in amdgpu_device_partner_bandwidth() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 346/374] ipv6: introduce dst_rt6_info() helper Greg Kroah-Hartman
2024-06-06 14:05 ` Greg Kroah-Hartman [this message]
2024-06-06 14:05 ` [PATCH 6.9 348/374] net: fix __dst_negative_advice() race Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 349/374] ipv4: correctly iterate over the target netns in inet_dump_ifaddr() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 350/374] net: dsa: microchip: fix RGMII error in KSZ DSA driver Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 351/374] e1000e: move force SMBUS near the end of enable_ulp function Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 352/374] ice: fix 200G PHY types to link speed mapping Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 353/374] net: ena: Fix redundant device NUMA node override Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 354/374] ipvlan: Dont Use skb->sk in ipvlan_process_v{4,6}_outbound Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 355/374] ALSA: seq: Fix yet another spot for system message conversion Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 356/374] powerpc/pseries/lparcfg: drop error message from guest name lookup Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 357/374] powerpc/uaccess: Use YZ asm constraint for ld Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 358/374] drm/panel: sitronix-st7789v: fix timing for jt240mhqs_hwt_ek_e3 panel Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 359/374] drm/panel: sitronix-st7789v: tweak " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 360/374] drm/panel: sitronix-st7789v: fix display size " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 361/374] hwmon: (intel-m10-bmc-hwmon) Fix multiplier for N6000 board power sensor Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 362/374] hwmon: (shtc1) Fix property misspelling Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 363/374] riscv: prevent pt_regs corruption for secondary idle threads Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 364/374] ALSA: seq: ump: Fix swapped song position pointer data Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 365/374] Revert "drm: Make drivers depends on DRM_DW_HDMI" Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 366/374] x86/efistub: Omit physical KASLR when memory reservations exist Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 367/374] efi: libstub: only free priv.runtime_map when allocated Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 368/374] x86/topology: Handle bogus ACPI tables correctly Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 369/374] x86/pci: Skip early E820 check for ECAM region Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 370/374] KVM: x86: Dont advertise guest.MAXPHYADDR as host.MAXPHYADDR in CPUID Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 371/374] x86/topology/intel: Unlock CPUID before evaluating anything Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 372/374] genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 373/374] platform/x86/intel/tpmi: Handle error from tpmi_process_info() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.9 374/374] platform/x86/intel-uncore-freq: Dont present root domain on error Greg Kroah-Hartman
2024-06-06 14:27 ` [PATCH 6.9 000/374] 6.9.4-rc1 review Naresh Kamboju
2024-06-06 18:23 ` Thorsten Leemhuis
2024-06-06 17:53 ` SeongJae Park
2024-06-06 19:54 ` Pavel Machek
2024-06-06 21:52 ` Shuah Khan
2024-06-07 2:08 ` Bagas Sanjaya
2024-06-07 9:02 ` Jon Hunter
2024-06-07 11:48 ` Naresh Kamboju
2024-06-07 15:25 ` Mark Brown
2024-06-07 18:01 ` Allen
2024-06-07 19:19 ` Pascal Ernster
2024-06-07 21:25 ` Ron Economos
2024-06-08 1: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=20240606131703.491449842@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dsahern@kernel.org \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=sd@queasysnail.net \
--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).