From: Felix Fietkau <nbd@openwrt.org>
Date: Sat, 4 Aug 2007 13:26:41 +0000 (+0000)
Subject: fix a race condition with dynamic interfaces and firewalling
X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=049dc2925bcd34d0a2df4c288aa9d014407708c0;p=openwrt%2Fstaging%2Fansuel.git

fix a race condition with dynamic interfaces and firewalling

SVN-Revision: 8343
---

diff --git a/package/base-files/files/etc/hotplug.d/iface/00-netstate b/package/base-files/files/etc/hotplug.d/iface/00-netstate
index fce5472cf2..6bf6214375 100644
--- a/package/base-files/files/etc/hotplug.d/iface/00-netstate
+++ b/package/base-files/files/etc/hotplug.d/iface/00-netstate
@@ -1,6 +1,3 @@
 [ ifup = "$ACTION" ] && {
 	uci set "/var/state/network.$INTERFACE.up=1"
-	[ -z "$DEVICE" ] || {
-		uci set "/var/state/network.$INTERFACE.ifname=$DEVICE"
-	}
 }
diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh
index c384b3e142..3ff65ff8f5 100755
--- a/package/base-files/files/lib/network/config.sh
+++ b/package/base-files/files/lib/network/config.sh
@@ -137,6 +137,7 @@ setup_interface() {
 	config_get mtu "$config" mtu
 	config_get macaddr "$config" macaddr
 	$DEBUG ifconfig "$iface" ${macaddr:+hw ether "$macaddr"} ${mtu:+mtu $mtu} up
+	uci set "/var/state/network.$config.ifname=$iface"
 
 	pidfile="/var/run/$iface.pid"
 	case "$proto" in