|
@@ -794,5 +794,17 @@ __weak unsigned int vlan_tag ( struct net_device *netdev __unused ) {
|
794
|
794
|
return 0;
|
795
|
795
|
}
|
796
|
796
|
|
|
797
|
+/**
|
|
798
|
+ * Identify VLAN device (when VLAN support is not present)
|
|
799
|
+ *
|
|
800
|
+ * @v trunk Trunk network device
|
|
801
|
+ * @v tag VLAN tag
|
|
802
|
+ * @ret netdev VLAN device, if any
|
|
803
|
+ */
|
|
804
|
+__weak struct net_device * vlan_find ( struct net_device *trunk __unused,
|
|
805
|
+ unsigned int tag __unused ) {
|
|
806
|
+ return NULL;
|
|
807
|
+}
|
|
808
|
+
|
797
|
809
|
/** Networking stack process */
|
798
|
810
|
PERMANENT_PROCESS ( net_process, net_step );
|