Commit 61cc535d authored by Jamal Hadi Salim's avatar Jamal Hadi Salim Committed by David S. Miller

net sched actions: skbedit convert to use more modern nla_put_xxx

Signed-off-by: default avatarJamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ff202ee1
...@@ -170,20 +170,16 @@ static int tcf_skbedit_dump(struct sk_buff *skb, struct tc_action *a, ...@@ -170,20 +170,16 @@ static int tcf_skbedit_dump(struct sk_buff *skb, struct tc_action *a,
if (nla_put(skb, TCA_SKBEDIT_PARMS, sizeof(opt), &opt)) if (nla_put(skb, TCA_SKBEDIT_PARMS, sizeof(opt), &opt))
goto nla_put_failure; goto nla_put_failure;
if ((d->flags & SKBEDIT_F_PRIORITY) && if ((d->flags & SKBEDIT_F_PRIORITY) &&
nla_put(skb, TCA_SKBEDIT_PRIORITY, sizeof(d->priority), nla_put_u32(skb, TCA_SKBEDIT_PRIORITY, d->priority))
&d->priority))
goto nla_put_failure; goto nla_put_failure;
if ((d->flags & SKBEDIT_F_QUEUE_MAPPING) && if ((d->flags & SKBEDIT_F_QUEUE_MAPPING) &&
nla_put(skb, TCA_SKBEDIT_QUEUE_MAPPING, nla_put_u16(skb, TCA_SKBEDIT_QUEUE_MAPPING, d->queue_mapping))
sizeof(d->queue_mapping), &d->queue_mapping))
goto nla_put_failure; goto nla_put_failure;
if ((d->flags & SKBEDIT_F_MARK) && if ((d->flags & SKBEDIT_F_MARK) &&
nla_put(skb, TCA_SKBEDIT_MARK, sizeof(d->mark), nla_put_u32(skb, TCA_SKBEDIT_MARK, d->mark))
&d->mark))
goto nla_put_failure; goto nla_put_failure;
if ((d->flags & SKBEDIT_F_PTYPE) && if ((d->flags & SKBEDIT_F_PTYPE) &&
nla_put(skb, TCA_SKBEDIT_PTYPE, sizeof(d->ptype), nla_put_u16(skb, TCA_SKBEDIT_PTYPE, d->ptype))
&d->ptype))
goto nla_put_failure; goto nla_put_failure;
tcf_tm_dump(&t, &d->tcf_tm); tcf_tm_dump(&t, &d->tcf_tm);
......
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