From 00285ca9c92e870c613623812c3b229a9d3ae148 Mon Sep 17 00:00:00 2001 From: Miod Vallat Date: Thu, 22 Oct 2009 20:59:25 +0000 Subject: 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. --- sys/arch/mips64/include/cpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/arch/mips64/include/cpu.h') 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 -- cgit v1.2.3