linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] wireless-next-2025-11-12
@ 2025-11-12 11:50 Johannes Berg
  2025-11-12 19:00 ` patchwork-bot+netdevbpf
  0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2025-11-12 11:50 UTC (permalink / raw)
  To: netdev; +Cc: linux-wireless

Hi,

And a little bit more stuff for -next as well, but
Jeff informs me that Qualcomm has a lot pending from
their refactor side-branch that reworks the ath12k
driver architecture towards their WiFi8 chipsets,
which will come soon.

Please pull and let us know if there's any problem.

Thanks,
johannes



The following changes since commit 1ec9871fbb80ba7db84f868f6aa40d38bc43f0e0:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net (2025-11-06 09:27:40 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git tags/wireless-next-2025-11-12

for you to fetch changes up to 0eb272033b64ef05fffa30288284659c33e17830:

  Merge tag 'ath-next-20251111' of git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath (2025-11-12 09:56:28 +0100)

----------------------------------------------------------------
More -next material, notably:
 - split ieee80211.h file, it's way too big
 - mac80211: initial chanctx work towards NAN
 - mac80211: MU-MIMO sniffer improvements
 - ath12k: statistics improvements

----------------------------------------------------------------
Abdun Nihaal (1):
      wifi: cw1200: Fix potential memory leak in cw1200_bh_rx_helper()

Benjamin Berg (2):
      wifi: mac80211: track MU-MIMO configuration on disabled interfaces
      wifi: mac80211: make monitor link info check more specific

Chien Wong (1):
      wifi: cfg80211: fix doc of struct key_params

Emmanuel Grumbach (1):
      wifi: cfg80211: use a C99 initializer in wiphy_register

Johannes Berg (18):
      wifi: ieee80211: split mesh definitions out
      wifi: ieee80211: split HT definitions out
      wifi: ieee80211: split VHT definitions out
      wifi: ieee80211: split HE definitions out
      wifi: ieee80211: split EHT definitions out
      wifi: ieee80211: split S1G definitions out
      wifi: ieee80211: split P2P definitions out
      wifi: ieee80211: split NAN definitions out
      wifi: cfg80211: fix EHT typo
      wifi: mac80211: fix EHT typo
      wifi: mac80211: make link iteration safe for 'break'
      wifi: mac80211: remove chanctx to link back-references
      wifi: mac80211: simplify ieee80211_recalc_chanctx_min_def() API
      wifi: mac80211: add and use chanctx usage iteration
      wifi: mac80211: remove "disabling VHT" message
      wifi: mac80211: pass frame type to element parsing
      wifi: mac80211: remove unnecessary vlan NULL check
      Merge tag 'ath-next-20251111' of git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath

Manish Dharanenthiran (2):
      wifi: ath12k: Make firmware stats reset caller-driven
      wifi: ath12k: Fix timeout error during beacon stats retrieval

Pagadala Yesu Anjaneyulu (2):
      wifi: cfg80211/mac80211: clean up duplicate ap_power handling
      wifi: cfg80211/mac80211: Add fallback mechanism for INDOOR_SP connection

 drivers/net/wireless/ath/ath12k/core.c    |    2 -
 drivers/net/wireless/ath/ath12k/core.h    |    1 -
 drivers/net/wireless/ath/ath12k/debugfs.c |    9 +-
 drivers/net/wireless/ath/ath12k/mac.c     |   15 +-
 drivers/net/wireless/ath/ath12k/wmi.c     |   12 +-
 drivers/net/wireless/st/cw1200/bh.c       |    6 +-
 include/linux/ieee80211-eht.h             | 1182 +++++++++++
 include/linux/ieee80211-he.h              |  824 +++++++
 include/linux/ieee80211-ht.h              |  292 +++
 include/linux/ieee80211-mesh.h            |  230 ++
 include/linux/ieee80211-nan.h             |   35 +
 include/linux/ieee80211-p2p.h             |   71 +
 include/linux/ieee80211-s1g.h             |  575 +++++
 include/linux/ieee80211-vht.h             |  236 ++
 include/linux/ieee80211.h                 | 3308 +----------------------------
 include/net/cfg80211.h                    |   34 +-
 include/net/mac80211.h                    |    2 +-
 net/mac80211/agg-rx.c                     |    7 +-
 net/mac80211/cfg.c                        |   47 +-
 net/mac80211/chan.c                       |  397 ++--
 net/mac80211/driver-ops.c                 |    8 +-
 net/mac80211/he.c                         |    6 +-
 net/mac80211/ibss.c                       |   14 +-
 net/mac80211/ieee80211_i.h                |   50 +-
 net/mac80211/iface.c                      |   46 +-
 net/mac80211/link.c                       |    5 -
 net/mac80211/main.c                       |    3 +-
 net/mac80211/mesh.c                       |   26 +-
 net/mac80211/mesh_hwmp.c                  |    7 +-
 net/mac80211/mesh_plink.c                 |    7 +-
 net/mac80211/mlme.c                       |   71 +-
 net/mac80211/parse.c                      |   30 +-
 net/mac80211/scan.c                       |    6 +-
 net/mac80211/tdls.c                       |   12 +-
 net/mac80211/tests/elems.c                |    4 +-
 net/mac80211/util.c                       |   37 +-
 net/wireless/core.c                       |   12 +-
 net/wireless/core.h                       |    3 +-
 net/wireless/nl80211.c                    |    4 +-
 net/wireless/scan.c                       |   20 +-
 40 files changed, 4003 insertions(+), 3653 deletions(-)
 create mode 100644 include/linux/ieee80211-eht.h
 create mode 100644 include/linux/ieee80211-he.h
 create mode 100644 include/linux/ieee80211-ht.h
 create mode 100644 include/linux/ieee80211-mesh.h
 create mode 100644 include/linux/ieee80211-nan.h
 create mode 100644 include/linux/ieee80211-p2p.h
 create mode 100644 include/linux/ieee80211-s1g.h
 create mode 100644 include/linux/ieee80211-vht.h

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] wireless-next-2025-11-12
  2025-11-12 11:50 [GIT PULL] wireless-next-2025-11-12 Johannes Berg
@ 2025-11-12 19:00 ` patchwork-bot+netdevbpf
  0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-11-12 19:00 UTC (permalink / raw)
  To: Johannes Berg; +Cc: netdev, linux-wireless

Hello:

This pull request was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 12 Nov 2025 12:50:29 +0100 you wrote:
> Hi,
> 
> And a little bit more stuff for -next as well, but
> Jeff informs me that Qualcomm has a lot pending from
> their refactor side-branch that reworks the ath12k
> driver architecture towards their WiFi8 chipsets,
> which will come soon.
> 
> [...]

Here is the summary with links:
  - [GIT,PULL] wireless-next-2025-11-12
    https://git.kernel.org/netdev/net-next/c/e949824730da

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2025-11-12 19:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-12 11:50 [GIT PULL] wireless-next-2025-11-12 Johannes Berg
2025-11-12 19:00 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).