diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2014-11-13 15:57:56 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-11-19 09:30:12 +0100 |
commit | fe08cfd2bfb389f7c174e2dd1561ba4a381db213 (patch) | |
tree | c545a179666bb2358647b60ef6f177e487fe7c53 /system-dummy.c | |
parent | 248ec27b62439662f28deab08adb9ee4e906f3b6 (diff) |
netifd: Fix device ifindex overwrite when processing netlink event messages
When a device with the same name is deleted and created again in the kernel
the ifindex changes.
A race condition will occur when netlink event messages linked to the old device
are processed and will thus overwrite the correct ifindex of the new device.
Further make sure a valid ifindex is in place for both external and internal
devices when setting the state to enabled.
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'system-dummy.c')
-rw-r--r-- | system-dummy.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system-dummy.c b/system-dummy.c index 8e420e1..7d54315 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -96,6 +96,11 @@ int system_if_check(struct device *dev) return 0; } +int system_if_resolve(struct device *dev) +{ + return 0; +} + struct device * system_if_get_parent(struct device *dev) { |