static void
list_attributes(struct switch_dev *dev)
{
- printf("Switch %d: %s(%s), ports: %d, vlans: %d\n", dev->id, dev->dev_name, dev->name, dev->ports, dev->vlans);
+ printf("Switch %d: %s(%s), ports: %d (cpu @ %d), vlans: %d\n", dev->id, dev->dev_name, dev->name, dev->ports, dev->cpu_port, dev->vlans);
printf(" --switch\n");
print_attrs(dev->ops);
printf(" --vlan\n");
int err;
int i;
- struct switch_port *ports;
-
int cmd = CMD_NONE;
char *cdev = NULL;
int cport = -1;
return 1;
}
- ports = malloc(sizeof(struct switch_port) * dev->ports);
- memset(ports, 0, sizeof(struct switch_port) * dev->ports);
swlib_scan(dev);
if (cmd == CMD_GET || cmd == CMD_SET) {
out:
swlib_free_all(dev);
- free(ports);
-
return 0;
}