Commit graph

297916 commits

Author SHA1 Message Date
Ed Maste
8a3537aaf7 Makefile.inc1: Make package timestamps reproducible by default
Set package archive timestamps based on most recent source commit
timestamp (approach suggested by bapt).

I'd like to include git metadata in a file included in src tarballs, so
that the build is reproducible (including the hash shown in uname etc.)
outside of a git checkout.  There are still details to be sorted out to
do that, so this is an interim step to improve reproducibility.

Reviewed by:	bapt
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D49165
2025-02-28 10:11:52 -05:00
Andrey V. Elsukov
f2644d64b4 routing: set net.route.multipath=0 when kernel doesn't have ROUTE_MPATH
MFC after:	1 week
2025-02-28 17:05:47 +03:00
Ed Maste
ae2b84d9ab man4: Fix duplicate if_rtw89.4 MLINK
Fixes: 4262dbc579 ("wifi manuals: Mlink + document description consistency")
Sponsored by:	The FreeBSD Foundation
2025-02-28 08:33:14 -05:00
artembunichev
8cebb06300 open.2: add separate paragraph for O_CREAT
PR:	284353
MFC after:	1 week
2025-02-28 12:29:12 +02:00
Kevin Lo
5c7087c349 ixgbe: Fix a logic error in ixgbe_read_mailbox_vf()
Reviewed by:	kbowling
Differential Revision:	https://reviews.freebsd.org/D49156
2025-02-28 16:12:00 +08:00
Adrian Chadd
92caff2b1b wlanwatch: clean up to compile / run
* add static where needed
* delete old unused flags, dating back to the initial commit from Sam
* indirect through void * where appropriate, to avoid LLVM alignment
  errors
* PRIu64 where needed

This does work, but it currently doesn't track the ifname itself,
so we see ifindexes, not ifnames:

Wed Feb 26 18:35:59 RTM_IEEE80211: if# 2, scan complete
Wed Feb 26 18:35:59 RTM_IEEE80211: if# 2, associate with 30🇩🇪4b:db:46:0a
Wed Feb 26 18:35:59 RTM_IFINFO: if# 2, link: up, flags:<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST>

.. but it does work!

Differential Revision:	https://reviews.freebsd.org/D49149
2025-02-27 18:49:49 -08:00
Adrian Chadd
db80116da4 wlanwds: add pidfile support
Add pidfile support based on "man pidfile".

Differential Revision:	https://reviews.freebsd.org/D48997
2025-02-27 18:49:49 -08:00
Adrian Chadd
571743bdc6 wlanwds: use a local copy of the ifaddr sockaddr, avoid cast
Using the cast results in alignment errors from LLVM.
Fix it to go through void *.

Differential Revision:	https://reviews.freebsd.org/D48996
2025-02-27 18:49:49 -08:00
Adrian Chadd
36347cfbf7 wlanwds: convert getifaddrs() iteration to use the ifa_next pointer
I don't know what I was thinking in 2017 when I wrote this, but
it's very wrong.

Use ifa->ifa_next to iterate, not the array index / pointer arithmetic.

Differential Revision:	https://reviews.freebsd.org/D49148
2025-02-27 18:49:49 -08:00
Alexander Ziaee
4262dbc579
wifi manuals: Mlink + document description consistency
Interfaces all have an mlink to if_$foo. Add these for the missing ones
and remove an incorrect one from rtwn_pci. Wireless network drivers are
all accessible via `apropos -s4 "wireless network driver", except two
which are "wireless network device". I actually prefer the latter, but
make them all consistent upon the more common parlance. Tag SPDX on one
of the files I touched, while here.

MFC after:		3 days
Reviewed by:		bz, carlavilla, mhorne
Approved by:		carlavilla, mhorne (mentors)
Differential Revision:	https://reviews.freebsd.org/D49063
2025-02-27 17:20:22 -05:00
Olivier Certner
d3c4b002d1
queue: Fix STAILQ_ASSERT_EMPTY()
The 'while' part corresponding to the 'do' was missing.

Did not notice the problem as later commits using it have been stashed
and never reworked up to now, and it is currently unused in the tree.

While here, fix spacing after the '#define' in the !(_KERNEL &&
INVARIANS) part.

Fixes:          34740937f7 ("queue: New debug macros for STAILQ")
MFC after:      1 minute
Sponsored by:   The FreeBSD Foundation
2025-02-27 22:04:17 +01:00
Piotr Pawel Stefaniak
2980318b27 sh.1: extend the section about getopts
Provide more details about the influence of optargs' first character
on the shell's behavior in regard to invalid arguments. Also do some
minor word-smithing.

Original submission by rea@

Differential Revision:	https://reviews.freebsd.org/D49106
2025-02-27 18:39:29 +01:00
Doug Moore
6b33d9dc46 vm_page: expose page_alloc_after
vm_page_alloc() just calls vm_page_alloc_after(), after it has found
the predecessor of a page parameter. Many callers of vm_page_alloc()
already know that predecessor. Letting them pass that to
vm_page_alloc_after() directly could save a little redundant
calculation.

Reviewed by:	alc
Tested by:	pho
Differential Revision:	https://reviews.freebsd.org/D49103
2025-02-27 10:55:33 -06:00
Zhenlei Huang
97309cec6f netinet: Make in_ifhasaddr() return bool
No functional change intended.

MFC after:	1 week
2025-02-27 23:58:20 +08:00
Zhenlei Huang
69beb16284 netinet: Make in_localaddr() return bool
It is used as a boolean function everywhere.

No functional change intended.

MFC after:	1 week
2025-02-27 23:58:20 +08:00
Kajetan Staszkiewicz
f6f116cdbd pf: Make af-to work on outbound interface
Currently af-to works only on inbound interface by creating a reversed
NAT state key which is used to match traffic returning on the outbound
interface.

Such limitation is not necessary. When an af-to state is created
for an outbound rule do not reverse the NAT state key, making it work
just like if it was created for a normal NAT rule. Depending on firewall
design it might be easier and more natural to use af-to on the outbound
interface.

Reviewed by:		kp
Approved by:		kp (mentor)
Sponsored by:		InnoGames GmbH
Differential Revision:	https://reviews.freebsd.org/D49122
2025-02-27 16:28:27 +01:00
Stefan Eßer
ab6a311c72 libc/gen/fts.c: fix assignment
Fix typo in commit e59991206b ("==" instead of "=" for the assignment
of st_ino).

Reported by:	Coverity Scan CID 1592442
Approved by:	kib
Fixes:		e59991206b fts(3): be less strict when automount does its job under us walking autofs mount
2025-02-27 10:29:17 +01:00
Wei Hu
9b8701b81f mana: refill the rx mbuf in batch
Set the default refill threshod to be one quarter of the rx queue
length. User can change this value with hw.mana.rx_refill_thresh
in loader.conf. It improves the rx completion handling by saving
10% to 15% of overall time with this change.

Tested by:	whu
MFC after:	2 weeks
Sponsored by:	Microsoft
2025-02-27 08:08:13 +00:00
Kristof Provost
8a85584785 pf: fix incorrect calls to pf_translate_icmp_af()
The 'iih' argument is already a pointer, pass it as is rather than its address.

Sponsored by:	Rubicon Communications, LLC ("Netgate")
2025-02-26 23:40:40 +01:00
Kyle Evans
181549c37f libbe: avoid copying encryption-related props
libzfs insists that these be cloned from the origin, so avoid making a
deep copy of them ourselves to unbreak creating a new BE from a BE with
encrypted components -- in today's environment, without a loader that
does encryption, this means a deep BE setup where something underneath
the BE (e.g., home directories) are encrypted.

Reported and tested by:	arrowd
Reviewed by:	allanjude
Differential Revision:	https://reviews.freebsd.org/D48464
2025-02-26 16:24:24 -06:00
Adrian Chadd
17e8437e8d net80211: update get_sta_info() to only populate isi_txrate for legacy rates
The isi_txrate field is 8 bits and only represents legacy/HT rates.
So to avoid logging a warning, only populate if it's a legacy/HT
rate.

Differential Revision:	https://reviews.freebsd.org/D48616
2025-02-26 11:31:27 -08:00
Adrian Chadd
e274a23c0d net80211: migrate ieee80211_rate2media() to use ieee80211_node_txrate
This is one of the two obvious left-over dot11rate lookups that trigger
a debug print.  (The other is get_sta_info()).

* Change ieee80211_rate2media() to use the passed in ieee80211_node_txrate
  and use the rate type field to see if it's legacy/ht or vht.
* .. and (I hope!) actually handle the VHT rate correctly.
* Change the callers of ieee80211_rate2media() to use the new static
  initialisers.

For the one spot in ieee80211_ht.c which uses the HT initialiser, it should
just be a straight up mechanical change that correctly sets the HT MCS
rate.

For the rest of them in ieee80211.c, they're doing table initialisation
for the media types / rates, and it's currently very focused on legacy
rates.  So just leave that all as-is for now with a mechanical change.

Differential Revision:	https://reviews.freebsd.org/D48615
2025-02-26 11:31:27 -08:00
Adrian Chadd
62823019db net80211: add static initialisers for the ieee80211_node_txrate options
Add static initialisers for legacy, ht and vht rates.

Differential Revision:	https://reviews.freebsd.org/D48614
2025-02-26 11:31:26 -08:00
Adrian Chadd
6fef9e7378 net80211: update ieee80211_node_get_txrate_mbit() to support VHT
Update ieee80211_node_get_txrate_mbit() to use
ieee80211_phy_vht_get_mcs_kbit() to calculate VHT rates.

For now just assume long-GI; I'd have to go and do some extra
work to figure out which short/long GI flag to use.

Differential Revision:	https://reviews.freebsd.org/D48613
2025-02-26 11:31:26 -08:00
Adrian Chadd
ff0e22f88d net80211: add ieee80211_phy_vht_get_mcs_kbit()
Add ieee80211_phy_vht_get_mcs_kbit(), which calculates the VHT rate
in kbit/sec.

Differential Revision:	https://reviews.freebsd.org/D48612
2025-02-26 11:31:25 -08:00
Adrian Chadd
4b2c7dfe76 net80211: add VHT MCS in AMRR rate control
This is a simple implementation, similar to HT, to generate
VHT MCS rates for testing.

I've verified it seems to do the right thing through
MCS 0..9 and NSS 1..2.  It's not very optimal - same issues as
with 11n - but it at least now fully tests the 11ac TX path in
rtwn and the tx rate refactoring.

Differential Revision:	https://reviews.freebsd.org/D48611
2025-02-26 11:31:24 -08:00
Adrian Chadd
078acac882 net80211: refactor amrr_node_init() into HT and legacy paths
Refactor amrr_node_init() into HT and legacy paths, clean up the
printing to be a bit clearer about the selected rates.

This is precursor work to setting VHT rates in ni->ni_txrate .

Differential Revision:	https://reviews.freebsd.org/D48429
2025-02-26 11:31:24 -08:00
Adrian Chadd
e99cbea414 net80211: refactor amrr_update() into HT and legacy paths
Split the amrr_update() routine into HT and legacy paths.
Currently they're the same, minus HT / non-HT specific comments
and some logging changes.

HT rates don't monotonically go up (ie, going MCS 7 -> MCS 8 is wrong,
as MCS8 is "just" two stream MCS0) and failing a rate by a little
shouldn't necessarily preclude testing the next rate up.

This should be a no-op, besides the logging changes.

Locally tested:

* RTL8192CU, STA mode

Differential Revision:	https://reviews.freebsd.org/D48248
Reviewed by:	bz, thj
2025-02-26 11:31:21 -08:00
Adrian Chadd
7b0e3c5b2b net80211: add ieee80211_vht_node_check_tx_valid_mcs()
Introduce ieee80211_vht_node_check_tx_valid_mcs(), which takes the
node, bandwidth, NSS and MCS and validates whether that is possible
to TX to the given node.

Differential Revision:	https://reviews.freebsd.org/D48610
Reviewed by:	bz, thj
2025-02-26 11:31:02 -08:00
Adrian Chadd
1086f7bab3 net80211: add node VHT transmit rate helper functions
* add a node VHT transmit function, which configures the parameters
  accordingly.

* add a node VHT transmit function which just copies in another
  ieee80211_node_txrate struct.

Differential Revision:	https://reviews.freebsd.org/D48609
Reviewed by:	bz
2025-02-26 11:30:51 -08:00
Adrian Chadd
1568caaf57 net80211: add valid VHT MCS combinations and helper functions
Not all NSS / MCS / channel bandwidth combinations are valid.

This will be important for rate control and transmit rate
setup (eg static management, unicast, multicast rates.)

This is based on 802.11-2020 Section 21.5 (Parameters for VHT-MCSs.)

Differential Revision:	https://reviews.freebsd.org/D48608
Reviewed by:	bz
2025-02-26 11:30:51 -08:00
Adrian Chadd
1c746222c2 net80211: Implement ieee80211_setup_vht_rates()
Implement ieee80211_setup_vht_rates() - calculate the intersection between
the peers advertised RX VHT MCS map and the vap's configured TX map.

Whilst here, remove the unused vhtcap/vhtinfo fields; they're
already populated in the ieee80211_node before ieee80211_setup_vht_rates()
is called.

Differential Revision:	https://reviews.freebsd.org/D48607
Reviewed by:	bz
2025-02-26 11:30:23 -08:00
Adrian Chadd
fdc8841611 rtwn: move to using ieee80211_node_get_txrate()
Migrate the transmit path to use ieee80211_node_get_txrate(), and handle
VHT rates.

Nothing is currently setting VHT rates, but the driver should now
be ready.

Differential Revision:	https://reviews.freebsd.org/D48606
Reviewed by:	bz
2025-02-26 11:30:01 -08:00
Adrian Chadd
0da0a5fc73 net80211: add ieee80211_node_get_txrate() to populate the "new" transmit struct
ieee80211_node_get_txrate() populates the passed-in ieee80211_node_txrate with
the current rate configuration.

This is a no-op - nothing is yet setting VHT rates.

Differential Revision:	https://reviews.freebsd.org/D48605
Reviewed by:	bz
2025-02-26 11:29:52 -08:00
Adrian Chadd
378eeae502 net80211: convert ni_txrate to a struct, with extra rate information
* create struct ieee80211_node_txrate, which represents both
  the existing legacy / HT rates, and makes space for VHT rates

* convert the ieee80211_node_* routines that manipulate the txrate
  field to use the new format

* return OFDM6 for now if a VHT rate is set but the driver calls
  ieee80211_node_get_txrate_dot11rate().  It SHOULD be the lowest
  available rate - which for 11b will be a CCK rate, for
  turbo/half/quarter will be different rates! - but this is just
  for development.

This should be a no-op for existing drivers and rate control, as
everything now uses the accessor functions instead of directly
accessing ni->ni_txrate.

Locally tested:

* RTL8821AU, STA mode (5GHz VHT/40)

Differential Revision:	https://reviews.freebsd.org/D48604
Reviewed by:	bz, thj
2025-02-26 11:29:39 -08:00
Adrian Chadd
46de4d9fc2 net80211: change ieee80211_ratectl_rate() to not return a rix
There are only a few places where the returned rix is used:

* linuxkpi - logging
* bwi/bwn - used for finding a fallback rate to choose, which
  honestly should be returned by the ratectl API
* iwm - building the rateset to program into firmware

Everyone else uses the dot11rate value in ni->ni_txnode.

This is a precursor for VHT and later rate support; where currently
there aren't rate tables in ieee80211_phy.c for VHT and later
rates.

Although it's likely doable to add tables for VHT, 11ax and MU-OFDMA
(HE) rates are sufficiently larger/different to just not fit in the
current scheme without more refactoring.

Differential Revision:	https://reviews.freebsd.org/D48603
Reviewed by:	bz, thj
2025-02-26 11:29:36 -08:00
Adrian Chadd
7067450010 sys: convert ni->ni_txrate references use to the new net80211 API
This just mechanically converts things.

* For linuxkpi, it was just used for display.
* For uath, it was just used for display, as firmware
  doesn't report it up.

Differential Revision:	https://reviews.freebsd.org/D48602
Reviewed by:	bz, thj
2025-02-26 11:29:18 -08:00
Adrian Chadd
38075f7d5c net80211: remove direct use of ni->ni_txrate, add indirection methods
The summary:

* Refactor ni_txrate access into ieee80211_node_get_txrate_dot11rate()
  and ieee80211_node_set_txrate_dot11rate(). These wrap the ni->ni_txrate
  access and will eventually be able to do runtime sanity checks and
  fallback where necessary.

* Refactor ieee80211_node_get_txrate_kbit() from the ioctl code which
  sets isi_txmbps (which is in 0.5Mbit/s units.)  This new routine
  returns the TX rate in kbit/s units.

* Also use ieee80211_node_get_txrate_kbit() in various places in the
  code where the dot11rate was turned into a Mbit/sec value, which was
  very wrong for HT (but also only used for logging, so it didn't
  have an effect on normal runtime.)

* Mb -> Mbit/s

The long version:

The current ni->ni_txrate value is what net80211's phy code
calls a 'dot11rate'.  Inside the ieee80211_phy.c tables you'll
find a bunch of tables which represent:

* for legacy rates its in 1/2 mbit units.
* for turbo (Atheros 40MHz OFDM) it's the non-turbo rates, but the
  turbo rate speed in kbit/sec.
* for 802.11n rates its the MCS, starting at 0x80.

However there are a couple of catches with this:

* Basic rates are represented in the pre-11n rates using the high bit
  (IEEE80211_RATE_BASIC)
* 11n rates are also represented using the high bit (IEEE80211_RATE_MCS)

Now, ni->ni_txrate will clear the IEEE80211_RATE_BASIC flag before
storing it, so if the high bit exists it must be an 802.11n rate.
However, there's still a bunch of code everywhere that purposefully
filters that out.

The goals of this commit:

* Provide an easy API to migrate existing drivers and other consumers
  to - ieee80211_node_get_txrate_dot11rate() is defined as "will return
  the normal legacy or HT rate" so all the existing code can work.
* Lay the ground work for extending ni_txrate (and a rate representation
  in general) that can represent legacy, HT, VHT, EHT, HE, etc rates.
* Create a central place where ni_txrate is updated from rate control,
  drivers that will update ni_txrate itself, and consumers,
  so we can provide some basic runtime checks / logging as VHT, EHT, HE,
  etc rates are eventually added.

For example, a VHT driver will eventually receive VHT rates, but an
existing HT driver will not, so the API should log and return a
sensible default when something like a VHT rate shows up on a HT only
device.

The rate control code currently returns a rix, and sets ni_txrate to the
dot11rate.  Drivers can choose either.  However, choosing the rix is
risky because you need to know if it's the ni_rates or ni_htrates, which
requires a lot of duplicate work that lines up consistently at all
layers (see the AMRR code for an example.)

Differential Revision: https://reviews.freebsd.org/D48601
Reviewed by:	bz, thj
2025-02-26 11:29:09 -08:00
Kristof Provost
a6b74183b6 pf: list dependecy on crypto.ko
Since 9d5c83a0b8 pf depends on the crypto module (for SHA512_*).
Explicitly list this dependency.

PR:		285019
Sponsored by:	Rubicon Communications, LLC ("Netgate")
2025-02-26 15:58:29 +01:00
John Baldwin
5b51147399 ctld: Permit simpler syntax for target LUNs in UCL
Allow the LUN number to be specified as the key for a LUN instead
of requiring it as a "number" field.  If a key is used, permit
a simple string value to be used for non-anymous LUNs.  This permits
replacing:

	lun = [
		{ number = 0, name = zvol_lun },
		{
			number = 1
			backend = ramdisk
			size = 1GB
		}
	]

with:

	lun = {
		0 = zvol_lun
		1 {
			backend = ramdisk
			size = 1GB
		}
	}

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D48939
2025-02-26 10:14:53 -05:00
John Baldwin
e49db000c4 ctld: Permit targets to use a string for portal-groups in UCL
In the case that a separate auth-group is not required, this permits
replacing:

	portal-group = { name = pg0 }

with:

	portal-group = pg0

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D48938
2025-02-26 10:13:56 -05:00
John Baldwin
b797cc839a ctld: Support anonymous LUN entries in UCL
If a target LUN entry doesn't have a name property, assume it is an
anonymous LUN and parse other properties from the entry to define the
LUN.

This removes the odd support for target LUNs only named by an integer.
My guess is this was meant to implement support for anonymous LUNs
based on how the syntax for this works in the non-UCL case, but the
prior implementation was useless (it just created unconfigured LUNs).

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D48937
2025-02-26 10:13:48 -05:00
John Baldwin
67940b204f ctld: Add missing properties to the UCL parser
- Support for "foreign", "offload", and "tag" properties in portal
  group contexts.

- Support for "ctl-lun" and "device-type" properties in LUN contexts.

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D48936
2025-02-26 10:12:25 -05:00
John Baldwin
e28b758b35 ctld: Be more consistent for auth parameters in the UCL config
The auth-group context required an array of entries for "chap",
"chap-mutual", "initiator-name", and "initiator-portal" whereas the
target context required exactly one entry (and only permitted a single
entry).

Allow either a single entry or an array of entries for these keywords
in both the auth-group and target contexts.

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D48935
2025-02-26 10:11:30 -05:00
John Baldwin
f3a43b3db8 ctld: Fail UCL configurations with a nested error
Errors from auth groups, portal groups, global luns, and targets were
not propagated out of the main loop.

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D49071
2025-02-26 10:11:07 -05:00
John Baldwin
d42a73fb6a ctld: Add a dedicated API between parse.y and the rest of the program
The primary purpose of this is to permit the rest of ctld to use C++.
However, this also has the nice side effect of reducing code
duplication with the UCL parser.

As a general rule, setting of options including error handling for
invalid values, etc. is moved out of parse.y and into conf.c.  The
globals for the current configuration, auth group, portal group, lun,
and target are also moved into conf.c hiding the types from parse.y.
The intention is that all of the functions declared in conf.h will be
extern "C" for use by parse.y and that the backing data structures can
be reimplemented as C++ classes instead of C structures if desired.

A few other small changes are included with this refactoring:

- Warn and fail a configuration that specifies the same LUN multiple
  times for a target.

- Use T_* constants for SCSI device types instead of magic numbers.

- Warn and fail for a few UCL properties that aren't the required type
  including "discovery-auth-group" in a portal group context,
  "auth-type" and "port" in a target context.

- Fix a bug where chap-mutual in a target in UCL would not auto-create
  a new auth-group.

Sponsored by:	Chelsio Communications
Differential Revision:	https://reviews.freebsd.org/D48934
2025-02-26 10:10:33 -05:00
Konstantin Belousov
8c108dccd7 acpidump: do not use pointer arithmetic to check for overflow
Pointer arithmetic overflow is UB.  Convert to unsigned uintptr_t and do
the check there.

PR:	204945
Reported by:	David Binderman <dcb314@hotmail.com>
Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
2025-02-26 07:27:32 +02:00
Bjoern A. Zeeb
2c44f1ff69 LinuxKPI: 802.11: compile in VHT compat code by default
Compile in the VHT compat code by default even though no one will make
use of it yet.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
Tested with:	iwlwifi AX210 (NOHT, HT20, HT40, VHT20, VHT40, VHT80)
2025-02-26 02:10:55 +00:00
Bjoern A. Zeeb
3e022a91c9 LinuxKPI: 802.11: ensure to select the correct channel width
If HT is enabled but not using CHW=40 set CHW=20 to make sure we do
not get stuck on any other value.

If VHT and the VHT Operation element Channel Width field is 0
(use 20/40) do not update the bandwidth but stick with what HT selected.
This is better than disabling VHT alltogether for 20/40 and allows us
to work on VHT20 and VHT40 APs it seems.
We will have to do more work to can align with the chanctx or deal with
Operating Mode Notification Action frames in LinuxKPI or net80211.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
2025-02-26 02:10:55 +00:00
Bjoern A. Zeeb
75d23d8823 LinuxKPI: 802.11: compile in HT compat code by default
Compile in the HT compat code by default even though no one will make
use of it yet.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
Tested with:	iwlwifi AX210 (NOHT, HT20 and HT40)
2025-02-26 02:10:55 +00:00