Minimal gbr validation and printing fixes
Job noticed a while back that one of the two .gbr in the ecosystem is
malformed. Worse, it made filemode error out in json_do_string() when
dumping JSON because its vCard is an empty octet string (which means it
is the byte string 0x04 0x00, so it contains a control character):
SEQUENCE {
# rpkiGhostbusters
OBJECT_IDENTIFIER { 1.2.840.113549.1.9.16.1.35 }
[0] {
OCTET_STRING { OCTET_STRING {} }
}
}
A valid vCard contains a printable UTF-8 string and looks like this:
SEQUENCE {
# rpkiGhostbusters
[16 lines not shown]
tak: strvis the UTF-8 comment section
This is an ugly kludge until we can do better validation. Now is not the
right time in the release cycle to fiddle with even more complicated and
more broken legacy messes than we already have to deal with in here.
ok claudio
takey_print: don't emit empty line between comments and URIs
It was probably an oversight in RFC 8630 that TALs don't allow an empty
line between the comment section and the URI section. Or maybe a comment
of only one or two lines was intended rather than the ugly blob we now
have in arin.tal. Be that as it may, the output is supposed to be a TAL
and it should conform to the RFC.
ok claudio
Apparently to read the counters we need to write the full DMA address
before setting the command bit. The current code causes hangs on a
Radxa Orion O6 board with onboard RTL8126 chips.
ok dlg@, kevlo@
Use acpipci(4) on hypervisors
If the hypervisor cpuid bit is set, use acpipci to attach PCI busses.
As virtualization is not that old, we can assume that in VMs we don't
need the quirk for old, broken ACPI.
This solves problems with PCI BAR access and recent seabios versions
on qemu.
Agreement from @kettenis
restrict ice(4) firmware to features actually supported by the driver
Avoids traffic stalls due to firmware trying to use multiple queues,
which the driver does not handle yet.
port ice(4) code for loading DDP firmware packages from freebsd
Loading firmware is a prerequisite for performance features such as
checksum offload and TSO. These features are not yet implemented by our
version of this driver and will be added during the next release cycle.
Firmware has been made available on firmware.openbsd.org by sthen@
Rewrite the description of how sorting works by default, in particular
avoiding the nebulous word "lexicographically" and clarifiying that
characters are ordered according to ascii(7).
Polish a few nearby wordings for conciseness and readability.
OK pascal@ jmc@
Support setting the new variable PASSWDSKIP in /etc/daily.local to prevent
security(8) from complaining about specific accounts that have no password,
typically used for services like anoncvs and gotd.
In addition to improving support for gotd, this also improves security
for everyone because the exception will now only exist on machines
where the admin explicitly enables it.
Based on an idea from stsp@; OK stsp@.
(Actually, sthen@ also mentioned a similar idea in 2009, and afresh1@
indicated potential support for the general direction in 2024.)
pvclock: Map page unencrypted
If SEV is enabled, we need to map the pvclock page as unencrypted /
shared with the hypervisor.
ok bluhm@
looks good to me hshoexer@
Use the more portable st_mtime instead of the newer st_mtim member.
The latter is defined in POSIX 2024 but it seems not many systems (aka Linux)
picked that up yet as a default. POSIX 2024 defines fallback macros for using
st_mtime so 'this is fine'.
OK tb@
drm/amdkfd: Fix user queue validation on Gfx7/8
From Philip Yang
731eccbd65aac026770e78279d551e1895572bd0 in linux-6.12.y/6.12.21
542c3bb836733a1325874310d54d25b4907ed10e in mainline linux
drm/amdgpu: Fix JPEG video caps max size for navi1x and raven
From David Rosca
3aa8e00fefcaadd33f40977225014b26ef3ae140 in linux-6.12.y/6.12.21
ec33964d9d88488fa954a03d476a8b811efc6e85 in mainline linux
drm/amdgpu: Fix MPEG2, MPEG4 and VC1 video caps max size
From David Rosca
a0a43a13337146f54060e7179c25bfbc8479c775 in linux-6.12.y/6.12.21
f0105e173103c9d30a2bb959f7399437d536c848 in mainline linux
drm/amdgpu: Remove JPEG from vega and carrizo video caps
From David Rosca
499d1adcac3e89841f284cf82e67583f34d73106 in linux-6.12.y/6.12.21
7fc0765208502e53297ce72c49ca43729f9d6ff3 in mainline linux
drm/amdgpu/pm: wire up hwmon fan speed for smu 14.0.2
From Alex Deucher
97c2a78d29954015ce3f499fea2306fd83132e6c in linux-6.12.y/6.12.21
5ca0040ecfe8ba0dee9df1f559e8d7587f12bf89 in mainline linux
drm/amdgpu/pm: Handle SCLK offset correctly in overdrive for smu 14.0.2
From Tomasz Pakula
4b8b7026fc3b4211c40ed26d88944a320d525ee4 in linux-6.12.y/6.12.21
d9d4cb224e4140f51847642aa5a4a5c3eb998af0 in mainline linux