Message ID | 20211111150924.2576-1-luo.penghao@zte.com.cn (mailing list archive) |
---|---|
State | Accepted |
Commit | 1274a4eb318debe33e395bb8bcf8b98e6eb4670f |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [linux-next] ipv6: Remove duplicate statements | expand |
Hello: This patch was applied to netdev/net-next.git (master) by David S. Miller <davem@davemloft.net>: On Thu, 11 Nov 2021 15:09:24 +0000 you wrote: > From: luo penghao <luo.penghao@zte.com.cn> > > This statement is repeated with the initialization statement > > Reported-by: Zeal Robot <zealci@zte.com.cn> > Signed-off-by: luo penghao <luo.penghao@zte.com.cn> > > [...] Here is the summary with links: - [linux-next] ipv6: Remove duplicate statements https://git.kernel.org/netdev/net-next/c/1274a4eb318d You are awesome, thank you!
diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c index 3a871a0..e7e955d 100644 --- a/net/ipv6/exthdrs.c +++ b/net/ipv6/exthdrs.c @@ -686,7 +686,6 @@ static int ipv6_rthdr_rcv(struct sk_buff *skb) struct net *net = dev_net(skb->dev); int accept_source_route = net->ipv6.devconf_all->accept_source_route; - idev = __in6_dev_get(skb->dev); if (idev && accept_source_route > idev->cnf.accept_source_route) accept_source_route = idev->cnf.accept_source_route;