mbox series

[v8,mac80211-next,0/3] mac80211: add BSS color change support

Message ID cover.1624872141.git.lorenzo@kernel.org (mailing list archive)
Headers show
Series mac80211: add BSS color change support | expand

Message

Lorenzo Bianconi June 28, 2021, 9:26 a.m. UTC
This series adds support for BSS color collission detection and change.

Changes since v7:
- always notify the driver about bss change in
  ieee80211_color_change_finalize()
- add mt7915 bss color support

Changes since v6:
- rebase on top of mac80211-next
- fix check_patch issues
- alloc nlattr tb array dynamically in nl80211_color_change
- move NL80211_ATTR_CNTDWN_OFFS_BEACON and NL80211_ATTR_CNTDWN_OFFS_PRESP
  in NL80211_ATTR_COLOR_CHANGE_ELEMS as nested attributes
- remove unused definitions
- remove mbss series dependency
- remove ath11k code

John Crispin (2):
  nl80211: add support for BSS coloring
  mac80211: add support for BSS color change

Lorenzo Bianconi (1):
  mt76: mt7915: introduce bss coloring support

 .../net/wireless/mediatek/mt76/mt7915/init.c  |   1 +
 .../net/wireless/mediatek/mt76/mt7915/main.c  |  26 ++
 .../net/wireless/mediatek/mt76/mt7915/mcu.c   |  84 +++++--
 .../net/wireless/mediatek/mt76/mt7915/mcu.h   |  21 +-
 .../wireless/mediatek/mt76/mt7915/mt7915.h    |   2 +
 include/net/cfg80211.h                        |  92 +++++++
 include/net/mac80211.h                        |  29 +++
 include/uapi/linux/nl80211.h                  |  43 ++++
 net/mac80211/cfg.c                            | 234 +++++++++++++++++-
 net/mac80211/ieee80211_i.h                    |  11 +
 net/mac80211/iface.c                          |   2 +
 net/mac80211/tx.c                             |  25 +-
 net/wireless/nl80211.c                        | 157 ++++++++++++
 net/wireless/rdev-ops.h                       |  13 +
 net/wireless/trace.h                          |  46 ++++
 15 files changed, 736 insertions(+), 50 deletions(-)

Comments

Ryder Lee June 29, 2021, 1:32 a.m. UTC | #1
On Mon, 2021-06-28 at 11:26 +0200, Lorenzo Bianconi wrote:
> This series adds support for BSS color collission detection and
> change.
> 
> Changes since v7:
> - always notify the driver about bss change in
>   ieee80211_color_change_finalize()
> - add mt7915 bss color support
> 
> Changes since v6:
> - rebase on top of mac80211-next
> - fix check_patch issues
> - alloc nlattr tb array dynamically in nl80211_color_change
> - move NL80211_ATTR_CNTDWN_OFFS_BEACON and
> NL80211_ATTR_CNTDWN_OFFS_PRESP
>   in NL80211_ATTR_COLOR_CHANGE_ELEMS as nested attributes
> - remove unused definitions
> - remove mbss series dependency
> - remove ath11k code
> 
> John Crispin (2):
>   nl80211: add support for BSS coloring
>   mac80211: add support for BSS color change
> 
> Lorenzo Bianconi (1):
>   mt76: mt7915: introduce bss coloring support
> 
>  .../net/wireless/mediatek/mt76/mt7915/init.c  |   1 +
>  .../net/wireless/mediatek/mt76/mt7915/main.c  |  26 ++
>  .../net/wireless/mediatek/mt76/mt7915/mcu.c   |  84 +++++--
>  .../net/wireless/mediatek/mt76/mt7915/mcu.h   |  21 +-
>  .../wireless/mediatek/mt76/mt7915/mt7915.h    |   2 +
>  include/net/cfg80211.h                        |  92 +++++++
>  include/net/mac80211.h                        |  29 +++
>  include/uapi/linux/nl80211.h                  |  43 ++++
>  net/mac80211/cfg.c                            | 234
> +++++++++++++++++-
>  net/mac80211/ieee80211_i.h                    |  11 +
>  net/mac80211/iface.c                          |   2 +
>  net/mac80211/tx.c                             |  25 +-
>  net/wireless/nl80211.c                        | 157 ++++++++++++
>  net/wireless/rdev-ops.h                       |  13 +
>  net/wireless/trace.h                          |  46 ++++
>  15 files changed, 736 insertions(+), 50 deletions(-)
> 

For mac80211 series Acked-by: Ryder Lee <ryder.lee@mediatek.com>