mbox series

[0/4] iw: add HE capabilities scan parsing

Message ID 20201118033936.3667788-1-briannorris@chromium.org (mailing list archive)
Headers show
Series iw: add HE capabilities scan parsing | expand

Message

Brian Norris Nov. 18, 2020, 3:39 a.m. UTC
Several others have made halting mentions of doing this:

Subject: iw scan dump for /AX attributes?
https://lore.kernel.org/linux-wireless/8afa882e-64de-7c8b-49f4-ac318f395102@candelatech.com/t/#u

Subject: Adding 802.11ax decode to 'iw scan dump'  Checking for interest and looking for feedback.
https://lore.kernel.org/linux-wireless/MWHPR12MB1533B5C250E9B35367EAF628D9330@MWHPR12MB1533.namprd12.prod.outlook.com/

But none of those have materialized in acceptable form. So here goes my
bad attempt! I only attempted HE capabilities for now, since that's
partially supported already.

Regards,
Brian

Brian Norris (4):
  iw: scan: add extension tag parsing
  iw: util: factor out HE capability parser
  iw: scan: parse HE capabilities
  iw: scan: fixup HE caps whitespace

 iw.h   |   1 +
 scan.c |  40 ++++++++++++
 util.c | 187 ++++++++++++++++++++++++++++++++++++---------------------
 3 files changed, 159 insertions(+), 69 deletions(-)

Comments

David Poole Nov. 19, 2020, 3:06 p.m. UTC | #1
I'll be happy to help test!
Brian Norris Nov. 19, 2020, 7:20 p.m. UTC | #2
On Thu, Nov 19, 2020 at 7:06 AM David Poole <dpoole@cradlepoint.com> wrote:
> I'll be happy to help test!

You're more than welcome to :) Feel free to reply back here with
positive or negative feedback. (And if positive, might as well make
that a "Tested-by: Your Name <your@email.tld>".) I have more HE
clients than APs, so I only have limited test coverage for the "scan"
part.

Brian