All of lore.kernel.org
 help / color / mirror / Atom feed
From: Aloka Dixit <quic_alokad@quicinc.com>
To: <johannes@sipsolutions.net>, <linux-wireless@vger.kernel.org>,
	<ath11k@lists.infradead.org>
Cc: Aloka Dixit <quic_alokad@quicinc.com>
Subject: [PATCH 0/9] MBSSID and EMA support in AP mode
Date: Sun, 22 May 2022 23:00:59 -0700	[thread overview]
Message-ID: <20220523060108.23982-1-quic_alokad@quicinc.com> (raw)

- Changes in MAC80211 add support for enhanced multiple BSSID (EMA AP).
This patch is the next version for the following series:
https://patchwork.kernel.org/project/linux-wireless/list/?series=558285&state=%2A&archive=both
The changes are now rebased on top of wireless-testing tree which
includes this series:
https://patchwork.kernel.org/project/linux-wireless/list/?series=617531&state=%2A&archive=both

- Patches for ath11k split the changes from following patch in
logical separate patches:
https://patchwork.kernel.org/project/linux-wireless/patch/20210120003221.21984-1-alokad@codeaurora.org/
And also use the latest API changes in MAC80211 which were different
at the time of V6.

Aloka Dixit (9):
  mac80211: generate EMA beacons in AP mode
  ath11k: add WMI resource config for EMA
  ath11k: set MBSSID and EMA driver capabilities
  ath11k: MBSSID configuration during vdev create/start
  ath11k: create a structure for WMI vdev up parameters
  ath11k: configure MBSSID device parameters
  ath11k: move vif parameter setting in a different function
  ath11k: EMA beacon support
  ath11k: configure WPA and RSNE parameters for nontransmitting
    interface

 drivers/net/wireless/ath/ath11k/core.h |   2 +
 drivers/net/wireless/ath/ath11k/hw.c   |   3 +
 drivers/net/wireless/ath/ath11k/hw.h   |   1 +
 drivers/net/wireless/ath/ath11k/mac.c  | 361 ++++++++++++++++++++++---
 drivers/net/wireless/ath/ath11k/wmi.c  |  27 +-
 drivers/net/wireless/ath/ath11k/wmi.h  |  66 ++++-
 include/net/mac80211.h                 |  77 ++++++
 net/mac80211/cfg.c                     |   9 +-
 net/mac80211/ieee80211_i.h             |   9 +-
 net/mac80211/tx.c                      | 110 +++++++-
 10 files changed, 603 insertions(+), 62 deletions(-)


base-commit: 9335156ac0e174721921c404bd173526c8509124
-- 
2.31.1


WARNING: multiple messages have this Message-ID (diff)
From: Aloka Dixit <quic_alokad@quicinc.com>
To: <johannes@sipsolutions.net>, <linux-wireless@vger.kernel.org>,
	<ath11k@lists.infradead.org>
Cc: Aloka Dixit <quic_alokad@quicinc.com>
Subject: [PATCH 0/9] MBSSID and EMA support in AP mode
Date: Sun, 22 May 2022 23:00:59 -0700	[thread overview]
Message-ID: <20220523060108.23982-1-quic_alokad@quicinc.com> (raw)

- Changes in MAC80211 add support for enhanced multiple BSSID (EMA AP).
This patch is the next version for the following series:
https://patchwork.kernel.org/project/linux-wireless/list/?series=558285&state=%2A&archive=both
The changes are now rebased on top of wireless-testing tree which
includes this series:
https://patchwork.kernel.org/project/linux-wireless/list/?series=617531&state=%2A&archive=both

- Patches for ath11k split the changes from following patch in
logical separate patches:
https://patchwork.kernel.org/project/linux-wireless/patch/20210120003221.21984-1-alokad@codeaurora.org/
And also use the latest API changes in MAC80211 which were different
at the time of V6.

Aloka Dixit (9):
  mac80211: generate EMA beacons in AP mode
  ath11k: add WMI resource config for EMA
  ath11k: set MBSSID and EMA driver capabilities
  ath11k: MBSSID configuration during vdev create/start
  ath11k: create a structure for WMI vdev up parameters
  ath11k: configure MBSSID device parameters
  ath11k: move vif parameter setting in a different function
  ath11k: EMA beacon support
  ath11k: configure WPA and RSNE parameters for nontransmitting
    interface

 drivers/net/wireless/ath/ath11k/core.h |   2 +
 drivers/net/wireless/ath/ath11k/hw.c   |   3 +
 drivers/net/wireless/ath/ath11k/hw.h   |   1 +
 drivers/net/wireless/ath/ath11k/mac.c  | 361 ++++++++++++++++++++++---
 drivers/net/wireless/ath/ath11k/wmi.c  |  27 +-
 drivers/net/wireless/ath/ath11k/wmi.h  |  66 ++++-
 include/net/mac80211.h                 |  77 ++++++
 net/mac80211/cfg.c                     |   9 +-
 net/mac80211/ieee80211_i.h             |   9 +-
 net/mac80211/tx.c                      | 110 +++++++-
 10 files changed, 603 insertions(+), 62 deletions(-)


base-commit: 9335156ac0e174721921c404bd173526c8509124
-- 
2.31.1


-- 
ath11k mailing list
ath11k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath11k

             reply	other threads:[~2022-05-23  7:46 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-23  6:00 Aloka Dixit [this message]
2022-05-23  6:00 ` [PATCH 0/9] MBSSID and EMA support in AP mode Aloka Dixit
2022-05-23  6:01 ` [PATCH 1/9] mac80211: generate EMA beacons " Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-07-01  8:59   ` Johannes Berg
2022-07-01  8:59     ` Johannes Berg
2022-05-23  6:01 ` [PATCH 2/9] ath11k: add WMI resource config for EMA Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-23  6:01 ` [PATCH 3/9] ath11k: set MBSSID and EMA driver capabilities Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-23  6:01 ` [PATCH 4/9] ath11k: MBSSID configuration during vdev create/start Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-23  6:01 ` [PATCH 5/9] ath11k: create a structure for WMI vdev up parameters Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-24 19:30   ` Jeff Johnson
2022-05-24 19:30     ` Jeff Johnson
2022-05-23  6:01 ` [PATCH 6/9] ath11k: configure MBSSID device parameters Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-23  6:01 ` [PATCH 7/9] ath11k: move vif parameter setting in a different function Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-23  6:01 ` [PATCH 8/9] ath11k: EMA beacon support Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit
2022-05-23  6:01 ` [PATCH 9/9] ath11k: configure WPA and RSN parameters for nontransmitting interface Aloka Dixit
2022-05-23  6:01   ` Aloka Dixit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220523060108.23982-1-quic_alokad@quicinc.com \
    --to=quic_alokad@quicinc.com \
    --cc=ath11k@lists.infradead.org \
    --cc=johannes@sipsolutions.net \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.