diff options
author | Arend Van Spriel <arend.vanspriel@broadcom.com> | 2017-04-13 13:06:27 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2017-04-18 10:23:50 +0200 |
commit | 96b08fd6080efdfa8f6125cffc6742a2235d92f1 (patch) | |
tree | 994b4a3fa2dbb513740143b3af22a44ea0ee628e /include/net/cfg80211.h | |
parent | 1d5e9f80ab021e3e1f9436627a4ad07a143ccb2c (diff) | |
download | linux-96b08fd6080efdfa8f6125cffc6742a2235d92f1.tar.gz linux-96b08fd6080efdfa8f6125cffc6742a2235d92f1.tar.bz2 linux-96b08fd6080efdfa8f6125cffc6742a2235d92f1.zip |
nl80211: add request id in scheduled scan event messages
For multi-scheduled scan support in subsequent patch a request id
will be added. This patch add this request id to the scheduled
scan event messages. For now the request id will always be zero.
With multi-scheduled scan its value will inform user-space to which
scan the event relates.
Reviewed-by: Hante Meuleman <hante.meuleman@broadcom.com>
Reviewed-by: Pieter-Paul Giesberts <pieter-paul.giesberts@broadcom.com>
Reviewed-by: Franky Lin <franky.lin@broadcom.com>
Signed-off-by: Arend van Spriel <arend.vanspriel@broadcom.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 89fa4995ddca..2a200b964b7a 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -1649,6 +1649,7 @@ struct cfg80211_bss_select_adjust { /** * struct cfg80211_sched_scan_request - scheduled scan request description * + * @reqid: identifies this request. * @ssids: SSIDs to scan for (passed in the probe_reqs in active scans) * @n_ssids: number of SSIDs * @n_channels: total number of channels to scan @@ -1693,6 +1694,7 @@ struct cfg80211_bss_select_adjust { * comparisions. */ struct cfg80211_sched_scan_request { + u64 reqid; struct cfg80211_ssid *ssids; int n_ssids; u32 n_channels; |