mbox series

pull-request: wireless-2022-09-03

Message ID 20220903145618.77721-1-johannes@sipsolutions.net
State New
Headers show
Series pull-request: wireless-2022-09-03 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git tags/wireless-2022-09-03

Message

Johannes Berg Sept. 3, 2022, 2:56 p.m. UTC
Hi,

So here we have a set of fixes for the current cycle again,
the one thing I know of that's been relatively widely reported
is the aggregation timer warning, which Mukesh fixes by setting
the link pointer. Also with various other fixes, of course, no
less important.

Due to the link pointer fix, I'd like you to ask to pull this
into net-next soonish, we need this code there to also fill the
link_sta pointer (which doesn't yet exist in net/wireless). I'm
going to send a pull request for wireless-next soon, without
that additional content that's waiting, and once it's all there
together in net-next I'll merge back and add more of wifi7/MLO
work.

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

Thanks,
johannes



The following changes since commit 4ba9d38bb5a3255390dc15d8ac81f656a968273c:

  Merge tag 'wireless-2022-08-26' of git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless (2022-08-26 11:43:20 +0100)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git tags/wireless-2022-09-03

for you to fetch changes up to 2aec909912da55a6e469fd6ee8412080a5433ed2:

  wifi: use struct_group to copy addresses (2022-09-03 16:40:06 +0200)

----------------------------------------------------------------
We have a handful of fixes:
 - fix DMA from stack in wilc1000 driver
 - fix crash on chip reset failure in mt7921e
 - fix for the reported warning on aggregation timer expiry
 - check packet lengths in hwsim virtio paths
 - fix compiler warnings/errors with AAD construction by
   using struct_group
 - fix Intel 4965 driver rate scale operation
 - release channel contexts correctly in mac80211 mlme code

----------------------------------------------------------------
Ajay.Kathat@microchip.com (1):
      wifi: wilc1000: fix DMA on stack objects

Deren Wu (1):
      wifi: mt76: mt7921e: fix crash in chip reset fail

Johannes Berg (3):
      wifi: mac80211: mlme: release deflink channel in error case
      wifi: mac80211: fix locking in auth/assoc timeout
      wifi: use struct_group to copy addresses

Mukesh Sisodiya (1):
      wifi: mac80211: fix link warning in RX agg timer expiry

Soenke Huster (1):
      wifi: mac80211_hwsim: check length for virtio packets

Stanislaw Gruszka (1):
      wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in il4965_rs_fill_link_cmd()

 drivers/net/wireless/intel/iwlegacy/4965-rs.c      |  5 +--
 drivers/net/wireless/mac80211_hwsim.c              |  7 +++-
 .../net/wireless/mediatek/mt76/mt7921/pci_mac.c    |  2 +-
 drivers/net/wireless/microchip/wilc1000/netdev.h   |  1 +
 drivers/net/wireless/microchip/wilc1000/sdio.c     | 39 ++++++++++++++++++----
 drivers/net/wireless/microchip/wilc1000/wlan.c     | 15 +++++++--
 include/linux/ieee80211.h                          |  8 +++--
 net/mac80211/mlme.c                                | 12 +++----
 net/mac80211/rx.c                                  |  4 +++
 net/mac80211/wpa.c                                 |  4 +--
 net/wireless/lib80211_crypt_ccmp.c                 |  2 +-
 11 files changed, 73 insertions(+), 26 deletions(-)