Pull up following revision(s) (requested by skrll in ticket #452):
sys/arch/riscv/include/bus_funcs.h: revision 1.6
riscv: Fix bus_space_{alloc,free,mmap} macros
The macros bus_space_alloc, bus_space_free, and bus_space_mmap were
incorrectly passing the bus space cookie as their first parameter.
This patch updates these macros to pass the entire bus space tag pointer
instead as per other macros.
Pull up following revision(s) (requested by skrll in ticket #451):
sys/arch/riscv/include/asm.h: revision 1.14
risc-v: fix assemble opcode helper macros
- remove *_SUBI variants as these instructions don't exist and the
assembler doesn't help. *_ADDI should be used.
- use 'iw' instead of 'wi' to match real instructions.
Pull up following revision(s) (requested by andvar in ticket #450):
sys/arch/x86/isa/clock.c: revision 1.43
Check if RTC is disabled only in virtualized environments.
On a real PC, bits 0-5 may be used for the date alarm function,
causing RTC failure to attach and
a "WARNING: no TOD clock present" warning in the boot log.
Verified no regression on QEMU/MICROVM by imil@
PR kern/60672
Pull up following revision(s) (requested by thorpej in ticket #449):
sys/arch/m68k/m68k/vm_machdep.c: revision 1.48
cpu_lwp_fork(): If a stack is specified, make sure it's aligned.
Pull up following revision(s) (requested by thorpej in ticket #448):
sys/arch/m68k/m68k/sunos_machdep.c: revision 1.41
sys/arch/m68k/m68k/sig_machdep.c: revision 1.53
sys/arch/m68k/include/frame.h: revision 1.41
sys/arch/m68k/m68k/compat_16_machdep.c: revision 1.20
Make sure the stack is aligned when delivering signals.
Fixes the t_signal_and_sp:misaligned_sp_and_signal and
t_signal_and_sp:signalsp_sigaltstack test cases on m68k.
Pull up following revision(s) (requested by thorpej in ticket #447):
lib/libc/arch/m68k/gen/_lwp.c: revision 1.11
_lwp_makecontext(): ensure the stack is aligned. Fixes the
t_signal_and_sp::threadsp test case on m68k.
Pull up the following, requested by bsiegert in ticket #446:
external/gpl2/gmake/dist/ar.c up to 1.2
external/gpl2/gmake/dist/arscan.c up to 1.4
external/gpl2/gmake/dist/configure up to 1.4
external/gpl2/gmake/dist/getopt.c up to 1.2
external/gpl2/gmake/dist/getopt.h up to 1.2
external/gpl2/gmake/dist/getopt1.c up to 1.2
external/gpl2/gmake/dist/job.c up to 1.4
external/gpl2/gmake/dist/main.c up to 1.3
external/gpl2/gmake/dist/make.h up to 1.4
external/gpl2/gmake/dist/read.c up to 1.4
external/gpl2/gmake/dist/glob/fnmatch.c up to 1.2
external/gpl2/groff/dist/src/libs/libgroff/getopt.c up to 1.2
external/gpl2/groff/tmac/mdoc.local up to 1.12
external/gpl2/texinfo/dist/intl/dcigettext.c up to 1.2
external/gpl2/texinfo/dist/intl/gettextP.h up to 1.2
external/gpl2/texinfo/dist/lib/getopt.c up to 1.3
external/gpl2/texinfo/dist/lib/getopt_.h up to 1.2
[26 lines not shown]
Align xfin (PIO input) routine with sys/dev/ic/wd33c93.c.
Prevents infinite loops if device answer is shorter than
requested as seen with a scsi2sata bridge.
Fix a very brief race which could cause page states to be corrupted.
Observed under heavy physio load from an 8-way parallel dump|restore
workload used in filesystem testing - manifested as intents being
scribbled over while the interlock was momentarily not held
in uvmpdpol_selectvictim. I've attempted to apply the same fix to
clockpro, which looks like it needs it too, but clockpro was on fire
when I got there and I didn't put it out (still does not compile).
riscv: Fix bus_space_{alloc,free,mmap} macros
The macros bus_space_alloc, bus_space_free, and bus_space_mmap were
incorrectly passing the bus space cookie as their first parameter.
This patch updates these macros to pass the entire bus space tag pointer
instead as per other macros.
risc-v: fix assemble opcode helper macros
- remove *_SUBI variants as these instructions don't exist and the
assembler doesn't help. *_ADDI should be used.
- use 'iw' instead of 'wi' to match real instructions.