Commit graph

277578 commits

Author SHA1 Message Date
Bjoern A. Zeeb 1c17a175c4 LinuxKPI: 802.11: fix for_each_sta_active_link()
Likely a c&p error from for_each_vif_active_link() to
for_each_sta_active_link().
We are checking the nitems on the vif instead of the sta in this macro.
Function wise there is no difference as the arrays are the same size
but for correctness fix this.

Sponsored by:	The FreeBSD Foundation

(cherry picked from commit 69b6c4a6ec)
2024-06-12 17:00:49 +00:00
Bjoern A. Zeeb c91ba48865 net8011: radiotap: add more EHT constants
(cherry picked from commit ab95bca998)
2024-06-12 17:00:10 +00:00
Bjoern A. Zeeb 7cda209186 LinuxKPI: 802.11: return proper value for IEEE80211_CRYPTO_AES_CCM
In case of LKPI_80211_HW_CRYPTO we convert from LinuxKPI cipher_suites
to net80211 ic_cryptocaps fields. For WLAN_CIPHER_SUITE_CCMP we
accidentally returned the bit number instead of the shifted value
which leads to ieee80211_crypto_newkey() setting IEEE80211_KEY_SWCRYPT,
which in turned lead to us trying to decode the frame again despite
HW had already done it.  This was found out of a discussion in D43634.

Reviewed by:	cc, adrian
Differential Revision: https://reviews.freebsd.org/D44208

(cherry picked from commit 906521f817)
2024-06-12 16:59:35 +00:00
Bjoern A. Zeeb 947dfe1e01 LinuxKPI: pm: add SET_SYSTEM_SLEEP_PM_OPS() and device_can_wakeup()
Add the SET_SYSTEM_SLEEP_PM_OPS() by factoring some other macro code
out in order to set the suspend/resume functions when the struct is
already given.  Such is the case in iwlwifi d3.

Also add an initial implementation of device_can_wakeup().  Though
this is likely all we need we have no way of setting the flag for it
yet so leave a pr_debug() and a comment there as well.  Until we want
to support WoWLAN this is likely not needed for wireless.
Doing it the proper way checking a bool in 'struct dev_pm_info' would
change 'struct device' and with that 'struct pci_dev' and break the
KBI.  In favour of mergeability this version does not implement the
full functionality yet.

Both help to make an updated iwlwifi d3 compile.

Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D45358

(cherry picked from commit 3753988c5d)
2024-06-12 16:58:11 +00:00
Bjoern A. Zeeb 323d4a20bd LinuxKPI: remove extern from function declarations
Sponsored by:	The FreeBSD Foundation
Reviewed by:	emaste (earlier version, found another two)
Differential Revision: https://reviews.freebsd.org/D45386

(cherry picked from commit ecd1d1f1da)
2024-06-12 16:58:06 +00:00
Bjoern A. Zeeb 3392938359 LinuxKPI: add FIELD_PREP_CONST()
Add FIELD_PREP_CONST() like FIELD_PREP() without any extra checks likely
expected on this version in Linux.  This is called by an updated wireless
driver.

Sposnored by:	The FreeBSD Foundation
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D45180

(cherry picked from commit bb025df257)
2024-06-12 16:58:01 +00:00
Bjoern A. Zeeb 395833f4ea LinuxKPI: add kvmemdup()
Add kvmemdup() as a variant of kmemdup().  While currently it could
just call kmemdup() we duplicate the code and use kvmalloc() in case
someone will change the implementation of kvmalloc/kvfree in slab.h.
This is used by an updated wireless driver.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D45181

(cherry picked from commit 8e4b8e9d80)
2024-06-12 16:57:56 +00:00
Bjoern A. Zeeb c503386b18 LinuxKPI: utsname.h add missing SPDX-License-Identifier
Reported by:	markj (2023-05-24; sorry took me a while)

(cherry picked from commit 563c72e213)
2024-06-12 16:57:51 +00:00
Bjoern A. Zeeb 0f87cc98f9 LinuxKPI: add __counted_by() and __nonstring
Add checks for __counted_by(_x) and __nonstring as and depending
on compiler support enable the attribute/feature.

This is needed to make mtk76 and ath1xk drivers compile.

Sposnored by:	The FreeBSD Foundation
Reviewed by:	emaste, dim
Differential Revision: https://reviews.freebsd.org/D44587

(cherry picked from commit 2a8c50592f)
2024-06-12 16:57:46 +00:00
Bjoern A. Zeeb e262be127d LinuxKPI: add devm_kfree()
mt76 calls devm_kfree() directly, so alias it to our
lkpi_devm_kmalloc_release() function.

Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D44589

(cherry picked from commit 170c2e0e2b)
2024-06-12 16:57:40 +00:00
Bjoern A. Zeeb 4d9e8a65d0 LinuxKPI: napi_schedule() requires return value, implement napi_is_scheduled()
A newer version of iwlwifi requires a return value from napi_schedule();
unclear if the function always should have been bool. Add the bool to test
based on the napi_schedule_prep() result.

Also add napi_is_scheduled() for rtw89.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	emaste (previous version)
Differential Revision:	https://reviews.freebsd.org/D44591

(cherry picked from commit 21761f2ede)
2024-06-12 16:57:33 +00:00
Bjoern A. Zeeb 425edb6fc2 LinuxKPI: sk_buff: implement skb_queue_splice_tail_init()
Implement skb_queue_splice_tail_init() and SKB_DATA_ALIGN() as
needed by the mt76 wireless driver.

Sponsord by:	The FreeBD Foundation
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D44590

(cherry picked from commit 3d3ec17825)
2024-06-12 16:57:25 +00:00
Bjoern A. Zeeb d5edaf3cf2 LinuxKPI: add dev_alloc_pages()
Add dev_alloc_pages() though it seems a weird KPI, not passing a dev
despite its name.  Used by updated wireless driver.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D44588

(cherry picked from commit 738c02ba24)
2024-06-12 16:57:13 +00:00
Bjoern A. Zeeb 8d79619877 LinuxKPI: add BITS_TO_BYTES()
Just like BITS_TO_LONG() ... used in rtw89.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D44603

(cherry picked from commit f674f016c0)
2024-06-12 16:57:06 +00:00
Bjoern A. Zeeb 25878310ad LinuxKPI: implement memzero_explicit()
Sponsored by:	The FreeBSD Foundation
Reviewed by:	emaste
Differential Revision: https://reviews.freebsd.org/D44586

(cherry picked from commit 218b2ccf8c)
2024-06-12 16:57:01 +00:00
Bjoern A. Zeeb f1146027f1 LinuxKPI: add further constants to pci.h
Updated wireless drivers require more knowledge about PCI (BAR) bits.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	jhb
Differential Revision: https://reviews.freebsd.org/D44573

(cherry picked from commit a1cdddcf15)
2024-06-12 16:56:53 +00:00
Bjoern A. Zeeb 98cf071600 LinuxKPI: add PCI_VENDOR_ID_ITTIM
Add PCI_VENDOR_ID_ITTIM as needed by mt76.

Sponsored by:	The FreeBSD Foundation

(cherry picked from commit ce707e674f)
2024-06-12 16:56:48 +00:00
Bjoern A. Zeeb 999d1558b1 iwn(4): correct debug message: "not" to "no"
Sponosred by:	The FreeBSD Foundation

(cherry picked from commit 9e012a9da5)
2024-06-12 16:56:43 +00:00
Bjoern A. Zeeb 7ced406676 net80211: fix IEEE80211_FHT_BITS
AMPDU_RX was added as a second AMPDU_TX, LDPC_TX and LDPC_RX missing;
correct and add missing.
Makes ddb output (and other debugging) look more correct.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	adrian
Differential Revision: https://reviews.freebsd.org/D45505

(cherry picked from commit 5bbf4b6291)
2024-06-12 16:56:36 +00:00
Bjoern A. Zeeb 8e64a7ec0b net80211: amrr_init: change order of commands
First run the KASSERT before trying to do the free operation.
Better for reporting and debugging.
Add a guard setting the value to NULL afterwards.  NULL pointers
are a lot easier to test for.

Reviewed by:	cc
Differential Revision: https://reviews.freebsd.org/D43751

(cherry picked from commit cd9fee3d2c)
2024-06-12 16:56:26 +00:00
Bjoern A. Zeeb 4cb9d58026 bsdinstall: update comment related to pkg
pkg_add has been gone since 2013(?).  Refer to pkg(8) instead.

Sponsored by:	The FreeBSD Foundation
Reviewed by:	jrtc27
Differential Revision: https://reviews.freebsd.org/D44946

(cherry picked from commit ad31d47642)
2024-06-12 16:56:20 +00:00
Kristof Provost d92f239a92 pf: fix overly large copy in pf_rule_to_krule()
The timeout array in struct pf_rule has PFTM_OLD_MAX entries, the one in
struct pf_krule has PFTM_MAX entries (and PFTM_MAX > PFTM_OLD_MAX).
Use the smaller of the sizes when copying.

Reported by:	CheriBSD
MFC after:	1 week
Event:		Kitchener-Waterloo Hackathon 202406

(cherry picked from commit 4779b16fa6)
2024-06-11 08:06:11 +02:00
Kristof Provost 154dd1eaa6 vnet tests: check for if_bridge.ko
A number of tests create a bridge, but did not check if if_bridge.ko is loaded.

We usually get away with that, because `ifconfig bridge create` autoloads the
module, but if we run the tests in a jail (e.g. because of kyua's upcoming
execenv.jail.params feature) we can't load the module and these tests can fail.

Check if the module is loaded, skip the test if it is not.

Reviewed by:	markj
MFC after:	1 week
Event:		Kitchener-Waterloo Hackathon 202406
Differential Revision:	https://reviews.freebsd.org/D45487

(cherry picked from commit 480ad40553)
2024-06-11 08:05:13 +02:00
Zhenlei Huang c720ff8f95 sys/sysctl.h: Fix wrong assertion with multiple access flags
With multiple flags passed in, e.g., CTLFLAG_RD | CTLFLAG_CAPRD, due to
the precedence rules, this will result in false positive assertion. Fix
that by surrounding the replacement lists with parentheses.

Reviewed by:	imp, erj
Fixes:		10a1e981d4 iflib: mark isc_driver_version as constant
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D45531

(cherry picked from commit 23f4131ad6)
(cherry picked from commit 9cd77bd9c6)
2024-06-11 12:49:58 +08:00
Dimitry Andric ef4d145057 Merge commit 382f70a877f0 from llvm-project (by Louis Dionne):
[libc++][NFC] Rewrite function call on two lines for clarity (#79141)

  Previously, there was a ternary conditional with a less-than comparison
  appearing inside a template argument, which was really confusing because
  of the <...> of the function template. This patch rewrites the same
  statement on two lines for clarity.

Merge commit d129ea8d2fa3 from llvm-project (by Vitaly Buka):

  [libcxx] Align `__recommend() + 1`  by __endian_factor (#90292)

  This is detected by asan after #83774

  Allocation size will be divided by `__endian_factor` before storing. If
  it's not aligned,
  we will not be able to recover allocation size to pass into
  `__alloc_traits::deallocate`.

  we have code like this
  ```
   auto __allocation = std::__allocate_at_least(__alloc(), __recommend(__sz) + 1);
      __p               = __allocation.ptr;
      __set_long_cap(__allocation.count);

  void __set_long_cap(size_type __s) _NOEXCEPT {
      __r_.first().__l.__cap_     = __s / __endian_factor;
      __r_.first().__l.__is_long_ = true;
    }

  size_type __get_long_cap() const _NOEXCEPT {
      return __r_.first().__l.__cap_ * __endian_factor;
    }

  inline ~basic_string() {
      __annotate_delete();
      if (__is_long())
        __alloc_traits::deallocate(__alloc(), __get_long_pointer(), __get_long_cap());
    }
  ```
  1. __recommend() -> even size
  2. `std::__allocate_at_least(__alloc(), __recommend(__sz) + 1)` - > not
  even size
  3. ` __set_long_cap() `- > lose one bit of size for __endian_factor == 2
  (see `/ __endian_factor`)
  4. `__alloc_traits::deallocate(__alloc(), __get_long_pointer(),
  __get_long_cap())` -> uses even size (see `__get_long_cap`)

This should fix incorrect deallocation sizes for some instances of
std::string. Memory profiling or debugging tools like AddressSanitizer,
LeakSanitizer or TCMalloc could then complain about the the size passed
to a deallocation not matching the size originally passed to the
allocation.

Reported by:	Aliaksei Kandratsenka <alkondratenko@gmail.com>
PR:		279560
MFC after:	3 days

(cherry picked from commit ead8e4c081)
2024-06-10 09:29:30 +02:00
Cy Schubert 960554869b sqlite3: Vendor import of sqlite3 3.46.0
Release notes at https://www.sqlite.org/releaselog/3_46_0.html.

Obtained from:	https://www.sqlite.org/2024/sqlite-autoconf-3460000.tar.gz

Merge commit '259d29fd8c012d4392fa59ff803b691ead5b304d' into main

(cherry picked from commit 0f996f4541)
2024-06-09 19:56:07 -07:00
Andreas Kempe b1e82630b4 libusbhid: add missing include guards
PR:		265136

(cherry picked from commit 230efeda08)
(cherry picked from commit 7f0392e1c8)
2024-06-09 13:02:41 -04:00
Ed Maste 12ea2d04c3 diff: honour -B flag with -q
PR:		278988
Reviewed by:	bapt
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D45220

(cherry picked from commit fb623aab39)
(cherry picked from commit 1b7672ed99)
2024-06-07 17:15:57 -04:00
Mitchell Horne 8490d5ec8e Adjust comments referencing vm_mem_init()
I cannot find a time where the function was not named this.

Reviewed by:	kib, markj
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D45383

(cherry picked from commit deab57178f)
2024-06-06 12:54:35 -03:00
Mitchell Horne f8b05837c6 arm64, riscv: removed unused struct pv_addr
No functional change.

Reviewed by:	markj
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D45322

(cherry picked from commit b5e17840de)
2024-06-06 12:54:35 -03:00
Mitchell Horne 84e95f36f6 arm64, riscv: remove unused declaration
It is inherited from arm, where the global exists and is used. No
functional change.

Reviewed by:	markj
MFC after:	3 days
Sponsored by:	The FreeBSD Foundation
Differential Revision:	https://reviews.freebsd.org/D45323

(cherry picked from commit 1d3c23676d)
2024-06-06 12:54:35 -03:00
Mitchell Horne 4fa9eee03a ieee80211_vap(9): fix the title
MFC after:	3 days

(cherry picked from commit c5989febcc)
2024-06-06 12:54:35 -03:00
Michael Osipov ac339672fb periodic.conf: remove long deprecated security_daily_compat_var()
This function is documented to be gone in after 11. Time to remove this
compat shim.

PR:		275296
Reviewed by:	jrm (mentor)
MFC after:	1 month
Differential Revision:	https://reviews.freebsd.org/D44796

(cherry picked from commit aa48259f33)
2024-06-05 10:08:28 +02:00
Zhenlei Huang ff4b8d51ac mlx4, mlx5: Eliminate redundent NULL check for packet filter
mlx4 and mlx5 are Ethernet devices and ether_ifattach() does an
unconditional bpfattach(). From commit 16d878cc99 [1] and on, we
should not check ifp->if_bpf to tell us whether or not we have any bpf
peers that might be interested in receiving packets. And since commit
2b9600b449 [2], ifp->if_bpf can not be NULL even after the network
interface has been detached.

No functional change intended.

1. 16d878cc99 Fix the following bpf(4) race condition which can result in a panic
2. 2b9600b449 Add dead_bpf_if structure, that should be used as fake bpf_if during ifnet detach

Reviewed by:	kp, kib
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D45196

(cherry picked from commit 2439ae9483)
(cherry picked from commit d98ced6588)
2024-06-05 12:44:22 +08:00
Matthew Seaman a30b941ea7 Don't package /var/db/locate.database
... or install an empty file.

The locate database is a mutable working file, and unsuitable to be
managed by pkg(8).  locate(1) copes gracefully with the absence of
this file.  Running /etc/periodic/weekly/310.locate will create the
locate database with the correct ownership and permissions.

Having the locate.database file as part of the FreeBSD-runtime package
means it gets zeroed if ever that package gets updated, which is
excessive, given that updating packages will typically only change a
relatively small number of the _filenames_ on the system -- unlike the
file contents.  Plus it always causes it to flag as modified when
verifying checksums, but /var/db/locate.database is expected to be
modified by the user.

MFC after:	1 week
Reviewed by:	manu
Differential Revision:	https://reviews.freebsd.org/D45384

(cherry picked from commit 4354163e5f)
2024-06-04 06:11:10 +01:00
Dimitry Andric c7f08a11df Merge commit 9f85bc834b07 from llvm-project (by Nikita Popov):
[PPCMergeStringPool] Only replace constant once (#92996)

  In #88846 I changed this code to use RAUW to perform the replacement
  instead of manual updates -- but kept the outer loop, which means we try
  to perform RAUW once per user. However, some of the users might be freed
  by the RAUW operation, resulting in use-after-free.

  The case where this happens is constant users where the replacement
  might result in the destruction of the original constant.

  Fixes https://github.com/llvm/llvm-project/issues/92991.

This fixes a possible crash when building crypto/openssh/sshkey.c for
PowerPC targets.

Reported by:	cperciva
PR:		276104
MFC after:	3 days

(cherry picked from commit f30188c468)
2024-06-02 11:30:46 +02:00
Cy Schubert 858f4e52dd ntp: Update version strings
Reported by:	"Herbert J. Skuhra" <herbert@gojira.at>
Fixes:		f5f40dd63b

(cherry picked from commit 018a4ab7b0)
2024-05-29 18:42:54 -07:00
Cy Schubert 6f3fd5d45e ntp: Vendor import of ntp-4.2.8p18
Merge commit '1f833b3fc9968c3dd7ed79ccf0525ebf16c891ad' into main

(cherry picked from commit f5f40dd63b)
2024-05-29 18:42:54 -07:00
Ed Maste 4010c267a5 libc: move NIS xdr_* symbols from rpc's to yp's Symbol.map
To fix WITHOUT_NIS build.  Building yp_xdr.c is gated by MK_NIS.

PR:		279270
Reported by:	peterj
Reported by:	matteo
Reported by:	Michael Dexter's Build Option Survey run
Reviewed by:	brooks
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D45347

(cherry picked from commit 61639bb3fc)
(cherry picked from commit 1e3dfe0c34)
2024-05-29 11:42:17 -04:00
Konstantin Belousov 6446348a4f mqueuefs: uma_zfree() can be postponed until mqfs sx mi_lock is dropped
(cherry picked from commit b6f4a3fa75)
2024-05-29 08:36:13 +03:00
Konstantin Belousov 3426b8269c mqueuefs: minor style pass
(cherry picked from commit 63f18b37e0)
2024-05-29 08:36:13 +03:00
Dimitry Andric a3e6eda798 Merge commit d0be944aa511 from llvm-project (by Simon Pilgrim):
[X86] Add slow div64 tuning flag to Nehalem target (#91129)

  This appears to have been missed because later cpus don't inherit from Nehalem tuning much.

  Noticed while cleaning up for #90985

Merge commit 8b400de79eff from llvm-project (by Simon Pilgrim):

  [X86] Enable TuningSlowDivide64 on Barcelona/Bobcat/Bulldozer/Ryzen Families (#91277)

  Despite most AMD cpus having a lower latency for i64 divisions that converge early, we are still better off testing for values representable as i32 and performing a i32 division if possible.

  All AMD cpus appear to have been missed when we added the "idivq-to-divl" attribute - this patch now matches Intel cpu behaviour (and the x86-64/v2/3/4 levels).

  Unfortunately the difference in code scheduling means I've had to stop using the update_llc_test_checks script and just use old-fashioned CHECK-DAG checks for divl/divq pairs.

  Fixes #90985

This fixes possibly worse runtime performance on AMD Zen hardware, when
using -march=znver4 (or any other znver), as opposed to -march=x86-64-v4
or the baseline -march=x86-64. A similar fix is applied for Nehalem.

PR:		278908
MFC after:	3 days

(cherry picked from commit cadd2ca217)
2024-05-28 07:26:46 +02:00
Dimitry Andric 70be2f0deb Merge llvm-project release/18.x llvmorg-18.1.6-0-g1118c2e05e67
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and
openmp to llvm-project release/18.x llvmorg-18.1.6-0-g1118c2e05e67.

PR:		276104
MFC after:	3 days

(cherry picked from commit 3a0793336e)
2024-05-28 07:26:45 +02:00
Zhenlei Huang a29cc9eca7 linux(4): Add const qualifier to the value parameter of function handle_string()
The content that `value` point to is not going to be altered by function
handle_string().

MFC after:	1 week

(cherry picked from commit 68c890b443)
(cherry picked from commit 1b3f88bc80)
2024-05-28 12:41:45 +08:00
Zhenlei Huang f183abd128 compat_freebsd4: Add const qualifier to the local variable s inside function freebsd4_uname()
This local variable s is for iterating characters of global variable
`version`. The content of `version` is not going to be altered by
function freebsd4_uname().

MFC after:	1 week

(cherry picked from commit 92f2a4c820)
(cherry picked from commit 5fd1902b0c)
2024-05-28 12:37:42 +08:00
Ed Maste f952f27731 Increase IOAPIC_MAX_ID to 255 (from 254)
A test system provided by AMD panicked with "madt_parse_apics:
I/O APIC ID 255 too high".  I/O APIC ID 255 is acceptable, so increase
the limit.

Reviewed by:	jhb, kib
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D45157

(cherry picked from commit 4e32868183)
(cherry picked from commit 18119e711f)
2024-05-27 11:25:28 -04:00
Ed Maste bbb6bfeaae vt(4): add note about sc/UEFI incompatibility
syscons is not compatible with UEFI boot.  This is noted in syscons(4),
but not mentioned in vt(4) where the kern.vty tunable (used to select vt
or sc) is documented.  Add a note so that if someone reads vt(4) but not
sc(4) they are not surprised by having no usable console.

PR:		276206
Reviewed by:	brooks
Sponsored by:	The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D45357

(cherry picked from commit f52481f3b8)
(cherry picked from commit 03d3230d51)
2024-05-27 11:25:28 -04:00
Wolfram Schneider 36294c97c1 man: the exists function needs to validate the first parameter
This fixes an issue with the ".so " macro for FreeBSD
ports manual pages.

PR: 275978
Reported by:	Jamie Landeg-Jones <jamie@catflap.org>
MFC after:	1 week

Differential Revision:	https://reviews.freebsd.org/D45231 (discussion)
2024-05-26 05:43:45 +00:00
Alexander Motin 9898f936aa Fix scn_queue races on very old pools
Code for pools before version 11 uses dmu_objset_find_dp() to scan
for children datasets/clones.  It calls enqueue_clones_cb() and
enqueue_cb() callbacks in parallel from multiple taskq threads.
It ends up bad for scan_ds_queue_insert(), corrupting scn_queue
AVL-tree.  Fix it by introducing a mutex to protect those two
scan_ds_queue_insert() calls.  All other calls are done from the
sync thread and so serialized.

Reviewed-by:	Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by:	Brian Atkinson <batkinson@lanl.gov>
Signed-off-by:	Alexander Motin <mav@FreeBSD.org>
Sponsored by:	iXsystems, Inc.
Closes	#16162
PR:	278414

(cherry picked from commit 49086aa35d)
2024-05-23 13:43:02 -04:00
Eric Joyner d823e80ef5 iavf(4): Improve man page
MFC after:	3 days
Reviewed by:	erj
Differential Revision:	https://reviews.freebsd.org/D43093

(cherry picked from commit ba222f6fb4)
2024-05-23 04:43:49 +02:00