Lines Matching refs:ckf

596 	struct vcap_client_keyfield ckf = {
615 vcap_encode_keyfield(&rule, &ckf, &rf, tgt);
657 struct vcap_client_keyfield ckf = {
693 vcap_encode_keyfield(&rule, &ckf, &rf, tgt);
841 struct vcap_client_keyfield ckf[] = {
900 for (idx = 0; idx < ARRAY_SIZE(ckf); idx++)
901 list_add_tail(&ckf[idx].ctrl.list, &rule.data.keyfields);
999 struct vcap_client_keyfield *ckf, *next_ckf;
1001 list_for_each_entry_safe(ckf, next_ckf, &rule->keyfields, ctrl.list) {
1002 list_del(&ckf->ctrl.list);
1003 kfree(ckf);
1194 struct vcap_client_keyfield ckf[] = {
1221 for (idx = 0; idx < ARRAY_SIZE(ckf); idx++)
1222 list_add_tail(&ckf[idx].ctrl.list, &ri.data.keyfields);
1241 struct vcap_client_keyfield ckf[] = {
1268 for (idx = 0; idx < ARRAY_SIZE(ckf); idx++)
1269 list_add_tail(&ckf[idx].ctrl.list, &ri.data.keyfields);
1288 struct vcap_client_keyfield ckf[] = {
1315 for (idx = 0; idx < ARRAY_SIZE(ckf); idx++)
1316 list_add_tail(&ckf[idx].ctrl.list, &ri.data.keyfields);
2038 struct vcap_client_keyfield *ckf, *next;
2045 ckf = kzalloc(sizeof(*ckf), GFP_KERNEL);
2046 if (ckf) {
2047 ckf->ctrl.key = keylist[idx];
2048 list_add_tail(&ckf->ctrl.list, &ri.data.keyfields);
2061 list_for_each_entry_safe(ckf, next, &ri.data.keyfields, ctrl.list) {
2062 KUNIT_EXPECT_EQ(test, expected[idx], ckf->ctrl.key);
2063 list_del(&ckf->ctrl.list);
2064 kfree(ckf);
2162 struct vcap_client_keyfield *ckf, *next;
2169 ckf = kzalloc(sizeof(*ckf), GFP_KERNEL);
2170 if (ckf) {
2171 ckf->ctrl.key = keylist[idx];
2172 list_add_tail(&ckf->ctrl.list, &ri.data.keyfields);
2186 list_for_each_entry_safe(ckf, next, &ri.data.keyfields, ctrl.list) {
2187 KUNIT_EXPECT_EQ(test, expected[idx], ckf->ctrl.key);
2188 list_del(&ckf->ctrl.list);
2189 kfree(ckf);