15.1/relnotes: Adjust EC2 entries
Remove an item about ec2-small and cloud-init which is included in
the following entry.
Add an item about ec2-small having firstboot_pkgs turned off by
default; this change speeds up the boot process by 6 seconds by not
installing zero packages.
Define CARD64 as unsigned long long on OpenBSD LP64 to match uint64_t.
This fixes a number of errors with llvm 22 where X code mixes
CARD64 and uint64_t. ok tb@
netlink: Check for NULL return from npt_alloc()
Reviewed by: glebius, pouria
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D57171
Merge tag 'nios2_updates_for_v7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux
Pull nios2 fixes from Dinh Nguyen:
- Implement _THIS_IP_ for inline asm
- Add Simon Schuster as a maintainer and mark the NIOS2 as Supported
* tag 'nios2_updates_for_v7.2' of git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux:
nios2: Implement _THIS_IP_ using inline asm
MAINTAINERS: arch/nios2: Add Simon Schuster as co-maintainer
Merge tag 'loongarch-fixes-7.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
Pull LoongArch fixes from Huacai Chen:
"Rework KASLR to avoid initrd overlap, remove some unused code to avoid
a build warning, fix some bugs in kprobes and KVM"
* tag 'loongarch-fixes-7.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson:
LoongArch: KVM: Move some variable declarations to paravirt.h
LoongArch: kprobes: Fix handling of fatal unrecoverable recursions
LoongArch: kprobes: Use larch_insn_text_copy() to patch instructions
LoongArch: Remove unused code to avoid build warning
LoongArch: Avoid initrd overlap during kernel relocation
LoongArch: Skip relocation-time KASLR if already applied
efi/loongarch: Randomize kernel preferred address for KASLR
libpkg: add some verbosity under -d for verification
kiwi@ noted that it's currently not really possible to confirm that
we're actually verifying signatures successfully: we report some
messages that we're loading signature information and we report on
error, but it's quiet if we succeed.
Drop in a few more debug lines that confirm we did actually verify
signatures/fingerprints.
libpkg: ecc: don't allow too-large of signature components
We added +1 previously to allow for the leading 0 in case the high bit
was set, but it wouldn't be well-formed if that extra byte was *not*
a 0. We don't actually need to check if it's too large yet, just be
sure that we have enough to clip off the lead byte and then confirm
the size.