CVS commit: src/share/man/man4

2024-07-29 Thread Brad Spencer
Module Name:src Committed By: brad Date: Mon Jul 29 20:12:58 UTC 2024 Modified Files: src/share/man/man4: sht4xtemp.4 Log Message: Fix a typo in the man page. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/share/man/man4/sht4xtemp.4 Please note that dif

CVS commit: src/share/man/man4

2024-07-29 Thread Brad Spencer
Module Name:src Committed By: brad Date: Mon Jul 29 20:12:58 UTC 2024 Modified Files: src/share/man/man4: sht4xtemp.4 Log Message: Fix a typo in the man page. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/share/man/man4/sht4xtemp.4 Please note that dif

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:47:13 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Sprinkle volatile on variables requiring atomic access. No functional change intended, since the relevant access is always done with atomic_

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:47:13 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Sprinkle volatile on variables requiring atomic access. No functional change intended, since the relevant access is always done with atomic_

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:47:00 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): When a session is established, send first packet directly. Like we would do with the keepalive packet, if we had to send that instead -- no

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:47:00 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): When a session is established, send first packet directly. Like we would do with the keepalive packet, if we had to send that instead -- no

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:46:25 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Queue packet for post-handshake retransmit if limits are hit. PR kern/58521: experimental wg(4) may drop packet after minutes of quiet To

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:46:25 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Queue packet for post-handshake retransmit if limits are hit. PR kern/58521: experimental wg(4) may drop packet after minutes of quiet To

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:45:56 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Trigger session initiation in wgintr, not in wg_output. We have to look up the session in wgintr anyway, for wg_send_data_msg. By triggerin

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:45:56 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Trigger session initiation in wgintr, not in wg_output. We have to look up the session in wgintr anyway, for wg_send_data_msg. By triggerin

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:44:23 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Add missing barriers around wgp_pending access. PR kern/58520: experimental wg(4) lacks barriers around access to packet pending initiation

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:44:23 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Add missing barriers around wgp_pending access. PR kern/58520: experimental wg(4) lacks barriers around access to packet pending initiation

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:43:56 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Force rekey on tx if session is older than reject-after-time. One more corner case for: PR kern/55729: net/if_wg/t_misc:wg_rekey test case

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 19:43:56 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Force rekey on tx if session is older than reject-after-time. One more corner case for: PR kern/55729: net/if_wg/t_misc:wg_rekey test case

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 18:43:11 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Read wgs_state atomically in wg_get_stable_session. As noted in the comment above, it may concurrently transition from ESTABLISHED to DESTRO

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 18:43:11 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Read wgs_state atomically in wg_get_stable_session. As noted in the comment above, it may concurrently transition from ESTABLISHED to DESTRO

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:02:05 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Deduplicate session establishment actions. The actions to (a) record the last handshake time, (b) clear some handshake state, (c) transmit

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:02:05 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Deduplicate session establishment actions. The actions to (a) record the last handshake time, (b) clear some handshake state, (c) transmit

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:01:32 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Sprinkle comments on internal sliding window API. Post-fix tidying for: PR kern/58480: experimental wg(4) sliding window logic has oopsie

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:01:32 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Sprinkle comments on internal sliding window API. Post-fix tidying for: PR kern/58480: experimental wg(4) sliding window logic has oopsie

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:01:13 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Omit needless atomic_load. wgs_local_index is only ever written to while only one thread has access to it and it is not in the thmap -- befo

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:01:13 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Omit needless atomic_load. wgs_local_index is only ever written to while only one thread has access to it and it is not in the thmap -- befo

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:00:41 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Fix typo in comment recently added. Comment added in the service of: PR kern/55729: net/if_wg/t_misc:wg_rekey test case fails PR kern/56252

CVS commit: src/sys/net

2024-07-29 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Jul 29 16:00:41 UTC 2024 Modified Files: src/sys/net: if_wg.c Log Message: wg(4): Fix typo in comment recently added. Comment added in the service of: PR kern/55729: net/if_wg/t_misc:wg_rekey test case fails PR kern/56252

CVS commit: src/share/man/man4

2024-07-29 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Mon Jul 29 14:09:17 UTC 2024 Modified Files: src/share/man/man4: mainbus.4 Log Message: mainbus(4): brush up markup, sort SEE ALSO To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/share/man/man4/mainbus.4 Please not

CVS commit: src/share/man/man4

2024-07-29 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Mon Jul 29 14:09:17 UTC 2024 Modified Files: src/share/man/man4: mainbus.4 Log Message: mainbus(4): brush up markup, sort SEE ALSO To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/share/man/man4/mainbus.4 Please not

CVS commit: src/libexec/ld.elf_so/arch/hppa

2024-07-29 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Jul 29 13:16:19 UTC 2024 Modified Files: src/libexec/ld.elf_so/arch/hppa: hppa_reloc.c Log Message: KNF and remove trailing whitespace in previous. To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/libexec/ld.

CVS commit: src/libexec/ld.elf_so/arch/hppa

2024-07-29 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Jul 29 13:16:19 UTC 2024 Modified Files: src/libexec/ld.elf_so/arch/hppa: hppa_reloc.c Log Message: KNF and remove trailing whitespace in previous. To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/libexec/ld.

CVS commit: src/share/man/man4

2024-07-29 Thread Christoph Badura
Module Name:src Committed By: bad Date: Mon Jul 29 11:42:49 UTC 2024 Modified Files: src/share/man/man4: mainbus.4 Log Message: correctly reference mainbus(9) To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/share/man/man4/mainbus.4 Please note that diffs

CVS commit: src/share/man/man4

2024-07-29 Thread Christoph Badura
Module Name:src Committed By: bad Date: Mon Jul 29 11:42:49 UTC 2024 Modified Files: src/share/man/man4: mainbus.4 Log Message: correctly reference mainbus(9) To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/share/man/man4/mainbus.4 Please note that diffs