cheloha [Mon, 25 Sep 2023 00:29:31 +0000 (00:29 +0000)]
ddb(4): clockintr: print cl_arg address when displaying a clockintr
jca [Sun, 24 Sep 2023 18:49:29 +0000 (18:49 +0000)]
Drop PTE check in pmap_fault_fixup(). Since pmap_enter() doesn't
add PTE's for pages that haven't been accessed yet, the check would
skip the fixup on such pages and force us to go through uvm_fault()
just for the sake of MOD/REF bit emulation. Since we already check
the PTE descriptor, dropping the check should be safe. Doing so
gives us a nice 10% performance gain when building a kernel.
Original commit for arch/arm64/arm64/pmap.c:
date: 2021/05/16 17:41:30; author: kettenis; state: Exp; lines: +1 -8; commitid: yBzyZzIKRLyAkuDY;
ok drahn@ kettenis@
deraadt [Sun, 24 Sep 2023 15:53:40 +0000 (15:53 +0000)]
sync
cheloha [Sun, 24 Sep 2023 12:27:16 +0000 (12:27 +0000)]
kern_clockintr.c: remove extra newline
op [Sun, 24 Sep 2023 09:15:43 +0000 (09:15 +0000)]
bsd.port.mk.5: GC the misp64 *pic.a fragment handling documentation
More than ten years ago, bsd.lib.mk stopped creating lib*_pic.a files
and the corresponding PFRAG.no_mips64 were removed from the ports tree.
Last year the -Dno_mips64 handling in bsd.port.mk was GC'd too, but the
note in the bsd.port.mk manpage was left.
ok espie@
tb [Sun, 24 Sep 2023 08:28:20 +0000 (08:28 +0000)]
Make REGRESS_LOG more useful again
Enabling REGRESS_FAIL_EARLY made REGRESS_LOG error out at the first error,
which is pointless. So default to no if REGRESS_LOG is set unless the user
explicitly enabled it.
Requested by claudio
ok bluhm
claudio [Sun, 24 Sep 2023 08:14:13 +0000 (08:14 +0000)]
REGRESS_FAIL_EARLY defaults to yes now. So no need to overload the
value here anymore.
OK tb@ bluhm@
tb [Sun, 24 Sep 2023 08:08:54 +0000 (08:08 +0000)]
Break two ridiculously long lines in ec_pub_cmp() and ec_cmp_parameters()
tb [Sun, 24 Sep 2023 07:58:31 +0000 (07:58 +0000)]
Refactor eckey_{param2type,type2param}()
EC key parameters can be determined by an OID or they can be explicitly
encoded. The confusingly named eckey_{param2type,type2param}() decode a
new EC key from either form of parameters, or they encode a given key's
parameters in the proper way. Signature and semantics are all over the
place. It also features an inlined version of EC_KEY_new_by_curve_name().
This commit brings some order into this mess.
Parameters are given by a pair (ptype, pval), where the ptype is either
V_ASN1_OBJECT for OID encoding or V_ASN1_SEQUENCE for explicit encoding.
Accordingly, the void pointer pval is an ASN1_OBJECT or an ASN1_STRING.
These pairs are abstracted away in the X509_ALGOR object.
The library decides whether a given EC key uses OID or explicit parameter
encoding using the asn1_flag on the EC key's internal EC_GROUP, i.e., the
object representing its curve. If this flag is set, the OID is determined
by the nid returned by EC_GROUP_get_curve_name().
Add 'mutually inverse' pairs of functions eckey_{to,from}_params() which
wrap eckey_{to,from}_object() and eckey_{to,from}_explicit_params(). This
way the EC ameth pub and priv key de/encoding functions can transparently
translate from/to an X509_ALGOR object.
Of course, this is just an intermediate step and if you look closely you
notice const weirdness (due to the fact that the carefully planned and
executed const rampage missed the ECParameters API) and all sorts of other
things that need to be fixed. Who would bat an eye lid? It wouldn't be
visible amid all the twitching anyway.
ok jsing
tb [Sun, 24 Sep 2023 07:01:40 +0000 (07:01 +0000)]
openssl-ruby tests: remove fallback to ruby31
yasuoka [Sun, 24 Sep 2023 06:09:35 +0000 (06:09 +0000)]
Strip realm part for bsdauth. This is required and an exmaple usage of
new radius_standard module.
yasuoka [Sun, 24 Sep 2023 05:56:06 +0000 (05:56 +0000)]
The stage queue should be freeed when wg_peer is destroyed.
diff from IIJ.
ok bluhm mvs
deraadt [Sun, 24 Sep 2023 01:08:24 +0000 (01:08 +0000)]
sync
kettenis [Sat, 23 Sep 2023 19:11:00 +0000 (19:11 +0000)]
stfrng(4)
kettenis [Sat, 23 Sep 2023 18:29:55 +0000 (18:29 +0000)]
Add stfrng(4), a driver for the random number generator on the JH7110 SoC.
ok joel@, jca@
espie [Sat, 23 Sep 2023 16:08:46 +0000 (16:08 +0000)]
fully deprecate SITES0...9, I will convert the few (200) ports still using
it as soon as my test bulk finishes.
espie [Sat, 23 Sep 2023 16:06:10 +0000 (16:06 +0000)]
explicitly says that's a script
deraadt [Sat, 23 Sep 2023 15:38:27 +0000 (15:38 +0000)]
sync
mvs [Sat, 23 Sep 2023 13:01:12 +0000 (13:01 +0000)]
Use shared netlock to protect if_list and ifa_list walkthrough and ifnet
data access within kvp_get_ip_info().
ok bluhm
dv [Sat, 23 Sep 2023 12:31:41 +0000 (12:31 +0000)]
vmd(8): correct log messages, no functional change.
Some log messages incorrectly said "vionet" or "vioblk". Fix based
on the context.
dv [Sat, 23 Sep 2023 12:27:21 +0000 (12:27 +0000)]
vmd(8): log vmd's vm id, not vmm's in vcpu_run_loop.
Some guests cause a warning message during a shutdown. Log the vmd
vm id and not the kernel vmm id as it's next to useless to the end
user. This has annoyed me too much.
jan [Sat, 23 Sep 2023 09:17:21 +0000 (09:17 +0000)]
Fix unreliable sys_setsockopt() with consistent use of M_WAIT
Also remove useless NULL check.
ok bluhm@
deraadt [Fri, 22 Sep 2023 23:49:47 +0000 (23:49 +0000)]
sync
mvs [Fri, 22 Sep 2023 22:12:32 +0000 (22:12 +0000)]
Introduce `hotplug_mtx' mutex(9) and make `hotplugread_filtops' MP safe.
Use this mutex(9) to protect `evqueue_head', `evqueue_tail' and
`evqueue_count'.
ok bluhm
mvs [Fri, 22 Sep 2023 20:03:05 +0000 (20:03 +0000)]
Make `logread_filterops' MP safe. For that purpose use `log_mtx' mutex(9)
protecting message buffer.
ok bluhm
espie [Fri, 22 Sep 2023 07:29:14 +0000 (07:29 +0000)]
small speed increase: do not bother substituting variables if there are none.
tested through a full src/x/ports build
espie [Fri, 22 Sep 2023 07:28:31 +0000 (07:28 +0000)]
significantly increase the speed of pkg-config by not going to the env
all the time.
fully tested thru a src/x/ports build
jsg [Fri, 22 Sep 2023 01:10:43 +0000 (01:10 +0000)]
move simplebusvar.h so it can be used without ifdef
ok kettenis@ phessler@
bluhm [Thu, 21 Sep 2023 21:22:43 +0000 (21:22 +0000)]
Remove REGRESS_FULL. It is not documented, just hides some tests
and its purpose is unknown.
bluhm [Thu, 21 Sep 2023 21:08:48 +0000 (21:08 +0000)]
Remove cap_mkdb regress. The program fails as -i option has been
removed. But the test expects failure and always passes. There
is nothing tested anymore.
bluhm [Thu, 21 Sep 2023 20:55:02 +0000 (20:55 +0000)]
Add rsync to subdir to create obj. With obj directory rsync test
passes also when run as root.
kettenis [Thu, 21 Sep 2023 20:26:17 +0000 (20:26 +0000)]
Properly set up the IOMMU stream ID mapping. Needed for upcoming changes
to apldart(4).
ok patrick@
patrick [Thu, 21 Sep 2023 19:39:41 +0000 (19:39 +0000)]
Encode the device tree node in the pci tag like we do in aplpcie(4) so that
PCI device drivers can have access to device tree properties, e.g. to allow
qwx(4) to retrieve the calibration variant.
ok kettenis@
jmc [Thu, 21 Sep 2023 18:16:12 +0000 (18:16 +0000)]
--csv is an extension; ok millert
millert [Thu, 21 Sep 2023 17:19:06 +0000 (17:19 +0000)]
Fix a potential out-of-bounds read caused by the big-endian fix.
We must store a UTF-32 empty string, not UTF-8 empty string, for
an empty CCL. Found running the awk test suite with address sanitizer.
schwarze [Thu, 21 Sep 2023 16:30:54 +0000 (16:30 +0000)]
Document LC_CTYPE.
Based on a diff from millert@ with additions by me.
Feedback and OK millert@.
jsg [Thu, 21 Sep 2023 13:51:50 +0000 (13:51 +0000)]
make history less verbose
ok schwarze@ millert@
claudio [Thu, 21 Sep 2023 13:49:25 +0000 (13:49 +0000)]
Move code inside exit1() to better spots.
- PS_PROFIL bit is moved into the process cleanup block where it belongs
- The proc read-only limit cache cleanup is moved up right after clearing
p->p_fd cache. lim_free() can potentially sleep and so needs to be
above the line where p_stat is set to SDEAD.
With and OK jca@
kn [Thu, 21 Sep 2023 12:11:34 +0000 (12:11 +0000)]
enable softraid(4) in ramdisk
No boot support as per manual, but it already has bio(4) and bioctl(8);
complete enable use of software RAID.
OK, run-tested gkoehler
stsp [Thu, 21 Sep 2023 09:07:53 +0000 (09:07 +0000)]
belated iwn(4) man page update: 40MHz channels are supported since Nov 2021
krw [Thu, 21 Sep 2023 00:05:36 +0000 (00:05 +0000)]
Nuke trailing whitespace.
millert [Wed, 20 Sep 2023 16:57:12 +0000 (16:57 +0000)]
Support --version option like upstream awk but don't document it.
Upstream awk has supported --version for a long time but does not
support -V like our awk does. Both options are supported by gawk.
millert [Wed, 20 Sep 2023 16:49:13 +0000 (16:49 +0000)]
Use awk_mb_cur_max in nawk_convert() instead of MB_CUR_MAX.
tb [Wed, 20 Sep 2023 11:42:25 +0000 (11:42 +0000)]
Bump LibreSSL version
tb [Tue, 19 Sep 2023 20:50:40 +0000 (20:50 +0000)]
Fix path to dist-tuple.pattern
deraadt [Tue, 19 Sep 2023 20:37:07 +0000 (20:37 +0000)]
typo; from Jim Spath
kettenis [Tue, 19 Sep 2023 19:20:33 +0000 (19:20 +0000)]
Import the DVFS code from arm64.
ok jca@, jmatthew@, jsing@
kettenis [Tue, 19 Sep 2023 19:15:08 +0000 (19:15 +0000)]
Instead of adjusting PLL0 to scale the CPU frequency, use the divider
of the actual CPU clock. This prevents one of the GMAC0 clocks changing
when we change the CPU frequency, which would break one of the Ethernet
ports on the VisionFive 2 v1.2a.
However, since the firmware configures PLL0 to 1 GHz, we still need to
bump it up to 1.5 GHz in order to reach the highest supported CPU clock
rates.
ok jmatthew@, jca@, jsing@
naddy [Tue, 19 Sep 2023 15:02:54 +0000 (15:02 +0000)]
etc: drop vestiges of obsolete DSA ssh host keys
It has been 8 years since DSA keys were disabled by default for
ssh/sshd, and 15 months since ssh-keygen -A belatedly stopped
generating DSA host keys.
ok semarie@ deraadt@
jsg [Tue, 19 Sep 2023 14:14:35 +0000 (14:14 +0000)]
avoid c99 for-scope variable decl
ok jmatthew@
jsg [Tue, 19 Sep 2023 12:54:40 +0000 (12:54 +0000)]
drm/amd/display: Fix a bug when searching for insert_above_mpcc
From Wesley Chalmers
77b49370a261c9c79587d4a83960d5db39ee6cfa in linux-6.1.y/6.1.54
3d028d5d60d516c536de1ddd3ebf3d55f3f8983b in mainline linux
jsg [Tue, 19 Sep 2023 12:52:45 +0000 (12:52 +0000)]
drm/amdgpu: register a dirty framebuffer callback for fbcon
From Hamza Mahfooz
cb30ff2adb10a660ded094b088aca763aaf74dea in linux-6.1.y/6.1.54
0a611560f53bfd489e33f4a718c915f1a6123d03 in mainline linux
jsg [Tue, 19 Sep 2023 12:49:35 +0000 (12:49 +0000)]
drm/amd/display: Remove wait while locked
From Gabe Teeger
b53fee19ec5e07e5553f362cad8a3e00cf6d16ab in linux-6.1.y/6.1.54
5a3ccb1400339268c5e3dc1fa044a7f6c7f59a02 in mainline linux
jsg [Tue, 19 Sep 2023 12:46:20 +0000 (12:46 +0000)]
drm/amd/display: always switch off ODM before committing more streams
From Wenjing Liu
2d7a6fcb1f232c91fe405161d2ba5731ccb97a34 in linux-6.1.y/6.1.54
49a30c3d1a2258fc93cfe6eea8e4951dabadc824 in mainline linux
jsg [Tue, 19 Sep 2023 12:42:34 +0000 (12:42 +0000)]
drm/amd/display: prevent potential division by zero errors
From Hamza Mahfooz
ff536a96687cf976d89bed08d40fcaae6bf50304 in linux-6.1.y/6.1.54
07e388aab042774f284a2ad75a70a194517cdad4 in mainline linux
jsg [Tue, 19 Sep 2023 12:39:18 +0000 (12:39 +0000)]
drm/amd/display: enable cursor degamma for DCN3+ DRM legacy gamma
From Melissa Wen
e1769b1dfcaebb7e4272528fa2f198c6549f619b in linux-6.1.y/6.1.54
57a943ebfcdb4a97fbb409640234bdb44bfa1953 in mainline linux
jsg [Tue, 19 Sep 2023 12:36:35 +0000 (12:36 +0000)]
drm/i915/gvt: Drop unused helper intel_vgpu_reset_gtt()
From Sean Christopherson
bd9bd085c6816885dedcd690de22d088975e6df2 in linux-6.1.y/6.1.54
a90c367e5af63880008e21dd199dac839e0e9e0f in mainline linux
jsg [Tue, 19 Sep 2023 12:34:56 +0000 (12:34 +0000)]
drm/i915/gvt: Put the page reference obtained by KVM's gfn_to_pfn()
From Sean Christopherson
2b7510bb92c1fc19292801778e971cbb46e2499f in linux-6.1.y/6.1.54
708e49583d7da863898b25dafe4bcd799c414278 in mainline linux
jsg [Tue, 19 Sep 2023 12:31:43 +0000 (12:31 +0000)]
drm/i915/gvt: Verify pfn is "valid" before dereferencing "struct page"
From Sean Christopherson
f5738399ed965be3ba734bd039bf96a455bb5ac0 in linux-6.1.y/6.1.54
f046923af79158361295ed4f0a588c80b9fdcc1d in mainline linux
jsg [Tue, 19 Sep 2023 12:30:02 +0000 (12:30 +0000)]
drm/i915: mark requests for GuC virtual engines to avoid use-after-free
From Andrzej Hajda
8017a27cec32eac8c8f9430b0a3055840136b856 in linux-6.1.y/6.1.54
5eefc5307c983b59344a4cb89009819f580c84fa in mainline linux
claudio [Tue, 19 Sep 2023 11:36:33 +0000 (11:36 +0000)]
Document the new 'show proc /t TID' way of showing a proc via thread id.
claudio [Tue, 19 Sep 2023 11:35:30 +0000 (11:35 +0000)]
Improve the output of ddb "show proc" command
Include missing fields -- like the sleep channel and message -- and
show both the PID and TID of the proc.
Also add '/t' as an argument that can be used to specify a proc by TID
instead of by address.
OK mpi@
claudio [Tue, 19 Sep 2023 11:31:51 +0000 (11:31 +0000)]
Add a KASSERT for p->p_wchan == NULL to setrunqueue()
There is the same check in sched_chooseproc() but that is too late
to know where the bad insertion into the runqueue was done.
OK mpi@
claudio [Tue, 19 Sep 2023 10:43:33 +0000 (10:43 +0000)]
Before coredump or in pledge_fail use SINGLE_UNWIND to stop all threads.
SINGLE_UNWIND unwinds to the kernel boundary. On the other hand
SINGLE_SUSPEND will sleep inside tsleep(9) and other sleep functions.
Since the code will exit1() very soon after it is better to already unwind.
Now one could argue that for coredumps all threads should stop asap to
get a clean dump. Using SINGLE_UNWIND the sleep will fail with ERESTART
and no copyout should happen in that case.
This is a bit of a workaround since SINGLE_SUSPEND has a small race
where single_thread_wait() returns before all threads are really stopped.
When SINGLE_EXIT is called quickly after this can blow up inside
sleep_finish.
Reported-by: syzbot+3ef066fcfaf991f2ac2c@syzkaller.appspotmail.com
OK mpi@ kettenis@
schwarze [Tue, 19 Sep 2023 09:40:35 +0000 (09:40 +0000)]
Mention a subtle difference between PEM_def_callback(3) and the example.
It's relevant not only for the example, but also because the functions
documented here use PEM_def_callback(3) by default, and that exhibits
surprising and potentially dangerous behaviour by not NUL-terminating.
OK tb@
nicm [Tue, 19 Sep 2023 08:35:44 +0000 (08:35 +0000)]
Fix a couple of mouse mode flag names.
schwarze [Tue, 19 Sep 2023 08:18:13 +0000 (08:18 +0000)]
Remove the duplicate documentation of pem_password_cb(3).
While here, also:
* Avoid the misleading term "default password callback" because none of
the functions in SSL_CTX_use_certificate(3) support overriding it.
* Do not talk about "storing", "writing", and "encryption" since the cb
passed to SSL_CTX_set_default_passwd_cb(3) is never used for any of that.
* List the functions using cb.
* Document what happens by default.
* Remove the misleading words "which must be provided by the application"
because all this is actually optional.
* Make several wordings more precise.
* Below EXAMPLES, fix argument naming to agree with pem_password_cb(3),
clarify the description of what the example does, and, as suggested by tb@,
use strlcpy(3).
OK tb@
tb [Tue, 19 Sep 2023 01:22:31 +0000 (01:22 +0000)]
More 0/NULL confusions in SSL_CTX_new()
tb [Tue, 19 Sep 2023 01:19:45 +0000 (01:19 +0000)]
Fix some NULL/0 misspellings in SSL_CTX_new()
millert [Tue, 19 Sep 2023 01:14:05 +0000 (01:14 +0000)]
Compare int value against 0, not '\0', for consistency.
millert [Mon, 18 Sep 2023 23:33:21 +0000 (23:33 +0000)]
Fix a bad cast to char * that causes incorrect results on big endian.
Now that awk stores chars as int we need to cast the Node * to int *.
deraadt [Mon, 18 Sep 2023 22:38:16 +0000 (22:38 +0000)]
aesni_ctr32_encrypt_blocks() is called indirectly from C code, so it
needs endbr64
ok kettenis tb
millert [Mon, 18 Sep 2023 19:32:19 +0000 (19:32 +0000)]
Disable utf-8 for non-multibyte locales, such as C or POSIX.
This makes it possible to get the old awk behavior (where chars are
bytes) by setting LC_CTYPE to C or POSIX. OK schwarze@
anton [Mon, 18 Sep 2023 18:33:17 +0000 (18:33 +0000)]
Favor jot while generating characters within the [1, 256) range as awk
recently became utf-8 aware.
ok millert@
schwarze [Mon, 18 Sep 2023 17:25:15 +0000 (17:25 +0000)]
remove tls_reset(3) from the NAME, SYNOPSIS, and HISTORY sections
because it is documented in the separate tls_client(3) manual page
jca [Mon, 18 Sep 2023 17:01:41 +0000 (17:01 +0000)]
Reuse pmap_pte_insert() in pmap_clear_modify()
Stricter code which further reduces the difference between the pmap of
arm64 and riscv64 and also the number of functions where member pted_pte
is manipulated.
ok drahn@ kettenis@
schwarze [Mon, 18 Sep 2023 15:26:46 +0000 (15:26 +0000)]
PEM_def_callback(3) does not truncate its argument but merely the copy,
plus a few wording improvements
jmc [Mon, 18 Sep 2023 15:20:48 +0000 (15:20 +0000)]
add --csv to usage(), and reformat it to match manual; while here,
reformat a lengthy line in awk.1;
ok millert
deraadt [Mon, 18 Sep 2023 15:16:22 +0000 (15:16 +0000)]
2 cases of c99 for-scope variable decl, when a variable already exists
in scope. but a 3rd similar situation in the same scope exists also,
which does not create a new variable, and uses the upper scope variable.
Pretty sloppy stuff.
ok millert
schwarze [Mon, 18 Sep 2023 14:49:43 +0000 (14:49 +0000)]
Rewrite RSA_get_ex_new_index(3) and CRYPTO_set_ex_data(3) from scratch.
The defects of the old pages were too numerous to list in full but included
vagueness, gaps, misleading statements, bad ordering, and duplication.
Use my Copyright since none of the text we inherited from OpenSSL remains.
Without doing a thorough review, tb@ thinks he likes the new pages
after quickly reading through both of them.
sobrado [Mon, 18 Sep 2023 14:44:21 +0000 (14:44 +0000)]
match style used in revision 1.16 of src/etc/examples/radiusd.conf
ok yasuoka@
deraadt [Mon, 18 Sep 2023 14:25:04 +0000 (14:25 +0000)]
sync to 7.4
robert [Mon, 18 Sep 2023 13:29:00 +0000 (13:29 +0000)]
The CTA-861 standards have been updated to refer to opRGB instead
of AdobeRGB. The official standard is in fact named opRGB, so
switch to that.
The two old defines referring to ADOBERGB in the public API are
put under #ifndef _KERNEL and a comment mentions that they are
deprecated.
This keeps us in sync with the linux header.
ok feinerer@, mpi@, deraadt@
deraadt [Mon, 18 Sep 2023 13:18:24 +0000 (13:18 +0000)]
crank to 7.4-beta
deraadt [Mon, 18 Sep 2023 13:16:13 +0000 (13:16 +0000)]
crank to 7.4-beta
jmatthew [Mon, 18 Sep 2023 06:47:21 +0000 (06:47 +0000)]
Add 100GB LR4 Ethernet capability and map it to IFM_100G_LR4.
This isn't listed in the public PRM but it can be found in the Linux driver.
from Olivier Croquin
cheloha [Sun, 17 Sep 2023 15:24:35 +0000 (15:24 +0000)]
clockintr.h: forward-declare "struct cpu_info" for clockintr_establish()
With input from claudio@ and deraadt@.
cheloha [Sun, 17 Sep 2023 15:05:44 +0000 (15:05 +0000)]
struct clockintr_queue: rename "cq_est" to "cq_all"
"cq_all" is a more obvious name than "cq_est". It's the list of all
established clockintrs. Duh.
cheloha [Sun, 17 Sep 2023 14:50:50 +0000 (14:50 +0000)]
clockintr: remove clockintr_init(), clockintr_flags
All the state initialization once done in clockintr_init() has been
moved to other parts of the kernel. It's a dead function. Remove it.
Likewise, the clockintr_flags variable no longer sports any meaningful
flags. Remove it. This frees up the CL_* flag namespace, which might
be useful to the clockintr frontend if we ever need to add behavior
flags to any of those functions.
millert [Sun, 17 Sep 2023 14:49:44 +0000 (14:49 +0000)]
Update to the One True Awk, 2nd edition (Sep 12, 2023).
This corresponds to the 2nd edition of "The AWK Programming Language"
and adds support for UTF-8 and comma-separated value inputs.
cheloha [Sun, 17 Sep 2023 13:02:24 +0000 (13:02 +0000)]
scheduler_start: move static timeout structs into callback functions
Move the schedcpu() and update_loadavg() timeout structs from
scheduler_start() into their respective callback functions and
statically initialize them with TIMEOUT_INITIALIZER(9).
The structs are already hidden from the global namespace and the
timeouts are already self-managing, so we may as well fully
consolidate things.
Thread: https://marc.info/?l=openbsd-tech&m=
169488184019047&w=2
"Sure." claudio@
jmatthew [Sat, 16 Sep 2023 23:25:16 +0000 (23:25 +0000)]
Skip non-MSI interrupt controllers when looking for one matching the ITS id
given in the IORT node. Using a non-MSI interrupt controller here will
crash as ic->ic_establish_msi will be NULL.
tested by phessler@
ok phessler@ patrick@
deraadt [Sat, 16 Sep 2023 19:59:32 +0000 (19:59 +0000)]
sync
robert [Sat, 16 Sep 2023 18:06:26 +0000 (18:06 +0000)]
add 7.5 syspatch key
nicm [Sat, 16 Sep 2023 16:18:29 +0000 (16:18 +0000)]
Remove next- and previous-prompt added in error. GitHub issue 3696.
naddy [Sat, 16 Sep 2023 13:28:39 +0000 (13:28 +0000)]
7.5 packages key
sthen [Sat, 16 Sep 2023 11:45:03 +0000 (11:45 +0000)]
add 7.5 firmware key
mpi [Sat, 16 Sep 2023 09:33:27 +0000 (09:33 +0000)]
Allow counters_read(9) to take an optional scratch buffer.
Using a scratch buffer makes it possible to take a consistent snapshot of
per-CPU counters without having to allocate memory.
Makes ddb(4) show uvmexp command work in OOM situations.
ok kn@, mvs@, cheloha@
espie [Sat, 16 Sep 2023 09:33:13 +0000 (09:33 +0000)]
forgot to kill that
op [Sat, 16 Sep 2023 08:01:31 +0000 (08:01 +0000)]
remove empty line in PORTHOME description