DragonFlyBSD
The DragonFlyBSD operating system's source tree.
www.dragonflybsd.org
Most Popular This Year
- world - Replace gnu diff, diff3, and sdiff with BSD versions
Matthew Dillon: - Replace diff and diff3 with the OpenBSD diff and diff3, Replace sdiff with the FreeBSD sdiff, Remove the GNU diff, diff3, and sdiff - makefs(8): Sync cd9660 function with FreeBSD
Aaron LI: The major changes are (in chronological order):
- makefs: connect cd9660 El Torito EFI boot image system type
- Fix -Wpointer-sign warnings in makefs and mkimg
- makefs: correct iso9660 Rock Ridge TF timestamps
The bit definitions for the TF_* timestamp bits (TF_MODIFY, etc.) were incorrect, and timestamps were written in the wrong order.
See RRIP 4.1.6 Description of the "TF" System Use Entry for details.
PR: 203531 Reported by: Thomas Schmitt Reviewed by: jrtc27, kevans Sponsored by: The FreeBSD Foundation Differential Revision: - Remove hifn(4), safe(4), ubsec(4) and padlock(4) drivers
Michael Neumann: These were removed in OpenBSD 7.1 and it's unlikely that they are still in use by someone today.
Padlock can be used (on VIA CPUs) without having a kernel driver for it as it is a CPU instruction. - dm_target_crypt_ng - Add next-generation implementation
Michael Neumann: - No longer use opencrypto or cryptodev. - procctl(2): Implement PROC_REAP_KILL request to send signals
Aaron LI: The PROC_REAP_KILL request can be used to deliver a signal to the direct children or all descendants of the reaper. - netstat: add shorthand -46 for -f inet and -f inet6
Bill Yuan: Use -4 and -6 to specify the address family, just shorthands for -f inet and -f inet6. - contrib: Remove empty diffutils
Aaron LI: contrib/diffutils was replaced with a BSD version in commit c9733229451fac5faa53b1a016b01866eae75a1c. - net - Do not treat .0 addresses as broadcast by default
Matthew Dillon: - DFly still had very old code that treats all 0's within an IPV4 subnet as a broadcast address. - fdisk(8): Support 4096 sector size and recognize pMBR of 4Kn disks
Aaron LI: Tweak the fdisk(8) utility to support 4096-byte sector size, so it now can read the pMBR on GPT-formatted 4Kn (aka 4K native) disks, e.g., - dm_target_crypt_ng - Remove worker pool
Michael Neumann: No longer use a worker pool to distribute read/write BIOs to worker threads.