Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/xen/x86 Remove spurious reference to XEN_IPI_KICK -...
details: https://anonhg.NetBSD.org/src/rev/34c22f8e1404
branches: trunk
changeset: 971327:34c22f8e1404
user: ad <ad%NetBSD.org@localhost>
date: Tue Apr 21 18:24:05 2020 +0000
description:
Remove spurious reference to XEN_IPI_KICK - it represents the absence of
a specific IPI type.
diffstat:
sys/arch/xen/x86/xen_ipi.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (31 lines):
diff -r cfc7dcb9945c -r 34c22f8e1404 sys/arch/xen/x86/xen_ipi.c
--- a/sys/arch/xen/x86/xen_ipi.c Tue Apr 21 18:22:29 2020 +0000
+++ b/sys/arch/xen/x86/xen_ipi.c Tue Apr 21 18:24:05 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: xen_ipi.c,v 1.36 2020/04/13 22:54:12 bouyer Exp $ */
+/* $NetBSD: xen_ipi.c,v 1.37 2020/04/21 18:24:05 ad Exp $ */
/*-
* Copyright (c) 2011, 2019 The NetBSD Foundation, Inc.
@@ -33,10 +33,10 @@
/*
* Based on: x86/ipi.c
- * __KERNEL_RCSID(0, "$NetBSD: xen_ipi.c,v 1.36 2020/04/13 22:54:12 bouyer Exp $");
+ * __KERNEL_RCSID(0, "$NetBSD: xen_ipi.c,v 1.37 2020/04/21 18:24:05 ad Exp $");
*/
-__KERNEL_RCSID(0, "$NetBSD: xen_ipi.c,v 1.36 2020/04/13 22:54:12 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xen_ipi.c,v 1.37 2020/04/21 18:24:05 ad Exp $");
#include "opt_ddb.h"
@@ -156,7 +156,7 @@
{
uint32_t masks = XEN_IPI_GENERIC | XEN_IPI_HVCB | XEN_IPI_XCALL |
XEN_IPI_DDB | XEN_IPI_SYNCH_FPU |
- XEN_IPI_HALT | XEN_IPI_KICK | XEN_IPI_AST;
+ XEN_IPI_HALT | XEN_IPI_AST;
if (ipimask & ~masks) {
return false;
Home |
Main Index |
Thread Index |
Old Index