Build date: 1760133603 - Fri Oct 10 22:00:03 UTC 2025 Build cvs date: 1760112778 - Fri Oct 10 16:12:58 UTC 2025 Build id: 2025-10-11.1 Build tags: amd64-regress ports sysupgrade Applied the following diff(s): /home/anton/tmp/robsd/src-llvm-ubsan.diff /home/anton/tmp/robsd/src-sys-em.diff /home/anton/tmp/robsd/src-sys-uhidev-sispm.diff /home/anton/tmp/robsd/src-sysupgrade.diff P lib/libcrypto/x509/x509_local.h P lib/libcrypto/x509/x509cset.c P regress/usr.bin/ssh/sftp-cmds.sh P sys/dev/acpi/amdpmc.c P sys/dev/pci/if_ice.c P usr.bin/ssh/ssh-keygen.c P usr.bin/ssh/ssh-pkcs11.c M usr.sbin/bgpd/session.c commit uCcXsfsmVtpcd0o0 Author: kettenis Date: 2025/10/10 16:12:58 Add SMU support to amdpmc(4). The SMU is a microcontroller buried deep in the bowels of AMD SoCs and needs to be tickled in order to reach the lowest power states in suspend. It also provides some information on whether we actually reached those lower states. On most machines we will need to tell the USB4 controllers to go to sleep to reach these states. So it is likely that we won't reach S0i3 yet on those machines. ok mlarkin@, deraadt@ sys/dev/acpi/amdpmc.c commit zKJgQAyGJmve7J8P Author: claudio Date: 2025/10/10 11:58:24 Disable ICE_DBG_TRACE in the default ice_debug value. It is way to noisy and adds little real value. OK stsp@ sys/dev/pci/if_ice.c commit dpItdCFA41JN2vzF Author: claudio Date: 2025/10/10 11:56:48 Fix various errors on big-endian systems. With this ice(4) works on sparc64. In ice_copy_rxq_ctx_to_hw() the buffer passed in is already in little endian and so one needs to call bus_space_write_raw_4(). Wrap that into ICE_WRITE_RAW() to be consistent. In ice_txeof() the calculation of dtype was all messed up. The 64bit descriptor word cmd_type_offset_bsz needs to be converted to host byte order and then all the masking and shifting can happen. Also there is no need to byte swap ICE_TX_DESC_DTYPE_DESC_DONE since dtype is already in host byte order. On code inspection another unneeded byte swap was found in ice_tx_setup_offload(). The vlan tag needs to be shifted into position unswapped and the full word is swapped at the end. OK stsp@ sys/dev/pci/if_ice.c commit Zx6YnpktNh2tLBMW Author: tb Date: 2025/10/10 11:31:13 Remove unused sequence member from x509_revoked_st To allow binary search for looking up if a cert was revoked in a CRL, the list of revoked serial numbers is sorted in crl_lookup(). On the other hand, to be able to output the DER that was actually signed by the issuer, the original order needs to be remembered. Before the encoding was cached, there was a mechanism that would restore the original order on serialization using the .sequence member. This was done without a lock and was thus racy (hilarity would ensue if one thread performed a CRL lookup while another thread serialized the same CRL). When the racy mechanism was removed in 2004, the only reader of .sequence, X509_REVOKED_seq_cmp(), was also removed, and this piece of dead code was left behind. Garbage collect it. ok kenjiro lib/libcrypto/x509/x509_local.h lib/libcrypto/x509/x509cset.c commit 61T041UFgw2zT8UT Author: djm Date: 2025/10/10 00:31:53 clean up more thoroughly between tests regress/usr.bin/ssh/sftp-cmds.sh commit M2wCGlGDlmOSFyTc Author: djm Date: 2025/10/09 23:58:27 simplify regress/usr.bin/ssh/sftp-cmds.sh commit Zmd3nLPlpnOdp4hN Author: djm Date: 2025/10/09 23:26:47 don't abuse SSHKEY_FLAG_EXT to signal that a key is in the agent, as that triggers special handling on sshkey_free() usr.bin/ssh/ssh-keygen.c commit xpT2RtnkWWOFQUDH Author: djm Date: 2025/10/09 23:25:23 downgrade a useless error() -> debug() usr.bin/ssh/ssh-pkcs11.c