svn commit: r345126 - in stable/11/sys: amd64/amd64 i386/i386
Andrey V. Elsukov
ae at FreeBSD.org
Thu Mar 14 08:27:03 UTC 2019
Author: ae
Date: Thu Mar 14 08:27:01 2019
New Revision: 345126
URL: https://svnweb.freebsd.org/changeset/base/345126
Log:
MFC r344873:
Fix typo.
Modified:
stable/11/sys/amd64/amd64/vm_machdep.c
stable/11/sys/i386/i386/vm_machdep.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/amd64/amd64/vm_machdep.c
==============================================================================
--- stable/11/sys/amd64/amd64/vm_machdep.c Thu Mar 14 08:25:28 2019 (r345125)
+++ stable/11/sys/amd64/amd64/vm_machdep.c Thu Mar 14 08:27:01 2019 (r345126)
@@ -85,7 +85,7 @@ _Static_assert(OFFSETOF_CURTHREAD == offsetof(struct p
_Static_assert(OFFSETOF_CURPCB == offsetof(struct pcpu, pc_curpcb),
"OFFSETOF_CURPCB does not correspond with offset of pc_curpcb.");
_Static_assert(OFFSETOF_MONITORBUF == offsetof(struct pcpu, pc_monitorbuf),
- "OFFSETOF_MONINORBUF does not correspond with offset of pc_monitorbuf.");
+ "OFFSETOF_MONITORBUF does not correspond with offset of pc_monitorbuf.");
struct savefpu *
get_pcb_user_save_td(struct thread *td)
Modified: stable/11/sys/i386/i386/vm_machdep.c
==============================================================================
--- stable/11/sys/i386/i386/vm_machdep.c Thu Mar 14 08:25:28 2019 (r345125)
+++ stable/11/sys/i386/i386/vm_machdep.c Thu Mar 14 08:27:01 2019 (r345126)
@@ -98,7 +98,7 @@ _Static_assert(OFFSETOF_CURTHREAD == offsetof(struct p
_Static_assert(OFFSETOF_CURPCB == offsetof(struct pcpu, pc_curpcb),
"OFFSETOF_CURPCB does not correspond with offset of pc_curpcb.");
_Static_assert(__OFFSETOF_MONITORBUF == offsetof(struct pcpu, pc_monitorbuf),
- "__OFFSETOF_MONINORBUF does not correspond with offset of pc_monitorbuf.");
+ "__OFFSETOF_MONITORBUF does not correspond with offset of pc_monitorbuf.");
union savefpu *
get_pcb_user_save_td(struct thread *td)
More information about the svn-src-stable
mailing list