mwl8k: don't complain about oversized beacons in FINALIZE_JOIN
authorLennert Buytenhek <buytenh@wantstofly.org>
Mon, 30 Nov 2009 17:14:23 +0000 (18:14 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 7 Dec 2009 21:51:23 +0000 (16:51 -0500)
The FINALIZE_JOIN firmware command only looks at the first couple of
fields in the beacon, and therefore it's not necessary to complain if
the beacon is longer than 128 bytes.

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/mwl8k.c

index ea1173fd598cf54864d6f2f9e91edcbd9caa0b32..59d49159cf2acc1b7c0497d20a642cf762290393 100644 (file)
@@ -2469,8 +2469,6 @@ mwl8k_set_edca_params(struct ieee80211_hw *hw, __u8 qnum,
 /*
  * CMD_FINALIZE_JOIN.
  */
-
-/* FJ beacon buffer size is compiled into the firmware.  */
 #define MWL8K_FJ_BEACON_MAXLEN 128
 
 struct mwl8k_cmd_finalize_join {
@@ -2480,17 +2478,13 @@ struct mwl8k_cmd_finalize_join {
 } __attribute__((packed));
 
 static int mwl8k_finalize_join(struct ieee80211_hw *hw, void *frame,
-                               __u16 framelen, __u16 dtim)
+                              int framelen, int dtim)
 {
        struct mwl8k_cmd_finalize_join *cmd;
        struct ieee80211_mgmt *payload = frame;
-       u16 hdrlen;
-       u32 payload_len;
+       int payload_len;
        int rc;
 
-       if (frame == NULL)
-               return -EINVAL;
-
        cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
        if (cmd == NULL)
                return -ENOMEM;
@@ -2499,24 +2493,17 @@ static int mwl8k_finalize_join(struct ieee80211_hw *hw, void *frame,
        cmd->header.length = cpu_to_le16(sizeof(*cmd));
        cmd->sleep_interval = cpu_to_le32(dtim ? dtim : 1);
 
-       hdrlen = ieee80211_hdrlen(payload->frame_control);
-
-       payload_len = framelen > hdrlen ? framelen - hdrlen : 0;
-
-       /* XXX TBD Might just have to abort and return an error */
-       if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
-               printk(KERN_ERR "%s(): WARNING: Incomplete beacon "
-                      "sent to firmware. Sz=%u MAX=%u\n", __func__,
-                      payload_len, MWL8K_FJ_BEACON_MAXLEN);
-
-       if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
+       payload_len = framelen - ieee80211_hdrlen(payload->frame_control);
+       if (payload_len < 0)
+               payload_len = 0;
+       else if (payload_len > MWL8K_FJ_BEACON_MAXLEN)
                payload_len = MWL8K_FJ_BEACON_MAXLEN;
 
-       if (payload && payload_len)
-               memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
+       memcpy(cmd->beacon_data, &payload->u.beacon, payload_len);
 
        rc = mwl8k_post_cmd(hw, &cmd->header);
        kfree(cmd);
+
        return rc;
 }
 
This page took 0.030965 seconds and 5 git commands to generate.