]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
mac80211_hwsim: Fix set mactime on receiver hwsim radio
authorAshok Nagarajan <ashok@cozybit.com>
Thu, 8 Mar 2012 17:27:34 +0000 (09:27 -0800)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 12 Mar 2012 18:19:35 +0000 (14:19 -0400)
The patch "mac80211_hwsim:  Add tsf to beacons, probe responses and radiotap
header" was setting the mactime on wrong hwsim radio. This patch fixes it.

Signed-off-by: Ashok Nagarajan <ashok@cozybit.com>
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/mac80211_hwsim.c

index b4f6cb3298a46c08826fda462f963ef4b52a4459..b7ce6a6e355f68c30d2c55cb772dfd8d5414af57 100644 (file)
@@ -639,7 +639,6 @@ static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
        }
 
        memset(&rx_status, 0, sizeof(rx_status));
-       rx_status.mactime = le64_to_cpu(__mac80211_hwsim_get_tsf(data));
        rx_status.flag |= RX_FLAG_MACTIME_MPDU;
        rx_status.freq = data->channel->center_freq;
        rx_status.band = data->channel->band;
@@ -684,6 +683,8 @@ static bool mac80211_hwsim_tx_frame_no_nl(struct ieee80211_hw *hw,
 
                if (mac80211_hwsim_addr_match(data2, hdr->addr1))
                        ack = true;
+               rx_status.mactime =
+                       le64_to_cpu(__mac80211_hwsim_get_tsf(data2));
                memcpy(IEEE80211_SKB_RXCB(nskb), &rx_status, sizeof(rx_status));
                ieee80211_rx_irqsafe(data2->hw, nskb);
        }