Change an instance of md_savecrit to md_saved_msr that I missed.

This commit is contained in:
John Baldwin 2005-04-08 14:26:55 +00:00
parent 4f20185860
commit 4d9ae2662a
2 changed files with 2 additions and 2 deletions

View File

@ -742,7 +742,7 @@ cpu_idle(void)
#ifdef INVARIANTS
if ((mfmsr() & PSL_EE) != PSL_EE) {
struct thread *td = curthread;
printf("td crit %x\n", td->td_md.md_savecrit);
printf("td msr %x\n", td->td_md.md_saved_msr);
panic("ints disabled in idleproc!");
}
#endif

View File

@ -742,7 +742,7 @@ cpu_idle(void)
#ifdef INVARIANTS
if ((mfmsr() & PSL_EE) != PSL_EE) {
struct thread *td = curthread;
printf("td crit %x\n", td->td_md.md_savecrit);
printf("td msr %x\n", td->td_md.md_saved_msr);
panic("ints disabled in idleproc!");
}
#endif