diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-10-20 22:07:18 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-10-20 22:07:20 +0200 |
commit | 5a4eb870afc69e9fa93fdccb8a42f75e8e357f4e (patch) | |
tree | 894f3c5937cf1f8941f0121f75c6dc283cce2bec /device.h | |
parent | fd7d5b43d85b2e3bb2eee98644bca833c6202048 (diff) |
device: make link status detection optional for vlan devices
Fixes a race condition that triggers endless link loss / detect calls
when VLAN devices are created.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -47,6 +47,8 @@ struct device_type { struct list_head list; const char *name; + bool keep_link_status; + const struct uci_blob_param_list *config_params; struct device *(*create)(const char *name, struct blob_attr *attr); |