diff options
author | Avraham Stern <avraham.stern@intel.com> | 2019-05-29 15:25:28 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2019-06-14 15:46:33 +0200 |
commit | b65842025335711e2a0259feb4dbadb0c9ffb6d9 (patch) | |
tree | 8ca2e5131d7cc899f77d054cff8e892b9802b6fb /net/wireless | |
parent | 4f488fbca2a86cc7714a128952eead92cac279ab (diff) | |
download | talos-op-linux-b65842025335711e2a0259feb4dbadb0c9ffb6d9.tar.gz talos-op-linux-b65842025335711e2a0259feb4dbadb0c9ffb6d9.zip |
cfg80211: report measurement start TSF correctly
Instead of reporting the AP's TSF, host time was reported. Fix it.
Signed-off-by: Avraham Stern <avraham.stern@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless')
-rw-r--r-- | net/wireless/pmsr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/wireless/pmsr.c b/net/wireless/pmsr.c index 1b190475359a..c09fbf09549d 100644 --- a/net/wireless/pmsr.c +++ b/net/wireless/pmsr.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 */ /* - * Copyright (C) 2018 Intel Corporation + * Copyright (C) 2018 - 2019 Intel Corporation */ #ifndef __PMSR_H #define __PMSR_H @@ -448,7 +448,7 @@ static int nl80211_pmsr_send_result(struct sk_buff *msg, if (res->ap_tsf_valid && nla_put_u64_64bit(msg, NL80211_PMSR_RESP_ATTR_AP_TSF, - res->host_time, NL80211_PMSR_RESP_ATTR_PAD)) + res->ap_tsf, NL80211_PMSR_RESP_ATTR_PAD)) goto error; if (res->final && nla_put_flag(msg, NL80211_PMSR_RESP_ATTR_FINAL)) |