Module Name: src Committed By: cherry Date: Sun Nov 18 23:50:48 UTC 2018
Modified Files: src/sys/arch/amd64/include: cpu.h src/sys/arch/i386/include: cpu.h src/sys/arch/x86/include: cpu.h src/sys/arch/xen/x86: hypervisor_machdep.c src/sys/arch/xen/xen: clock.c Log Message: On Xen, copy just the bits we need from the trapframe for hardclock(9) and statclock(9). Current, the macros that use the trapframe are: CLKF_USERMODE() CLKF_PC() CLKF_INTR() Of these, CLKF_INTR() already ignores the frame and uses the ci_idepth variable to do its job. Convert the two remaining ones to do this, but only for XEN. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/sys/arch/amd64/include/cpu.h cvs rdiff -u -r1.179 -r1.180 src/sys/arch/i386/include/cpu.h cvs rdiff -u -r1.99 -r1.100 src/sys/arch/x86/include/cpu.h cvs rdiff -u -r1.31 -r1.32 src/sys/arch/xen/x86/hypervisor_machdep.c cvs rdiff -u -r1.73 -r1.74 src/sys/arch/xen/xen/clock.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.