CVS: cvs.openbsd.org: src

2024-02-28 Thread Anton Lindqvist
CVSROOT:/cvs
Module name:src
Changes by: an...@cvs.openbsd.org   2024/02/28 23:54:29

Modified files:
regress/sys/net/vxlan: vxlan_2.sh 

Log message:
Stop assuming arbitrary rdomains are available and use the first given
rdomain as the vnetid.



CVS: cvs.openbsd.org: src

2024-02-28 Thread Scott Soule Cheloha
CVSROOT:/cvs
Module name:src
Changes by: chel...@cvs.openbsd.org 2024/02/28 17:18:48

Modified files:
sys/dev/dt : dt_dev.c 

Log message:
dt(4): interval, profile: schedule clockintr relative to start of recording

For the interval and profile providers, schedule the first clock
interrupt to occur dp_nsecs nanoseconds after the start of recording.
This makes the interval between the start of recording and the first
event consistent across runs.

With input from claudio@.  Simplified by claudio@.

Thread: https://marc.info/?l=openbsd-tech=170879058205043=2

ok mpi@ claudio@



CVS: cvs.openbsd.org: src

2024-02-28 Thread Theo Buehler
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2024/02/28 10:04:38

Modified files:
usr.bin/openssl: pkcs12.c 

Log message:
Expand only ever user of PBEPARAM_free() outside of libcrypto



CVS: cvs.openbsd.org: src

2024-02-28 Thread Theo Buehler
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2024/02/28 09:26:08

Modified files:
lib/libcrypto/x509: x509_purp.c 

Log message:
Small tweak for X509_check_purpose()

ok jsing



CVS: cvs.openbsd.org: src

2024-02-28 Thread Denis Fondras
CVSROOT:/cvs
Module name:src
Changes by: de...@cvs.openbsd.org   2024/02/28 09:08:34

Modified files:
share/man/man4 : ppp.4 
sys/net: if_ppp.c if_pppvar.h 

Log message:
Enable IPv6 AF for ppp(4)

OK claudio@



CVS: cvs.openbsd.org: www

2024-02-28 Thread Stuart Henderson
CVSROOT:/cvs
Module name:www
Changes by: st...@cvs.openbsd.org   2024/02/28 07:44:56

Modified files:
.  : ftp.html ftplist httpslist 
openbgpd   : ftp.html 
openssh: ftp.html portable.html 
openntpd   : portable.html 
rpki-client: portable.html 

Log message:
sync



CVS: cvs.openbsd.org: www

2024-02-28 Thread Stuart Henderson
CVSROOT:/cvs
Module name:www
Changes by: st...@cvs.openbsd.org   2024/02/28 07:44:34

Modified files:
build  : mirrors.dat 

Log message:
comment-out http/https/ftp for mirrors.gethosted.online, it uses the wrong path



CVS: cvs.openbsd.org: src

2024-02-28 Thread Martin Pieuchot
CVSROOT:/cvs
Module name:src
Changes by: m...@cvs.openbsd.org2024/02/28 06:43:44

Modified files:
sys/kern   : kern_sched.c 

Log message:
No need to kick a CPU twice when putting a thread on its runqueue.

>From Christian Ludwig, ok claudio@



CVS: cvs.openbsd.org: src

2024-02-28 Thread Miod Vallat
CVSROOT:/cvs
Module name:src
Changes by: m...@cvs.openbsd.org2024/02/28 05:53:31

Modified files:
sys/dev/ic : fxp.c 

Log message:
Fix rx_bufs accounting buglet; reported on bugs@ by dns at strangeloop dot cc;
ok claudio@ deraadt@



CVS: cvs.openbsd.org: src

2024-02-28 Thread Theo Buehler
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2024/02/28 05:21:16

Modified files:
lib/libcrypto/x509: x509_vfy.c 

Log message:
Use an accessor instead of reaching into X509_PURPOSE

ok jsing



CVS: cvs.openbsd.org: src

2024-02-28 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:src
Changes by: bl...@cvs.openbsd.org   2024/02/28 03:57:20

Modified files:
sys/netinet: ip_input.c 
sys/netinet6   : ip6_forward.c ip6_input.c ip6_output.c 

Log message:
Cleanup IP input, forward, output.

Before changing the routing code, get IPv4 and IPv6 input, forward,
and output in a similar shape.  Remove inconsistencies.

OK claudio@



CVS: cvs.openbsd.org: src

2024-02-28 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2024/02/28 02:36:11

Modified files:
usr.bin/rsync  : blocks.c 

Log message:
Refactor blk_match(). Fold the remaining data and empty file or no blocks
cases together since they are kind of the same.

OK tb@