diff options
Diffstat (limited to 'net/sched/act_mirred.c')
| -rw-r--r-- | net/sched/act_mirred.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/net/sched/act_mirred.c b/net/sched/act_mirred.c index 11f195af2da0..0c311be92827 100644 --- a/net/sched/act_mirred.c +++ b/net/sched/act_mirred.c | |||
| @@ -219,15 +219,16 @@ static int tcf_mirred_dump(struct sk_buff *skb, struct tc_action *a, int bind, i | |||
| 219 | { | 219 | { |
| 220 | unsigned char *b = skb_tail_pointer(skb); | 220 | unsigned char *b = skb_tail_pointer(skb); |
| 221 | struct tcf_mirred *m = a->priv; | 221 | struct tcf_mirred *m = a->priv; |
| 222 | struct tc_mirred opt; | 222 | struct tc_mirred opt = { |
| 223 | .index = m->tcf_index, | ||
| 224 | .action = m->tcf_action, | ||
| 225 | .refcnt = m->tcf_refcnt - ref, | ||
| 226 | .bindcnt = m->tcf_bindcnt - bind, | ||
| 227 | .eaction = m->tcfm_eaction, | ||
| 228 | .ifindex = m->tcfm_ifindex, | ||
| 229 | }; | ||
| 223 | struct tcf_t t; | 230 | struct tcf_t t; |
| 224 | 231 | ||
| 225 | opt.index = m->tcf_index; | ||
| 226 | opt.action = m->tcf_action; | ||
| 227 | opt.refcnt = m->tcf_refcnt - ref; | ||
| 228 | opt.bindcnt = m->tcf_bindcnt - bind; | ||
| 229 | opt.eaction = m->tcfm_eaction; | ||
| 230 | opt.ifindex = m->tcfm_ifindex; | ||
| 231 | NLA_PUT(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt); | 232 | NLA_PUT(skb, TCA_MIRRED_PARMS, sizeof(opt), &opt); |
| 232 | t.install = jiffies_to_clock_t(jiffies - m->tcf_tm.install); | 233 | t.install = jiffies_to_clock_t(jiffies - m->tcf_tm.install); |
| 233 | t.lastuse = jiffies_to_clock_t(jiffies - m->tcf_tm.lastuse); | 234 | t.lastuse = jiffies_to_clock_t(jiffies - m->tcf_tm.lastuse); |
