Commit 426921bd authored by Matthias Kaehlcke's avatar Matthias Kaehlcke Committed by John W. Linville

[PATCH] use list_for_each_entry() for iteration in Prism 54 driver

Use list_for_each_entry() instead of manual iteration and substitute a
list_for_each_safe() loop with list_for_each_entry_safe()
Signed-off-by: default avatarMatthias Kaehlcke <matthias.kaehlcke@gmail.com>
Cc: Christoph Hellwig <hch@lst.de>
Acked-by: default avatarLuis R. Rodriguez <mcgrof@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 777fa981
...@@ -1853,7 +1853,6 @@ prism54_del_mac(struct net_device *ndev, struct iw_request_info *info, ...@@ -1853,7 +1853,6 @@ prism54_del_mac(struct net_device *ndev, struct iw_request_info *info,
islpci_private *priv = netdev_priv(ndev); islpci_private *priv = netdev_priv(ndev);
struct islpci_acl *acl = &priv->acl; struct islpci_acl *acl = &priv->acl;
struct mac_entry *entry; struct mac_entry *entry;
struct list_head *ptr;
struct sockaddr *addr = (struct sockaddr *) extra; struct sockaddr *addr = (struct sockaddr *) extra;
if (addr->sa_family != ARPHRD_ETHER) if (addr->sa_family != ARPHRD_ETHER)
...@@ -1861,11 +1860,9 @@ prism54_del_mac(struct net_device *ndev, struct iw_request_info *info, ...@@ -1861,11 +1860,9 @@ prism54_del_mac(struct net_device *ndev, struct iw_request_info *info,
if (down_interruptible(&acl->sem)) if (down_interruptible(&acl->sem))
return -ERESTARTSYS; return -ERESTARTSYS;
for (ptr = acl->mac_list.next; ptr != &acl->mac_list; ptr = ptr->next) { list_for_each_entry(entry, &acl->mac_list, _list) {
entry = list_entry(ptr, struct mac_entry, _list);
if (memcmp(entry->addr, addr->sa_data, ETH_ALEN) == 0) { if (memcmp(entry->addr, addr->sa_data, ETH_ALEN) == 0) {
list_del(ptr); list_del(&entry->_list);
acl->size--; acl->size--;
kfree(entry); kfree(entry);
up(&acl->sem); up(&acl->sem);
...@@ -1883,7 +1880,6 @@ prism54_get_mac(struct net_device *ndev, struct iw_request_info *info, ...@@ -1883,7 +1880,6 @@ prism54_get_mac(struct net_device *ndev, struct iw_request_info *info,
islpci_private *priv = netdev_priv(ndev); islpci_private *priv = netdev_priv(ndev);
struct islpci_acl *acl = &priv->acl; struct islpci_acl *acl = &priv->acl;
struct mac_entry *entry; struct mac_entry *entry;
struct list_head *ptr;
struct sockaddr *dst = (struct sockaddr *) extra; struct sockaddr *dst = (struct sockaddr *) extra;
dwrq->length = 0; dwrq->length = 0;
...@@ -1891,9 +1887,7 @@ prism54_get_mac(struct net_device *ndev, struct iw_request_info *info, ...@@ -1891,9 +1887,7 @@ prism54_get_mac(struct net_device *ndev, struct iw_request_info *info,
if (down_interruptible(&acl->sem)) if (down_interruptible(&acl->sem))
return -ERESTARTSYS; return -ERESTARTSYS;
for (ptr = acl->mac_list.next; ptr != &acl->mac_list; ptr = ptr->next) { list_for_each_entry(entry, &acl->mac_list, _list) {
entry = list_entry(ptr, struct mac_entry, _list);
memcpy(dst->sa_data, entry->addr, ETH_ALEN); memcpy(dst->sa_data, entry->addr, ETH_ALEN);
dst->sa_family = ARPHRD_ETHER; dst->sa_family = ARPHRD_ETHER;
dwrq->length++; dwrq->length++;
...@@ -1960,7 +1954,6 @@ prism54_get_policy(struct net_device *ndev, struct iw_request_info *info, ...@@ -1960,7 +1954,6 @@ prism54_get_policy(struct net_device *ndev, struct iw_request_info *info,
static int static int
prism54_mac_accept(struct islpci_acl *acl, char *mac) prism54_mac_accept(struct islpci_acl *acl, char *mac)
{ {
struct list_head *ptr;
struct mac_entry *entry; struct mac_entry *entry;
int res = 0; int res = 0;
...@@ -1972,8 +1965,7 @@ prism54_mac_accept(struct islpci_acl *acl, char *mac) ...@@ -1972,8 +1965,7 @@ prism54_mac_accept(struct islpci_acl *acl, char *mac)
return 1; return 1;
} }
for (ptr = acl->mac_list.next; ptr != &acl->mac_list; ptr = ptr->next) { list_for_each_entry(entry, &acl->mac_list, _list) {
entry = list_entry(ptr, struct mac_entry, _list);
if (memcmp(entry->addr, mac, ETH_ALEN) == 0) { if (memcmp(entry->addr, mac, ETH_ALEN) == 0) {
res = 1; res = 1;
break; break;
...@@ -2216,11 +2208,9 @@ prism54_wpa_bss_ie_init(islpci_private *priv) ...@@ -2216,11 +2208,9 @@ prism54_wpa_bss_ie_init(islpci_private *priv)
void void
prism54_wpa_bss_ie_clean(islpci_private *priv) prism54_wpa_bss_ie_clean(islpci_private *priv)
{ {
struct list_head *ptr, *n; struct islpci_bss_wpa_ie *bss, *n;
list_for_each_safe(ptr, n, &priv->bss_wpa_list) { list_for_each_entry_safe(bss, n, &priv->bss_wpa_list, list) {
struct islpci_bss_wpa_ie *bss;
bss = list_entry(ptr, struct islpci_bss_wpa_ie, list);
kfree(bss); kfree(bss);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment