Hi all, Today's linux-next merge of the net-next tree got a conflict in: net/sched/cls_api.c between commit: e331473fee3d ("net/sched: cls_api: add missing validation of netlink attributes") from the net tree and commit: dac9c9790e54 ("net: Add extack to nlmsg_parse") 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/cls_api.c index 70f144ac5e1d,43c8559aca56..000000000000 --- a/net/sched/cls_api.c +++ b/net/sched/cls_api.c @@@ -1951,8 -2055,8 +2057,8 @@@ static int tc_dump_chain(struct sk_buf if (nlmsg_len(cb->nlh) < sizeof(*tcm)) return skb->len; - err = nlmsg_parse(cb->nlh, sizeof(*tcm), tca, TCA_MAX, NULL, + err = nlmsg_parse(cb->nlh, sizeof(*tcm), tca, TCA_MAX, rtm_tca_policy, - NULL); + cb->extack); if (err) return err;