sys: Remove $FreeBSD$: one-line .c patternRemove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
sys: Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDThe SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catchup to that fact and revert to their recommended match of BSD-2-Clause.Discussed with: pfgMFC After: 3 daysSponsored by: Netflix
show more ...
vmgenc: Remove unused devclass argument to DRIVER_MODULE.
vmgenid(4): Integrate as a random(4) sourceThe number is public and has no "entropy," but should be integrated quicklyon VM rewind events to avoid duplicate sequences.Approved by: csprng(markm)
vmgenid(4): Integrate as a random(4) sourceThe number is public and has no "entropy," but should be integrated quicklyon VM rewind events to avoid duplicate sequences.Approved by: csprng(markm)Differential Revision: https://reviews.freebsd.org/D22946
Add vmgenc(4) driver for ACPI VM generation counterThe VM generation counter is a 128-bit value exposed by the BIOS via ACPI.The value changes to another unique identifier whenever a VM is duplica
Add vmgenc(4) driver for ACPI VM generation counterThe VM generation counter is a 128-bit value exposed by the BIOS via ACPI.The value changes to another unique identifier whenever a VM is duplicated.Additionally, ACPI provides notification events when such events occur.The driver decodes the pointer to the UUID, exports the value to userspacevia OPAQUE sysctl blob, and forwards the ACPI notifications in the form ofan EVENTHANDLER invocation as well as userspace devctl events.See design paper: https://go.microsoft.com/fwlink/p/?LinkID=260709