aboutsummaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-08-04 13:26:41 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-08-04 13:26:41 +0000
commit049dc2925bcd34d0a2df4c288aa9d014407708c0 (patch)
tree8735b636d4a508f3984b1fb00e8cd0b7f99f3fc3 /package
parentb20b8d15237a8b8caffab003f33cfe8872b50c24 (diff)
downloadupstream-049dc2925bcd34d0a2df4c288aa9d014407708c0.tar.gz
upstream-049dc2925bcd34d0a2df4c288aa9d014407708c0.tar.bz2
upstream-049dc2925bcd34d0a2df4c288aa9d014407708c0.zip
fix a race condition with dynamic interfaces and firewalling
SVN-Revision: 8343
Diffstat (limited to 'package')
-rw-r--r--package/base-files/files/etc/hotplug.d/iface/00-netstate3
-rwxr-xr-xpackage/base-files/files/lib/network/config.sh1
2 files changed, 1 insertions, 3 deletions
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