Module Name: src
Committed By: macallan
Date: Fri May 11 22:39:59 UTC 2018
Modified Files:
src/sys/arch/powerpc/pic: picvar.h
Log Message:
use 128 as IPI_VECTOR to avoid overlap wth hardware interrupts
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/powerpc/pic/picvar.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/pic/picvar.h
diff -u src/sys/arch/powerpc/pic/picvar.h:1.9 src/sys/arch/powerpc/pic/picvar.h:1.10
--- src/sys/arch/powerpc/pic/picvar.h:1.9 Sat Jun 18 06:41:44 2011
+++ src/sys/arch/powerpc/pic/picvar.h Fri May 11 22:39:59 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: picvar.h,v 1.9 2011/06/18 06:41:44 matt Exp $ */
+/* $NetBSD: picvar.h,v 1.10 2018/05/11 22:39:59 macallan Exp $ */
/*-
* Copyright (c) 2007 Michael Lorenz
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: picvar.h,v 1.9 2011/06/18 06:41:44 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: picvar.h,v 1.10 2018/05/11 22:39:59 macallan Exp $");
#ifndef PIC_VAR_H
#define PIC_VAR_H
@@ -132,6 +132,6 @@ void opic_ack_irq(struct pic_ops *pic, i
/* IPI handler */
int cpuintr(void *);
/* XXX - may need to be PIC specific */
-#define IPI_VECTOR 64
+#define IPI_VECTOR 128
#endif /* PIC_VAR_H */