mirror of
https://github.com/openvswitch/ovs
synced 2025-10-09 13:49:05 +00:00
datapath: Remove implementation of port groups.
The "port group" concept seems like a good one, but it has not been used very much in userspace so far, so before we commit ourselves to a frozen API that we must maintain forever, remove it. We can always add it back in later as a new kind of vport. Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -46,9 +46,6 @@ format_odp_action(struct ds *ds, const union odp_action *a)
|
||||
case ODPAT_OUTPUT:
|
||||
ds_put_format(ds, "%"PRIu16, a->output.port);
|
||||
break;
|
||||
case ODPAT_OUTPUT_GROUP:
|
||||
ds_put_format(ds, "g%"PRIu16, a->output_group.group);
|
||||
break;
|
||||
case ODPAT_CONTROLLER:
|
||||
ds_put_format(ds, "ctl(%"PRIu32")", a->controller.arg);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user