device: extend device settings flags to 64 bit
[project/netifd.git] / system-dummy.c
index 7a5c8395085a644d205c70a7543a8dc61184a620..ab178f3ce9d3f4b6fc218f467d005505a9c44976 100644 (file)
@@ -66,6 +66,11 @@ int system_bridge_vlan(const char *iface, uint16_t vid, bool add, unsigned int v
        return 0;
 }
 
+int system_bridge_vlan_check(struct device *dev, char *ifname)
+{
+       return 0;
+}
+
 int system_link_netns_move(struct device *dev, int netns_fd, const char *target_ifname)
 {
        D(SYSTEM, "ip link set %s name %s netns %d\n", dev->ifname, target_ifname, netns_fd);
@@ -157,8 +162,14 @@ system_if_dump_stats(struct device *dev, struct blob_buf *b)
 }
 
 void
-system_if_apply_settings(struct device *dev, struct device_settings *s, unsigned int apply_mask)
+system_if_apply_settings(struct device *dev, struct device_settings *s, uint64_t apply_mask)
 {
+       apply_mask &= s->flags;
+
+       if ((apply_mask & (DEV_OPT_MACADDR | DEV_OPT_DEFAULT_MACADDR)) && !dev->external) {
+               D(SYSTEM, "ifconfig %s hw ether %s\n",
+                 dev->ifname, format_macaddr(s->macaddr));
+       }
 }
 
 static int system_address_msg(struct device *dev, struct device_addr *addr, const char *type)