|
@@ -360,6 +360,9 @@ int vlan_create ( struct net_device *trunk, unsigned int tag,
|
360
|
360
|
/* Synchronise with trunk device */
|
361
|
361
|
vlan_sync ( netdev );
|
362
|
362
|
|
|
363
|
+ DBGC ( netdev, "VLAN %s created with tag %d and priority %d\n",
|
|
364
|
+ netdev->name, vlan->tag, vlan->priority );
|
|
365
|
+
|
363
|
366
|
return 0;
|
364
|
367
|
|
365
|
368
|
unregister_netdev ( netdev );
|
|
@@ -389,6 +392,8 @@ int vlan_destroy ( struct net_device *netdev ) {
|
389
|
392
|
return -ENOTTY;
|
390
|
393
|
}
|
391
|
394
|
|
|
395
|
+ DBGC ( netdev, "VLAN %s destroyed\n", netdev->name );
|
|
396
|
+
|
392
|
397
|
/* Remove VLAN device */
|
393
|
398
|
unregister_netdev ( netdev );
|
394
|
399
|
trunk = vlan->trunk;
|