diff --git a/sys/alpha/alpha/genassym.c b/sys/alpha/alpha/genassym.c index bd520f1e3c0..1572b592b9d 100644 --- a/sys/alpha/alpha/genassym.c +++ b/sys/alpha/alpha/genassym.c @@ -48,6 +48,7 @@ #include #include #include +#include #include #include #include @@ -55,7 +56,6 @@ #include #include #include -#include #include #include #include @@ -79,7 +79,7 @@ ASSYM(GD_ASTPENDING, offsetof(struct globaldata, gd_astpending)); ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock)); ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse)); -ASSYM(MTX_SAVEIPL, offsetof(struct mtx, mtx_saveipl)); +ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr)); ASSYM(MTX_UNOWNED, MTX_UNOWNED); ASSYM(P_ADDR, offsetof(struct proc, p_addr)); diff --git a/sys/amd64/amd64/genassym.c b/sys/amd64/amd64/genassym.c index 431a081733f..0c1840425f4 100644 --- a/sys/amd64/amd64/genassym.c +++ b/sys/amd64/amd64/genassym.c @@ -49,6 +49,7 @@ #include #include #include +#include #include #include /* XXX */ @@ -76,7 +77,6 @@ #include #include #include -#include ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace)); ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap)); @@ -229,6 +229,6 @@ ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame)); ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock)); ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse)); -ASSYM(MTX_SAVEFL, offsetof(struct mtx, mtx_savefl)); +ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr)); ASSYM(MTX_UNOWNED, MTX_UNOWNED); diff --git a/sys/i386/i386/genassym.c b/sys/i386/i386/genassym.c index 431a081733f..0c1840425f4 100644 --- a/sys/i386/i386/genassym.c +++ b/sys/i386/i386/genassym.c @@ -49,6 +49,7 @@ #include #include #include +#include #include #include /* XXX */ @@ -76,7 +77,6 @@ #include #include #include -#include ASSYM(P_VMSPACE, offsetof(struct proc, p_vmspace)); ASSYM(VM_PMAP, offsetof(struct vmspace, vm_pmap)); @@ -229,6 +229,6 @@ ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame)); ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock)); ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse)); -ASSYM(MTX_SAVEFL, offsetof(struct mtx, mtx_savefl)); +ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr)); ASSYM(MTX_UNOWNED, MTX_UNOWNED); diff --git a/sys/ia64/ia64/genassym.c b/sys/ia64/ia64/genassym.c index f68ab7b6c3f..c81c5bb51f8 100644 --- a/sys/ia64/ia64/genassym.c +++ b/sys/ia64/ia64/genassym.c @@ -76,7 +76,7 @@ ASSYM(GD_ASTPENDING, offsetof(struct globaldata, gd_astpending)); ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock)); ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse)); -ASSYM(MTX_SAVEPSR, offsetof(struct mtx, mtx_savepsr)); +ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr)); ASSYM(MTX_UNOWNED, MTX_UNOWNED); ASSYM(P_ADDR, offsetof(struct proc, p_addr)); diff --git a/sys/powerpc/powerpc/genassym.c b/sys/powerpc/powerpc/genassym.c index bd520f1e3c0..1572b592b9d 100644 --- a/sys/powerpc/powerpc/genassym.c +++ b/sys/powerpc/powerpc/genassym.c @@ -48,6 +48,7 @@ #include #include #include +#include #include #include #include @@ -55,7 +56,6 @@ #include #include #include -#include #include #include #include @@ -79,7 +79,7 @@ ASSYM(GD_ASTPENDING, offsetof(struct globaldata, gd_astpending)); ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock)); ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse)); -ASSYM(MTX_SAVEIPL, offsetof(struct mtx, mtx_saveipl)); +ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr)); ASSYM(MTX_UNOWNED, MTX_UNOWNED); ASSYM(P_ADDR, offsetof(struct proc, p_addr));