From patchwork Fri May 17 14:12:12 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [PATCHv2,08/21] VLAN: remove vlan_tail X-Patchwork-Submitter: michael-dev@fami-braun.de X-Patchwork-Id: 249362 Message-Id: <358aa5e3c2eef6e77c9062a965486a539662de16.1370512966.git.michael-dev@fami-braun.de> To: hostap@lists.shmoo.com Cc: projekt-wlan@fem.tu-ilmenau.de Date: Fri, 17 May 2013 16:12:12 +0200 From: Michael Braun List-Id: HostAP Project Everything in hostapd can be implemented efficiently without vlan_tail. Signed-hostap: Michael Braun diff --git a/hostapd/config_file.c b/hostapd/config_file.c index cd9c7ca..eb049fe 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -93,11 +93,8 @@ static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss, vlan->vlan_id = vlan_id; os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname)); - if (bss->vlan_tail) - bss->vlan_tail->next = vlan; - else - bss->vlan = vlan; - bss->vlan_tail = vlan; + vlan->next = bss->vlan; + bss->vlan = vlan; } fclose(f); diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h index 2d918f0..e15fa9c 100644 --- a/src/ap/ap_config.h +++ b/src/ap/ap_config.h @@ -331,7 +331,7 @@ struct hostapd_bss_config { int wmm_enabled; int wmm_uapsd; - struct hostapd_vlan *vlan, *vlan_tail; + struct hostapd_vlan *vlan; macaddr bssid; diff --git a/src/ap/vlan_init.c b/src/ap/vlan_init.c index dd234a0..5da148a 100644 --- a/src/ap/vlan_init.c +++ b/src/ap/vlan_init.c @@ -1002,11 +1002,8 @@ int vlan_init(struct hostapd_data *hapd) vlan->vlan_id = VLAN_ID_WILDCARD; os_snprintf(vlan->ifname, sizeof(vlan->ifname), "%s.#", hapd->conf->iface); - if (hapd->conf->vlan_tail) - hapd->conf->vlan_tail->next = vlan; - else - hapd->conf->vlan = vlan; - hapd->conf->vlan_tail = vlan; + vlan->next = hapd->conf->vlan; + hapd->conf->vlan = vlan; } if (vlan_dynamic_add(hapd, hapd->conf->vlan))