提交 c89cc225 编写于 作者: P Pavel Roskin 提交者: Jeff Garzik

[PATCH] orinoco: Optimize orinoco_join_ap()

Signed-off-by: NPavel Roskin <proski@gnu.org>

diff-tree cb289b9f9b2a0f3ae7070a008f22e383b37526ee (from 56bfcdb38b3d04c1f8c1fd705e411f4be53b663c)
Author: Pavel Roskin <proski@gnu.org>
Date:   Thu Sep 1 19:05:16 2005 -0400

    Optimize orinoco_join_ap() - break from loop once the requested
BSSID
    is found.
Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
上级 708218b0
...@@ -1053,8 +1053,9 @@ static void orinoco_join_ap(struct net_device *dev) ...@@ -1053,8 +1053,9 @@ static void orinoco_join_ap(struct net_device *dev)
u16 channel; u16 channel;
} __attribute__ ((packed)) req; } __attribute__ ((packed)) req;
const int atom_len = offsetof(struct prism2_scan_apinfo, atim); const int atom_len = offsetof(struct prism2_scan_apinfo, atim);
struct prism2_scan_apinfo *atom; struct prism2_scan_apinfo *atom = NULL;
int offset = 4; int offset = 4;
int found = 0;
u8 *buf; u8 *buf;
u16 len; u16 len;
...@@ -1089,15 +1090,18 @@ static void orinoco_join_ap(struct net_device *dev) ...@@ -1089,15 +1090,18 @@ static void orinoco_join_ap(struct net_device *dev)
* we were requested to join */ * we were requested to join */
for (; offset + atom_len <= len; offset += atom_len) { for (; offset + atom_len <= len; offset += atom_len) {
atom = (struct prism2_scan_apinfo *) (buf + offset); atom = (struct prism2_scan_apinfo *) (buf + offset);
if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) if (memcmp(&atom->bssid, priv->desired_bssid, ETH_ALEN) == 0) {
goto found; found = 1;
break;
}
} }
DEBUG(1, "%s: Requested AP not found in scan results\n", if (! found) {
dev->name); DEBUG(1, "%s: Requested AP not found in scan results\n",
goto out; dev->name);
goto out;
}
found:
memcpy(req.bssid, priv->desired_bssid, ETH_ALEN); memcpy(req.bssid, priv->desired_bssid, ETH_ALEN);
req.channel = atom->channel; /* both are little-endian */ req.channel = atom->channel; /* both are little-endian */
err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST, err = HERMES_WRITE_RECORD(hw, USER_BAP, HERMES_RID_CNFJOINREQUEST,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册