Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/pic use 128 as IPI_VECTOR to avoid overlap ...



details:   https://anonhg.NetBSD.org/src/rev/b9270713770b
branches:  trunk
changeset: 322682:b9270713770b
user:      macallan <macallan%NetBSD.org@localhost>
date:      Fri May 11 22:39:59 2018 +0000

description:
use 128 as IPI_VECTOR to avoid overlap wth hardware interrupts

diffstat:

 sys/arch/powerpc/pic/picvar.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r db613e107f58 -r b9270713770b sys/arch/powerpc/pic/picvar.h
--- a/sys/arch/powerpc/pic/picvar.h     Fri May 11 22:23:33 2018 +0000
+++ b/sys/arch/powerpc/pic/picvar.h     Fri May 11 22:39:59 2018 +0000
@@ -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 @@
 /* IPI handler */
 int cpuintr(void *);
 /* XXX - may need to be PIC specific */
-#define IPI_VECTOR 64
+#define IPI_VECTOR 128
 
 #endif /* PIC_VAR_H */



Home | Main Index | Thread Index | Old Index