Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/vax/vax Increase the interrupt stack, to avoid prob...



details:   https://anonhg.NetBSD.org/src/rev/532d990a0b83
branches:  trunk
changeset: 534409:532d990a0b83
user:      ragge <ragge%NetBSD.org@localhost>
date:      Thu Jul 25 10:44:25 2002 +0000

description:
Increase the interrupt stack, to avoid problems reported on port-vax by
Olaf Seibert. (IPSec takes much stack space).

diffstat:

 sys/arch/vax/vax/pmap.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ac4a70bd900b -r 532d990a0b83 sys/arch/vax/vax/pmap.c
--- a/sys/arch/vax/vax/pmap.c   Thu Jul 25 09:38:31 2002 +0000
+++ b/sys/arch/vax/vax/pmap.c   Thu Jul 25 10:44:25 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pmap.c,v 1.115 2002/06/09 21:57:08 ragge Exp $    */
+/*     $NetBSD: pmap.c,v 1.116 2002/07/25 10:44:25 ragge Exp $    */
 /*
  * Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden.
  * All rights reserved.
@@ -67,7 +67,7 @@
 #include "qd.h"
 void   qdearly(void);
 
-#define ISTACK_SIZE NBPG
+#define ISTACK_SIZE (NBPG*2)
 vaddr_t istack;
 /* 
  * This code uses bitfield operators for most page table entries.  



Home | Main Index | Thread Index | Old Index