| .. | .. |
|---|
| 26 | 26 | |
|---|
| 27 | 27 | static const struct nla_policy pedit_policy[TCA_PEDIT_MAX + 1] = { |
|---|
| 28 | 28 | [TCA_PEDIT_PARMS] = { .len = sizeof(struct tc_pedit) }, |
|---|
| 29 | + [TCA_PEDIT_PARMS_EX] = { .len = sizeof(struct tc_pedit) }, |
|---|
| 29 | 30 | [TCA_PEDIT_KEYS_EX] = { .type = NLA_NESTED }, |
|---|
| 30 | 31 | }; |
|---|
| 31 | 32 | |
|---|
| .. | .. |
|---|
| 189 | 190 | err = tcf_idr_check_alloc(tn, &index, a, bind); |
|---|
| 190 | 191 | if (!err) { |
|---|
| 191 | 192 | ret = tcf_idr_create(tn, index, est, a, |
|---|
| 192 | | - &act_pedit_ops, bind, false, 0); |
|---|
| 193 | + &act_pedit_ops, bind, false, flags); |
|---|
| 193 | 194 | if (ret) { |
|---|
| 194 | 195 | tcf_idr_cleanup(tn, index); |
|---|
| 195 | 196 | goto out_free; |
|---|