Lines Matching refs:keys_ex
41 struct tcf_pedit_key_ex *keys_ex;
50 keys_ex = kcalloc(n, sizeof(*k), GFP_KERNEL);
51 if (!keys_ex)
54 k = keys_ex;
99 return keys_ex;
102 kfree(keys_ex);
107 struct tcf_pedit_key_ex *keys_ex, int n)
121 if (nla_put_u16(skb, TCA_PEDIT_KEY_EX_HTYPE, keys_ex->htype) ||
122 nla_put_u16(skb, TCA_PEDIT_KEY_EX_CMD, keys_ex->cmd))
127 keys_ex++;
148 struct tcf_pedit_key_ex *keys_ex;
185 keys_ex = tcf_pedit_keys_ex_parse(tb[TCA_PEDIT_KEYS_EX], parm->nkeys);
186 if (IS_ERR(keys_ex))
187 return PTR_ERR(keys_ex);
253 p->tcfp_keys_ex = keys_ex;
266 kfree(keys_ex);