Commit 8521db4c authored by Nogah Frankel's avatar Nogah Frankel Committed by David S. Miller

net_sch: cbs: Change TC_SETUP_CBS to TC_SETUP_QDISC_CBS

Change TC_SETUP_CBS to TC_SETUP_QDISC_CBS to match the new convention..
Signed-off-by: default avatarNogah Frankel <nogahf@mellanox.com>
Signed-off-by: default avatarJiri Pirko <jiri@mellanox.com>
Reviewed-by: default avatarSimon Horman <simon.horman@netronome.com>
Acked-by: default avatarVinicius Costa Gomes <vinicius.gomes@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 575ed7d3
...@@ -2488,7 +2488,7 @@ static int igb_setup_tc(struct net_device *dev, enum tc_setup_type type, ...@@ -2488,7 +2488,7 @@ static int igb_setup_tc(struct net_device *dev, enum tc_setup_type type,
struct igb_adapter *adapter = netdev_priv(dev); struct igb_adapter *adapter = netdev_priv(dev);
switch (type) { switch (type) {
case TC_SETUP_CBS: case TC_SETUP_QDISC_CBS:
return igb_offload_cbs(adapter, type_data); return igb_offload_cbs(adapter, type_data);
default: default:
......
...@@ -776,7 +776,7 @@ enum tc_setup_type { ...@@ -776,7 +776,7 @@ enum tc_setup_type {
TC_SETUP_CLSMATCHALL, TC_SETUP_CLSMATCHALL,
TC_SETUP_CLSBPF, TC_SETUP_CLSBPF,
TC_SETUP_BLOCK, TC_SETUP_BLOCK,
TC_SETUP_CBS, TC_SETUP_QDISC_CBS,
TC_SETUP_QDISC_RED, TC_SETUP_QDISC_RED,
}; };
......
...@@ -212,7 +212,7 @@ static void cbs_disable_offload(struct net_device *dev, ...@@ -212,7 +212,7 @@ static void cbs_disable_offload(struct net_device *dev,
cbs.queue = q->queue; cbs.queue = q->queue;
cbs.enable = 0; cbs.enable = 0;
err = ops->ndo_setup_tc(dev, TC_SETUP_CBS, &cbs); err = ops->ndo_setup_tc(dev, TC_SETUP_QDISC_CBS, &cbs);
if (err < 0) if (err < 0)
pr_warn("Couldn't disable CBS offload for queue %d\n", pr_warn("Couldn't disable CBS offload for queue %d\n",
cbs.queue); cbs.queue);
...@@ -236,7 +236,7 @@ static int cbs_enable_offload(struct net_device *dev, struct cbs_sched_data *q, ...@@ -236,7 +236,7 @@ static int cbs_enable_offload(struct net_device *dev, struct cbs_sched_data *q,
cbs.idleslope = opt->idleslope; cbs.idleslope = opt->idleslope;
cbs.sendslope = opt->sendslope; cbs.sendslope = opt->sendslope;
err = ops->ndo_setup_tc(dev, TC_SETUP_CBS, &cbs); err = ops->ndo_setup_tc(dev, TC_SETUP_QDISC_CBS, &cbs);
if (err < 0) if (err < 0)
return err; return err;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment