Skip to content

Commit 768cb24

Browse files
committed
Fix a number of issues.
1 parent dc65f04 commit 768cb24

33 files changed

+197
-114
lines changed

share/man/man3/pthread_mutex_consistent.3

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.\" Copyright (c) 2016 The FreeBSD Foundation, Inc.
1+
.\" Copyright (c) 2016 The FreeBSD Foundation
22
.\"
33
.\" This documentation was written by
44
.\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship

share/man/man3/pthread_mutexattr.3

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" Copyright (C) 2000 Jason Evans <jasone@FreeBSD.org>.
2-
.\" Copyright (c) 2021 The FreeBSD Foundation, Inc.
2+
.\" Copyright (c) 2021 The FreeBSD Foundation
33
.\" All rights reserved.
44
.\"
55
.\" Part of this documentation was written by

share/man/man3/timeradd.3

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ struct timeval {
8585
long tv_usec; /* and microseconds */
8686
};
8787
.Ed
88+
.Pp
8889
And the
8990
.Fa timespec
9091
structure is defined in

share/man/man4/Makefile

+8-4
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ MAN= aac.4 \
394394
ng_socket.4 \
395395
ng_source.4 \
396396
ng_split.4 \
397-
ng_sppp.4 \
397+
${_ng_sppp.4} \
398398
ng_sscfu.4 \
399399
ng_sscop.4 \
400400
ng_tag.4 \
@@ -464,6 +464,7 @@ MAN= aac.4 \
464464
pty.4 \
465465
puc.4 \
466466
pwmc.4 \
467+
${_pvscsi.4} \
467468
${_qat.4} \
468469
${_qlxge.4} \
469470
${_qlxgb.4} \
@@ -549,7 +550,7 @@ MAN= aac.4 \
549550
spigen.4 \
550551
${_spkr.4} \
551552
splash.4 \
552-
sppp.4 \
553+
${_sppp.4} \
553554
ste.4 \
554555
stf.4 \
555556
stge.4 \
@@ -846,7 +847,6 @@ _if_bxe.4= if_bxe.4
846847
_if_ndis.4= if_ndis.4
847848
_if_nfe.4= if_nfe.4
848849
_if_urtw.4= if_urtw.4
849-
_if_vmx.4= if_vmx.4
850850
_if_wpi.4= if_wpi.4
851851
_igc.4= igc.4
852852
_imcsmb.4= imcsmb.4
@@ -858,6 +858,7 @@ _nda.4= nda.4
858858
_ndis.4= ndis.4
859859
_nfe.4= nfe.4
860860
_nfsmb.4= nfsmb.4
861+
_ng_sppp.4= ng_sppp.4
861862
_if_ntb.4= if_ntb.4
862863
_ntb.4= ntb.4
863864
_ntb_hw_amd.4= ntb_hw_amd.4
@@ -873,13 +874,13 @@ _qat.4= qat.4
873874
_rr232x.4= rr232x.4
874875
_speaker.4= speaker.4
875876
_spkr.4= spkr.4
877+
_sppp.4= sppp.4
876878
_superio.4= superio.4
877879
_tpm.4= tpm.4
878880
_urtw.4= urtw.4
879881
_viawd.4= viawd.4
880882
_vmci.4= vmci.4
881883
_vmd.4= vmd.4
882-
_vmx.4= vmx.4
883884
_wbwd.4= wbwd.4
884885
_wpi.4= wpi.4
885886
_xen.4= xen.4
@@ -924,9 +925,12 @@ _nvme.4= nvme.4
924925
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
925926
${MACHINE_CPUARCH} == "aarch64"
926927
_gve.4= gve.4
928+
_if_vmx.4= if_vmx.4
927929
_ipmi.4= ipmi.4
928930
_linux.4= linux.4
929931
_ossl.4= ossl.4
932+
_pvscsi.4= pvscsi.4
933+
_vmx.4= vmx.4
930934
.endif
931935

932936
.if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "aarch64" || \

share/man/man4/ccr.4

+10-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2323
.\" SUCH DAMAGE.
2424
.\"
25-
.Dd June 3, 2019
25+
.Dd November 25, 2024
2626
.Dt CCR 4
2727
.Os
2828
.Sh NAME
@@ -52,7 +52,10 @@ The driver accelerates AES-CBC, AES-CCM, AES-CTR, AES-GCM, AES-XTS,
5252
SHA1, SHA2-224, SHA2-256, SHA2-384, SHA2-512,
5353
SHA1-HMAC, SHA2-224-HMAC, SHA2-256-HMAC, SHA2-384-HMAC, and SHA2-512-HMAC
5454
operations for
55-
.Xr crypto 4
55+
.Xr crypto 9
56+
consumers such as
57+
.Xr ktls 4 ,
58+
.Xr geli 4 ,
5659
and
5760
.Xr ipsec 4 .
5861
The driver also supports chaining one of AES-CBC, AES-CTR, or AES-XTS with
@@ -97,7 +100,11 @@ email all the specific information related to the issue to
97100
.Sh SEE ALSO
98101
.Xr crypto 4 ,
99102
.Xr cxgbe 4 ,
100-
.Xr ipsec 4
103+
.Xr geli 4 ,
104+
.Xr ipsec 4 ,
105+
.Xr ktls 4 ,
106+
.Xr crypto 7 ,
107+
.Xr crypto 9
101108
.Sh HISTORY
102109
The
103110
.Nm

share/man/man4/icmp.4

+24-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
.\"
2828
.\" @(#)icmp.4 8.1 (Berkeley) 6/5/93
2929
.\"
30-
.Dd March 26, 2015
30+
.Dd December 11, 2024
3131
.Dt ICMP 4
3232
.Os
3333
.Sh NAME
@@ -174,10 +174,31 @@ it will be used instead of the real address mask when
174174
the system replies to an ICMP Address Mask Request packet.
175175
Defaults to 0.
176176
.It Va icmplim
177-
.Pq Vt integer
178-
Bandwidth limit for ICMP replies in packets/second.
177+
.Pq Vt unsigned integer
178+
Mean rate limit for replies in packets/second.
179+
The actual limit is
180+
.Va icmplim
181+
plus a random jitter limited by
182+
.Va icmplim_jitter .
179183
If set to zero, no limiting will occur.
180184
Defaults to 200.
185+
.It Va icmplim_jitter
186+
.Pq Vt unsigned integer
187+
A random jitter between the negative of
188+
.Va icmplim_jitter
189+
and
190+
.Va icmplim_jitter
191+
is applied to
192+
.Va icmplim
193+
for limiting the sending rate of replies.
194+
.Va icmplim_jitter
195+
must be smaller than
196+
.Va icmplim ,
197+
if
198+
.Va icmplim
199+
is not zero.
200+
If set to zero, no jitter will be applied.
201+
Defaults to 16.
181202
.It Va icmplim_output
182203
.Pq Vt boolean
183204
Enable/disable logging of ICMP replies bandwidth limiting.

share/man/man4/igc.4

+18-2
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,29 @@ driver supports the following models:
8282
.Pp
8383
.Bl -bullet -compact
8484
.It
85+
I220-V
86+
.It
87+
I221-V
88+
.It
8589
I225-LM
8690
.It
91+
I225-LMvP(2)
92+
.It
8793
I225-V
8894
.It
89-
I225-IT
95+
I225-IT, I225-IT(2)
96+
.It
97+
I225-K, I225-K(2)
98+
.It
99+
I226-LM
100+
.It
101+
I226-LMvP
102+
.It
103+
I226-V
104+
.It
105+
I226-IT
90106
.It
91-
I225-K
107+
I226-K
92108
.El
93109
.Sh LOADER TUNABLES
94110
Tunables can be set at the

share/man/man4/ktls.4

+5-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
.\"
3030
.\" * Other names and brands may be claimed as the property of others.
3131
.\"
32-
.Dd May 26, 2021
32+
.Dd October 31, 2024
3333
.Dt KTLS 4
3434
.Os
3535
.Sh NAME
@@ -229,8 +229,10 @@ mode.
229229
OpenSSL 3.0 and later include support for
230230
.Nm .
231231
The
232-
.Fa security/openssl-devel
233-
port may also be built with support for
232+
.Fa security/openssl*
233+
and
234+
.Fa security/gnutls
235+
ports may also be built with support for
234236
.Nm
235237
by enabling the
236238
.Dv KTLS

share/man/man4/nvdimm.4

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.\" Copyright (c) 2019 The FreeBSD Foundation, Inc.
1+
.\" Copyright (c) 2019 The FreeBSD Foundation
22
.\"
33
.\" This documentation was written by
44
.\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship

share/man/man4/pf.4

+4
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ Default value is 131072.
8787
Size of hash table that store source nodes.
8888
Should be power of 2.
8989
Default value is 32768.
90+
.It Va net.pf.default_to_drop
91+
This value overrides
92+
.Cd "options PF_DEFAULT_TO_DROP"
93+
from kernel configuration file.
9094
.El
9195
.Pp
9296
Read only

share/man/man4/upgt.4

+6-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
.\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
4949
.\" SUCH DAMAGE.
5050
.\"
51-
.Dd April 17, 2008
51+
.Dd February 18, 2025
5252
.Dt UPGT 4
5353
.Os
5454
.Sh NAME
@@ -74,6 +74,11 @@ module at boot time, place the following line in
7474
.Bd -literal -offset indent
7575
if_upgt_load="YES"
7676
.Ed
77+
.Sh DEPRECATION NOTICE
78+
The
79+
.Nm
80+
driver is slated to be removed in
81+
.Fx 15.0 .
7782
.Sh DESCRIPTION
7883
The
7984
.Nm

share/man/man4/vt.4

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ In
5151
In
5252
.Xr loader.conf 5 or
5353
.Xr sysctl.conf 5 :
54+
.Cd kern.consmute=1
5455
.Cd kern.vt.kbd_halt=1
5556
.Cd kern.vt.kbd_poweroff=1
5657
.Cd kern.vt.kbd_reboot=1
@@ -296,6 +297,8 @@ prompt, set in
296297
or changed at runtime with
297298
.Xr sysctl 8 .
298299
.Bl -tag -width indent
300+
.It Va kern.consmute
301+
Disable printing kernel messages to the system console.
299302
.It Va kern.vt.enable_bell
300303
Enable the terminal bell.
301304
.El

share/man/man5/fdescfs.5

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.\" Copyright (c) 2021 The FreeBSD Foundation, Inc.
1+
.\" Copyright (c) 2021 The FreeBSD Foundation
22
.\"
33
.\" Copyright (c) 1996
44
.\" Mike Pritchard <mpp@FreeBSD.org>. All rights reserved.

share/man/man5/pf.conf.5

+4-4
Original file line numberDiff line numberDiff line change
@@ -1619,9 +1619,9 @@ Ports and ranges of ports are specified by using these operators:
16191619
= (equal)
16201620
!= (unequal)
16211621
\*(Lt (less than)
1622-
\*(Le (less than or equal)
1622+
<= (less than or equal)
16231623
\*(Gt (greater than)
1624-
\*(Ge (greater than or equal)
1624+
>= (greater than or equal)
16251625
: (range including boundaries)
16261626
\*(Gt\*(Lt (range excluding boundaries)
16271627
\*(Lt\*(Gt (except range)
@@ -1662,7 +1662,7 @@ pass in all
16621662
pass in from any to any
16631663
pass in proto tcp from any port \*(Le 1024 to any
16641664
pass in proto tcp from any to any port 25
1665-
pass in proto tcp from 10.0.0.0/8 port \*(Gt 1024 \e
1665+
pass in proto tcp from 10.0.0.0/8 port >= 1024 \e
16661666
to ! 10.1.2.3 port != ssh
16671667
pass in proto tcp from any os "OpenBSD"
16681668
.Ed
@@ -3100,7 +3100,7 @@ os = "os" ( os-name | "{" os-list "}" )
31003100
user = "user" ( unary-op | binary-op | "{" op-list "}" )
31013101
group = "group" ( unary-op | binary-op | "{" op-list "}" )
31023102

3103-
unary-op = [ "=" | "!=" | "\*(Lt" | "\*(Le" | "\*(Gt" | "\*(Ge" ]
3103+
unary-op = [ "=" | "!=" | "\*(Lt" | "<=" | "\*(Gt" | ">=" ]
31043104
( name | number )
31053105
binary-op = number ( "\*(Lt\*(Gt" | "\*(Gt\*(Lt" | ":" ) number
31063106
op-list = ( unary-op | binary-op ) [ [ "," ] op-list ]

share/man/man5/tmpfs.5

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\"-
22
.\" Copyright (c) 2007 Xin LI
3-
.\" Copyright (c) 2017 The FreeBSD Foundation, Inc.
3+
.\" Copyright (c) 2017 The FreeBSD Foundation
44
.\"
55
.\" Part of this documentation was written by
66
.\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship

share/man/man7/ffs.7

+5-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2929
.\" SUCH DAMAGE.
3030
.\"
31-
.Dd May 3, 2020
31+
.Dd January 19, 2025
3232
.Dt FFS 7
3333
.Os
3434
.Sh NAME
@@ -285,6 +285,10 @@ upon reallocating file system blocks to be contiguous.
285285
Enable support for the rearrangement of blocks
286286
to be contiguous.
287287
.Pq Default: 1 .
288+
.It Va vfs.ffs.prttimechgs
289+
Print a console message when timestamps for UFS1 filesystems are found
290+
to be in the future and are changed to be the present time.
291+
.Pq Default: 0 .
288292
.El
289293
.Sh HISTORY
290294
The

share/man/man7/security.7

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" Copyright (C) 1998 Matthew Dillon. All rights reserved.
2-
.\" Copyright (c) 2019 The FreeBSD Foundation, Inc.
2+
.\" Copyright (c) 2019 The FreeBSD Foundation
33
.\"
44
.\" Parts of this documentation were written by
55
.\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship

share/man/man9/VOP_READ_PGCACHE.9

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.\" Copyright (c) 2021 The FreeBSD Foundation, Inc.
1+
.\" Copyright (c) 2021 The FreeBSD Foundation
22
.\"
33
.\" This documentation was written by
44
.\" Konstantin Belousov <kib@FreeBSD.org> under sponsorship

share/man/man9/atomic.9

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2121
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2222
.\"
23-
.Dd January 16, 2023
23+
.Dd December 16, 2024
2424
.Dt ATOMIC 9
2525
.Os
2626
.Sh NAME
@@ -60,7 +60,7 @@
6060
.Ft void
6161
.Fn atomic_interrupt_fence "void"
6262
.Ft <type>
63-
.Fn atomic_load_[acq_]<type> "volatile <type> *p"
63+
.Fn atomic_load_[acq_]<type> "const volatile <type> *p"
6464
.Ft <type>
6565
.Fn atomic_readandclear_<type> "volatile <type> *p"
6666
.Ft void

0 commit comments

Comments
 (0)