diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-22 20:59:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2009-10-22 20:59:25 +0000 |
commit | 00285ca9c92e870c613623812c3b229a9d3ae148 (patch) | |
tree | 4883d3b622fa3a6634f1120e2b78f5319f99878f /sys/arch/mips64/include/cpu.h | |
parent | 948414d0135e4c47beaa234fba2e77dc62b04dd9 (diff) |
With the splx() changes, it is no longer necessary to remember which interrupt
sources were masked and saved in ci_ipending, as splx() will unmask what needs
to be unmasked anyway. ci_ipending only now needs to store pending soft
interrupts, so rename it to ci_softpending.
Diffstat (limited to 'sys/arch/mips64/include/cpu.h')
-rw-r--r-- | sys/arch/mips64/include/cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/cpu.h b/sys/arch/mips64/include/cpu.h index 119b428aa1d..ad44f2270a2 100644 --- a/sys/arch/mips64/include/cpu.h +++ b/sys/arch/mips64/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.39 2009/10/22 20:05:26 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.40 2009/10/22 20:59:22 miod Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -375,7 +375,7 @@ struct cpu_info { cpuid_t ci_cpuid; /* our CPU ID */ uint32_t ci_randseed; /* per cpu random seed */ uint32_t ci_cpl; - uint32_t ci_ipending; + uint32_t ci_softpending; /* pending soft interrupts */ #ifdef MULTIPROCESSOR u_long ci_flags; /* flags; see below */ #endif |