mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 10:04:04 +02:00
mptcp: pm: drop inet6_sk after inet_sk
In mptcp_event_add_subflow(), mptcp_event_pm_listener() and mptcp_nl_find_ssk(), 'issk' has already been got through inet_sk(). No need to use inet6_sk() to get 'ipv6_pinfo' again, just use issk->pinet6 instead. This patch also drops these 'ipv6_pinfo' variables. Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn> Reviewed-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Link: https://patch.msgid.link/20250221-net-next-mptcp-pm-misc-cleanup-3-v1-6-2b70ab1cee79@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
640e3d69d0
commit
dc41695200
|
|
@ -2022,9 +2022,7 @@ static int mptcp_event_add_subflow(struct sk_buff *skb, const struct sock *ssk)
|
|||
break;
|
||||
#if IS_ENABLED(CONFIG_MPTCP_IPV6)
|
||||
case AF_INET6: {
|
||||
const struct ipv6_pinfo *np = inet6_sk(ssk);
|
||||
|
||||
if (nla_put_in6_addr(skb, MPTCP_ATTR_SADDR6, &np->saddr))
|
||||
if (nla_put_in6_addr(skb, MPTCP_ATTR_SADDR6, &issk->pinet6->saddr))
|
||||
return -EMSGSIZE;
|
||||
if (nla_put_in6_addr(skb, MPTCP_ATTR_DADDR6, &ssk->sk_v6_daddr))
|
||||
return -EMSGSIZE;
|
||||
|
|
@ -2251,9 +2249,7 @@ void mptcp_event_pm_listener(const struct sock *ssk,
|
|||
break;
|
||||
#if IS_ENABLED(CONFIG_MPTCP_IPV6)
|
||||
case AF_INET6: {
|
||||
const struct ipv6_pinfo *np = inet6_sk(ssk);
|
||||
|
||||
if (nla_put_in6_addr(skb, MPTCP_ATTR_SADDR6, &np->saddr))
|
||||
if (nla_put_in6_addr(skb, MPTCP_ATTR_SADDR6, &issk->pinet6->saddr))
|
||||
goto nla_put_failure;
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -460,9 +460,7 @@ static struct sock *mptcp_nl_find_ssk(struct mptcp_sock *msk,
|
|||
break;
|
||||
#if IS_ENABLED(CONFIG_MPTCP_IPV6)
|
||||
case AF_INET6: {
|
||||
const struct ipv6_pinfo *pinfo = inet6_sk(ssk);
|
||||
|
||||
if (!ipv6_addr_equal(&local->addr6, &pinfo->saddr) ||
|
||||
if (!ipv6_addr_equal(&local->addr6, &issk->pinet6->saddr) ||
|
||||
!ipv6_addr_equal(&remote->addr6, &ssk->sk_v6_daddr))
|
||||
continue;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user