Hi, So ... since we were discussing and wrapping up the kunit stuff, I decided to put together another pull request with a few things, notably the first kunit tests for wifi. Please pull and let us know if there's any problem. Thanks, johannes The following changes since commit 968509128207f122d7177ffb6ff51c9c6fa7e13d: wifi: iwlwifi: replace ENOTSUPP with EOPNOTSUPP (2023-12-21 20:35:17 +0100) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git tags/wireless-next-2024-01-03 for you to fetch changes up to 3aca362a4c1411ec11ff04f81b6cdf2359fee962: wifi: mac80211: remove redundant ML element check (2024-01-03 15:35:38 +0100) ---------------------------------------------------------------- Just a couple of more things over the holidays: - first kunit tests for both cfg80211 and mac80211 - a few multi-link fixes - DSCP mapping update - RCU fix ---------------------------------------------------------------- Benjamin Berg (5): kunit: add parameter generation macro using description from array kunit: add a convenience allocation wrapper for SKBs wifi: cfg80211: tests: add some scanning related tests wifi: cfg80211: correct comment about MLD ID wifi: cfg80211: parse all ML elements in an ML probe response Edward Adam Davis (1): wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update Ilan Peer (1): wifi: cfg80211: Update the default DSCP-to-UP mapping Johannes Berg (4): wifi: mac80211: add kunit tests for public action handling wifi: mac80211: kunit: generalize public action test wifi: mac80211: kunit: extend MFP tests wifi: mac80211: remove redundant ML element check Zheng tan (1): wifi: mac80211: fix spelling typo in comment Documentation/dev-tools/kunit/usage.rst | 12 +- include/kunit/skbuff.h | 56 +++ include/kunit/test.h | 19 + net/mac80211/debugfs_sta.c | 2 +- net/mac80211/ieee80211_i.h | 10 + net/mac80211/mlme.c | 29 +- net/mac80211/rx.c | 4 +- net/mac80211/tests/Makefile | 2 +- net/mac80211/tests/mfp.c | 286 +++++++++++++++ net/wireless/core.h | 13 +- net/wireless/scan.c | 58 ++- net/wireless/tests/Makefile | 2 +- net/wireless/tests/scan.c | 625 ++++++++++++++++++++++++++++++++ net/wireless/tests/util.c | 56 +++ net/wireless/tests/util.h | 66 ++++ net/wireless/util.c | 56 +++ 16 files changed, 1244 insertions(+), 52 deletions(-) create mode 100644 include/kunit/skbuff.h create mode 100644 net/mac80211/tests/mfp.c create mode 100644 net/wireless/tests/scan.c create mode 100644 net/wireless/tests/util.c create mode 100644 net/wireless/tests/util.h