Re: [PATCHv2 net-next 14/15] net: sch: sch_cbs: add extack support

2017-12-14 Thread David Ahern
On 12/14/17 11:39 AM, Alexander Aring wrote: > diff --git a/net/sched/sch_cbs.c b/net/sched/sch_cbs.c > index 8bf6e163d29c..6d09ffd2371e 100644 > --- a/net/sched/sch_cbs.c > +++ b/net/sched/sch_cbs.c > @@ -219,14 +219,17 @@ static void cbs_disable_offload(struct net_device *dev, > } > > static

[PATCHv2 net-next 14/15] net: sch: sch_cbs: add extack support

2017-12-14 Thread Alexander Aring
This patch adds extack support for the cbs qdisc implementation by adding NL_SET_ERR_MSG in validation of user input. Also it serves to illustrate a use case of how the infrastructure ops api changes are to be used by individual qdiscs. Cc: David Ahern Signed-off-by: Alexander Aring --- net/sch