Lines Matching defs:comp
1269 struct ethtool_flow_spec_container *temp, *comp;
1289 list_for_each_entry(comp, &priv->rx_list.list, list) {
1290 if (comp->fs.location > flow->location) {
1291 list_add_tail(&temp->list, &comp->list);
1294 if (comp->fs.location == flow->location) {
1322 struct ethtool_flow_spec_container *comp;
1328 list_for_each_entry(comp, &priv->rx_list.list, list) {
1329 if (comp->fs.location == loc) {
1330 list_del(&comp->list);
1331 kfree(comp);
1344 struct ethtool_flow_spec_container *comp;
1347 list_for_each_entry(comp, &priv->rx_list.list, list) {
1348 if (comp->fs.location == cmd->fs.location) {
1349 memcpy(&cmd->fs, &comp->fs, sizeof(cmd->fs));
1362 struct ethtool_flow_spec_container *comp;
1365 list_for_each_entry(comp, &priv->rx_list.list, list) {
1368 rule_locs[i] = comp->fs.location;