Hi all, Today's linux-next merge of the net-next tree got a conflict in: net/sched/act_tunnel_key.c between commit: 38230a3e0e09 ("net/sched: act_tunnel_key: fix NULL dereference when 'goto chain' is used") from the net tree and commit: 036bb44327f5 ("net: sched: change type of reference and bind counters") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc net/sched/act_tunnel_key.c index 9bc6c2ae98a5,3ec585d58762..000000000000 --- a/net/sched/act_tunnel_key.c +++ b/net/sched/act_tunnel_key.c @@@ -252,9 -477,8 +477,9 @@@ static int tunnel_key_dump(struct sk_bu struct tcf_tunnel_key_params *params; struct tc_tunnel_key opt = { .index = t->tcf_index, - .refcnt = t->tcf_refcnt - ref, - .bindcnt = t->tcf_bindcnt - bind, + .refcnt = refcount_read(&t->tcf_refcnt) - ref, + .bindcnt = atomic_read(&t->tcf_bindcnt) - bind, + .action = t->tcf_action, }; struct tcf_t tm;