Message ID | 20210715070745.5033-1-alokad@codeaurora.org (mailing list archive) |
---|---|
Headers | show |
Series | multiple bssid and EMA support in AP mode | expand |
On Thu, 2021-07-15 at 00:07 -0700, Aloka Dixit wrote: > This patchset adds support for multiple BSSID and > enhanced multi-BSSID advertisements for AP mode. > Individual patches describe the changes in this version. How about adding the trivial advertisement to hwsim so we can have some tests in hostapd? johannes
On 2021-08-17 03:35, Johannes Berg wrote: > On Thu, 2021-07-15 at 00:07 -0700, Aloka Dixit wrote: >> This patchset adds support for multiple BSSID and >> enhanced multi-BSSID advertisements for AP mode. >> Individual patches describe the changes in this version. > > How about adding the trivial advertisement to hwsim so we can have some > tests in hostapd? > > johannes Hi Johannes, Yes, I plan to add hwsim advertisement separately once kernel changes are accepted. Will also add hostapd testcases at the same time. Thanks.
On Tue, 2021-09-14 at 20:47 -0700, Aloka Dixit wrote: > On 2021-08-17 03:35, Johannes Berg wrote: > > On Thu, 2021-07-15 at 00:07 -0700, Aloka Dixit wrote: > > > This patchset adds support for multiple BSSID and > > > enhanced multi-BSSID advertisements for AP mode. > > > Individual patches describe the changes in this version. > > > > How about adding the trivial advertisement to hwsim so we can have some > > tests in hostapd? > > > > johannes > > Hi Johannes, > Yes, I plan to add hwsim advertisement separately once kernel > changes are accepted. Will also add hostapd testcases at the > same time. OK, great! But adding it in hwsim is a kernel change, so why not just send that patch together? johannes
On 2021-09-15 03:47, Johannes Berg wrote: > On Tue, 2021-09-14 at 20:47 -0700, Aloka Dixit wrote: >> On 2021-08-17 03:35, Johannes Berg wrote: >> > On Thu, 2021-07-15 at 00:07 -0700, Aloka Dixit wrote: >> > > This patchset adds support for multiple BSSID and >> > > enhanced multi-BSSID advertisements for AP mode. >> > > Individual patches describe the changes in this version. >> > >> > How about adding the trivial advertisement to hwsim so we can have some >> > tests in hostapd? >> > >> > johannes >> >> Hi Johannes, >> Yes, I plan to add hwsim advertisement separately once kernel >> changes are accepted. Will also add hostapd testcases at the >> same time. > > OK, great! But adding it in hwsim is a kernel change, so why not just > send that patch together? > > johannes Hi Johannes, Trivial advertisement will not work because mac80211_hwsim_beacon_tx() does not handle the EMA case which may have more than one beacons transmitted. It will need to be changed to use the newly added ieee80211_beacon_get_template(). Hence I will add a separate change for HWSIM. Thanks.