Hi all, Today's linux-next merge of the net-next tree got a conflict in: net/sched/act_csum.c between commit: 11a245e2f7bf ("net/sched: act_csum: 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_csum.c index 6e7124e57918,bd232d3bd022..000000000000 --- a/net/sched/act_csum.c +++ b/net/sched/act_csum.c @@@ -597,9 -603,8 +603,9 @@@ static int tcf_csum_dump(struct sk_buf struct tcf_csum_params *params; struct tc_csum opt = { .index = p->tcf_index, - .refcnt = p->tcf_refcnt - ref, - .bindcnt = p->tcf_bindcnt - bind, + .refcnt = refcount_read(&p->tcf_refcnt) - ref, + .bindcnt = atomic_read(&p->tcf_bindcnt) - bind, + .action = p->tcf_action, }; struct tcf_t t;