From: Shaohua Li <s...@kernel.org> Date: Mon, 18 Dec 2017 18:58:25 -0800
> @@ -789,7 +789,9 @@ static void tcp_v6_send_response(const struct sock *sk, > struct sk_buff *skb, u32 > unsigned int tot_len = sizeof(struct tcphdr); > struct dst_entry *dst; > __be32 *topt; > + struct ipv6_pinfo *np = inet6_sk(ctl_sk); > > + np->autoflowlabel = ip6_default_np_autolabel(net); Please put the 'np' variable declaration a few lines up in order to preserve the reverse christmas tree ordering of local variables (longest to shortest line). THank you.