Lines Matching refs:comp
1371 struct ethtool_flow_spec_container *temp, *comp; in gfar_add_cls() local
1391 list_for_each_entry(comp, &priv->rx_list.list, list) { in gfar_add_cls()
1392 if (comp->fs.location > flow->location) { in gfar_add_cls()
1393 list_add_tail(&temp->list, &comp->list); in gfar_add_cls()
1396 if (comp->fs.location == flow->location) { in gfar_add_cls()
1424 struct ethtool_flow_spec_container *comp; in gfar_del_cls() local
1430 list_for_each_entry(comp, &priv->rx_list.list, list) { in gfar_del_cls()
1431 if (comp->fs.location == loc) { in gfar_del_cls()
1432 list_del(&comp->list); in gfar_del_cls()
1433 kfree(comp); in gfar_del_cls()
1446 struct ethtool_flow_spec_container *comp; in gfar_get_cls() local
1449 list_for_each_entry(comp, &priv->rx_list.list, list) { in gfar_get_cls()
1450 if (comp->fs.location == cmd->fs.location) { in gfar_get_cls()
1451 memcpy(&cmd->fs, &comp->fs, sizeof(cmd->fs)); in gfar_get_cls()
1464 struct ethtool_flow_spec_container *comp; in gfar_get_cls_all() local
1467 list_for_each_entry(comp, &priv->rx_list.list, list) { in gfar_get_cls_all()
1470 rule_locs[i] = comp->fs.location; in gfar_get_cls_all()