ip6_vti:Remove the space before the comma
authorHongbin Wang <wh_bin@126.com>
Thu, 29 Sep 2022 06:12:05 +0000 (02:12 -0400)
committerDavid S. Miller <davem@davemloft.net>
Fri, 30 Sep 2022 12:10:44 +0000 (13:10 +0100)
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>
net/ipv6/ip6_vti.c

index 1ddd60d06830b02cdb06504a7f2b5bd44639e8be..151337d7f67b43ed930cc14f679be95764d645bc 100644 (file)
@@ -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);
 }