loader.efi.8/efibootmgr.8: Don't use contradicting term 'EFI BIOS'
Both (U)EFI and BIOS are completely different things, be precise and don't use
them together.
Reviewed by: imp
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D56329
(cherry picked from commit 4f684e929de1275b1099b17b2a2cff0d3f4af223)
[LifetimeSafety] Detect use-after-scope through fields in member calls (#191731)
Add `UseFact`s for field origins when calling instance methods.
Fixes #182945
---------
Co-authored-by: Utkarsh Saxena <usx at google.com>
[RISCV] Add Zvzip intrinsics (#186342)
In the RVV Clang builtins generator, a new prototype descriptor
`d` was added to represent vectors with `2 x LMUL`.
The `.ll` tests were generated by LLM and I have reviewed them.
And the .c tests were generated by
https://github.com/riscv-non-isa/riscv-rvv-intrinsic-doc/pull/431.
[mlirbc] Add AffineMap serialization support
Add binary bytecode encoding for AffineMapAttr, replacing the textual fallback.
AffineMap is encoded as numDims, numSymbols, numResults, followed by the result
expressions. Where each expression, AffineExpr, is encoded as a recursive tree
with a VarInt kind tag followed by kind-specific data.
kernel - Fix console access by non-root
* Fix console access via /dev/tty or /dev/ttyv* via a user login,
when logged in as that user.
The priv check was only allowing root access and needed a flag to
also allow matching users access.
* Note that console access from a restricted root "root" user such
as from a jail is not allowed (intentionally), because console ioctls
can be dangerous.
Reported-by: aly, peeterm