Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: vrf: replace hard tab with space in assignment

The assignment of rth->dst.output in vrf_rt6_create() and
vrf_rtable_create() used a hard tab before the '='. The neighboring
assignments did not. Make the assignment of rth->dst.output consistent
with the surrounding code.

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Acked-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Chris Packham and committed by
David S. Miller
52fe705b 21de12ee

+2 -2
+2 -2
drivers/net/vrf.c
··· 304 304 dst_hold(&rt6->dst); 305 305 306 306 rt6->rt6i_table = rt6i_table; 307 - rt6->dst.output = vrf_output6; 307 + rt6->dst.output = vrf_output6; 308 308 rcu_assign_pointer(vrf->rt6, rt6); 309 309 310 310 rc = 0; ··· 403 403 if (!rth) 404 404 return -ENOMEM; 405 405 406 - rth->dst.output = vrf_output; 406 + rth->dst.output = vrf_output; 407 407 rth->rt_table_id = vrf->tb_id; 408 408 409 409 rcu_assign_pointer(vrf->rth, rth);