diff options
author | Hongbin Wang <wh_bin@126.com> | 2022-09-29 02:12:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-09-30 13:10:44 +0100 |
commit | 0f5ef005310d4820926c76bc1e94d4d2a0e49d97 (patch) | |
tree | c361c0d1dc359139f2f96fbee851971668963139 | |
parent | aa58c9bc833113621b3fdf0d43ada106a1e6f2fc (diff) | |
download | linux-stable-0f5ef005310d4820926c76bc1e94d4d2a0e49d97.tar.gz linux-stable-0f5ef005310d4820926c76bc1e94d4d2a0e49d97.tar.bz2 linux-stable-0f5ef005310d4820926c76bc1e94d4d2a0e49d97.zip |
ip6_vti:Remove the space before the comma
There should be no space before the comma
Signed-off-by: Hongbin Wang <wh_bin@126.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/ip6_vti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c index 1ddd60d06830..151337d7f67b 100644 --- a/net/ipv6/ip6_vti.c +++ b/net/ipv6/ip6_vti.c @@ -154,7 +154,7 @@ vti6_tnl_link(struct vti6_net *ip6n, struct ip6_tnl *t) { struct ip6_tnl __rcu **tp = vti6_tnl_bucket(ip6n, &t->parms); - rcu_assign_pointer(t->next , rtnl_dereference(*tp)); + rcu_assign_pointer(t->next, rtnl_dereference(*tp)); rcu_assign_pointer(*tp, t); } |