OpenBSD/src Pb103BLsys/dev/pci pcidevs.h pcidevs_data.h

   regen
VersionDeltaFile
1.2134+9-1sys/dev/pci/pcidevs_data.h
1.2139+3-1sys/dev/pci/pcidevs.h
+12-22 files

OpenBSD/src jabgzv0sys/dev/pci pcidevs

   add Intel Wildcat Lake Ethernet ids
VersionDeltaFile
1.2146+3-1sys/dev/pci/pcidevs
+3-11 files

OpenBSD/src bsk5JRzusr.bin/ssh ssh.c ssh.1

   fix up synopsis and tweak wording for -Z
VersionDeltaFile
1.454+4-4usr.bin/ssh/ssh.1
1.636+2-2usr.bin/ssh/ssh.c
+6-62 files

OpenBSD/src 61DmEPPusr.bin/ssh sshd_config.5

   document existence of mlkem768{brainpoolp256r1,nistp256}-sha256 KEXes
VersionDeltaFile
1.401+6-2usr.bin/ssh/sshd_config.5
+6-21 files

OpenBSD/src 8PNiOTxlib/libcrypto/arch/aarch64 crypto_cpu_caps.c

   switch aarch64 CPU feature detection to elf_aux_info()

   ok kettenis@ tb@
VersionDeltaFile
1.3+19-63lib/libcrypto/arch/aarch64/crypto_cpu_caps.c
+19-631 files

OpenBSD/src g5GUyr9sys/lib/libsa sha2.h

   libsa: drop prototypes for functions not implemented in libsa

   ok tb@
VersionDeltaFile
1.2+1-21sys/lib/libsa/sha2.h
+1-211 files

OpenBSD/src G3mOWWZusr.sbin/vmd vmm.c proc.c

   Switch type of imsgbuf_get return variable 'n' to int.

   Addtionally switch the type of a write return variable to ssize_t.
   OK dv@
VersionDeltaFile
1.33+3-5usr.sbin/vmd/vioscsi.c
1.32+3-5usr.sbin/vmd/vionet.c
1.32+3-5usr.sbin/vmd/vioblk.c
1.127+3-4usr.sbin/vmd/vm.c
1.39+2-3usr.sbin/vmd/proc.c
1.140+2-2usr.sbin/vmd/vmm.c
+16-241 files not shown
+18-267 files

OpenBSD/src SGuW1zRusr.sbin/vmd virtio.c

   Remove \n at end of log_debug(), not needed.

   OK dv@
VersionDeltaFile
1.146+2-2usr.sbin/vmd/virtio.c
+2-21 files

OpenBSD/src rCPqFBXusr.sbin/rad control.c rad.c

   Use the right type for the return value of imsgbuf_get and imsgbuf_read

   ok florian@ rsadowski@
VersionDeltaFile
1.41+3-5usr.sbin/rad/rad.c
1.32+3-5usr.sbin/rad/engine.c
1.16+2-3usr.sbin/rad/control.c
+8-133 files

OpenBSD/src vsZrBp8usr.sbin/ntpd constraint.c ntp_dns.c

   Adjust type of 'n' used by imsgbuf_get and imsgbuf_read to int.

   Additionally stop abusing 'n' for other means and use better variables
   for those cases.

   OK tb@
VersionDeltaFile
1.185+15-16usr.sbin/ntpd/ntp.c
1.147+5-6usr.sbin/ntpd/ntpd.c
1.39+2-3usr.sbin/ntpd/ntp_dns.c
1.30+2-3usr.sbin/ntpd/control.c
1.64+2-2usr.sbin/ntpd/constraint.c
+26-305 files

OpenBSD/src 3jEB33ousr.sbin/rpki-client rrdp_snapshot.c rrdp_delta.c

   rpki-client: unexpectedely -> unexpectedly

   ok claudio
VersionDeltaFile
1.24+7-7usr.sbin/rpki-client/rrdp_notification.c
1.13+5-5usr.sbin/rpki-client/rrdp_snapshot.c
1.17+5-5usr.sbin/rpki-client/rrdp_delta.c
+17-173 files

OpenBSD/src mDrVcxrusr.sbin/rpki-client http.c

   rpki-client: zap extraneous empty line in http.c
VersionDeltaFile
1.108+1-2usr.sbin/rpki-client/http.c
+1-21 files

OpenBSD/src WsyNzoRlib/libfuse fuse_private.h fuse_ops.c

   When using the high-level FUSE API, the filesystem may choose between
   two modes of operation when implementing readdir().

   1) The readdir implementation ignores the offset parameter, and
      passes zero to the filler function's offset. The filler function
      will not return '1' (unless an error happens), so the whole
      directory is read in a single readdir operation.

   2) The readdir implementation keeps track of the offsets of the
      directory entries. It uses the offset parameter and always passes
      non-zero offset to the filler function. When the buffer is full
      (or an error happens) the filler function will return '1'.

   We currently don't support 1) and instead implement an alternative
   mode that is stateless but emulates the behaviour. For each
   FUSE_READDIR received from the kernel, it will invoke the file
   system's readdir() callback and ask it to completely fill the buffer
   again, but ignore any entries that are before the given offset or
   exceed the size of the buffer. This of course has a performance

    [11 lines not shown]
VersionDeltaFile
1.46+151-41lib/libfuse/fuse_ops.c
1.30+6-6lib/libfuse/fuse_private.h
+157-472 files

OpenBSD/src wn4xa7wusr.bin/indent indent_globs.h

   convert pointless bitfield to a regular variable; ok krw
VersionDeltaFile
1.17+2-2usr.bin/indent/indent_globs.h
+2-21 files

OpenBSD/src kNX7Ygvusr.sbin/radiusd radiusd_module.c control.c

   Switch over to imsgbuf_get() from imsg_get(), nothing uses the return
   value as message length.

   OK tb@
VersionDeltaFile
1.64+8-10usr.sbin/radiusd/radiusd.c
1.21+7-9usr.sbin/radiusd/radiusd_bsdauth.c
1.9+8-8usr.sbin/radiusd/radiusd_file.c
1.8+5-5usr.sbin/radiusd/control.c
1.27+4-4usr.sbin/radiusd/radiusd_module.c
+32-365 files

OpenBSD/src 3VxBexFusr.sbin/radiusctl radiusctl.c

   Switch from imsg_get to imsgbuf_get and switch 'n' from ssize_t to int.

   OK tb@
VersionDeltaFile
1.18+3-4usr.sbin/radiusctl/radiusctl.c
+3-41 files

OpenBSD/src 6SaR9Zyusr.sbin/npppctl npppctl.c

   Switch from imsg_get to imsgbuf_get.

   OK tb@
VersionDeltaFile
1.16+2-2usr.sbin/npppctl/npppctl.c
+2-21 files

OpenBSD/src 6K6Kinvusr.sbin/npppd/npppd control.c privsep.c

   Switch from imsg_get() to imsgbuf_get(), the return value is not used
   for its size. Also switch type of n to int.

   OK tb@
VersionDeltaFile
1.30+3-3usr.sbin/npppd/npppd/privsep.c
1.17+2-2usr.sbin/npppd/npppd/control.c
+5-52 files

OpenBSD/src 3FlK2PXusr.bin/tmux proc.c

   Switch from imsg_get to imsgbuf_get and switch type of n to int.

   OK tb@
VersionDeltaFile
1.32+3-3usr.bin/tmux/proc.c
+3-31 files

OpenBSD/src NFXJzEdusr.bin/file file.c

   Switch from imsg_get to imsgbuf_get.

   OK tb@
VersionDeltaFile
1.75+3-3usr.bin/file/file.c
+3-31 files

OpenBSD/src 9SSFKJ7sbin/dhcp6leased control.c frontend.c

   Adjust type of 'n' from ssize_t to int since imsgbuf_get() now returns int
   and so does imsgbuf_read().

   OK florian@
VersionDeltaFile
1.42+4-6sbin/dhcp6leased/engine.c
1.24+3-5sbin/dhcp6leased/frontend.c
1.23+3-5sbin/dhcp6leased/dhcp6leased.c
1.11+2-3sbin/dhcp6leased/control.c
+12-194 files

OpenBSD/src BzHrCI5sbin/dhcp6leased engine.c

   Remove \n from log message. log_debug already adds that internally.

   OK florian@
VersionDeltaFile
1.41+2-2sbin/dhcp6leased/engine.c
+2-21 files

OpenBSD/src I7yudjDsbin/dhcpleased control.c frontend.c

   Adjust type of 'n' from ssize_t to int since imsgbuf_get() now returns int
   and so does imsgbuf_read().

   OK florian@
VersionDeltaFile
1.67+3-5sbin/dhcpleased/engine.c
1.47+3-5sbin/dhcpleased/dhcpleased.c
1.49+3-4sbin/dhcpleased/frontend.c
1.14+2-3sbin/dhcpleased/control.c
+11-174 files

OpenBSD/src X5llkcosbin/slaacd control.c slaacd.c

   Adjust type of 'n' from ssize_t to int since imsgbuf_get() now returns int
   and so does imsgbuf_read().

   OK florian@
VersionDeltaFile
1.84+3-5sbin/slaacd/slaacd.c
1.76+3-5sbin/slaacd/frontend.c
1.105+3-5sbin/slaacd/engine.c
1.19+2-3sbin/slaacd/control.c
+11-184 files

OpenBSD/src tTwxbv5sbin/slaacd engine.c

   Remove \n from log messages.

   OK florian@
VersionDeltaFile
1.104+3-3sbin/slaacd/engine.c
+3-31 files

OpenBSD/src 4KDDteisbin/unwind control.c resolver.c

   Adjust type of 'n' to int since imsgbuf_get now returns int and so
   does imsgbuf_read where 'n' is used as well.

   OK florian@
VersionDeltaFile
1.79+4-6sbin/unwind/unwind.c
1.177+3-5sbin/unwind/resolver.c
1.25+2-3sbin/unwind/control.c
+9-143 files

OpenBSD/src pu9h35Vusr.bin/tmux control.c server-client.c

   Do not attempt to drain write buffer on stuck clients, since it requires
   a weird dance to make libevent do it. Instead, just ignore the client
   and destroy the buffer normally if not drained in 10 seconds.
VersionDeltaFile
1.502+21-20usr.bin/tmux/server-client.c
1.65+3-7usr.bin/tmux/control.c
+24-272 files

OpenBSD/src qsFsEWrusr.bin/sndiod dev.h opt.h

   sndiod: Replace {OPT,APP,PORT,MIDITHRU}_NAMEMAX by CTL_NAMEMAX

   All are defined to the same value, so no object change.
VersionDeltaFile
1.24+5-5usr.bin/sndiod/opt.c
1.14+3-5usr.bin/sndiod/opt.h
1.6+7-1usr.bin/sndiod/defs.h
1.60+1-3usr.bin/sndiod/dev.h
+16-144 files

OpenBSD/src 8XpE1G5usr.bin/sndiod opt.c opt.h

   sndiod: Define OPT_NAMEMAX to the string size, \0 included

   This is less error prone. No object change.
VersionDeltaFile
1.13+3-3usr.bin/sndiod/opt.h
1.23+2-2usr.bin/sndiod/opt.c
+5-52 files

OpenBSD/src 09NZYojusr.sbin/bgpd bgpd.h util.c

   Incorporate new RTR v2 error codes from draft-ietf-sidrops-8210bis-26

   RTR v2 introduces additional error codes:

    9: ASPA Provider List Error (fatal): The received ASPA PDU has an
       incorrect list of Provider Autonomous System Numbers.
   10: Transport Error (fatal): An error such as a stall or other transport
       layer failure occurred.
   11: Ordering Error (fatal): The received PDU does not conform with the
       specification defined ordering.
   12: Cache Restart (non-fatal): The cache is restarting.
   13: Cache Shutdown (fatal): The cache has shut down deliberately.

   OK claudio@
VersionDeltaFile
1.55+19-4usr.sbin/bgpd/rtr_proto.c
1.104+11-1usr.sbin/bgpd/util.c
1.547+6-1usr.sbin/bgpd/bgpd.h
+36-63 files