From owner-freebsd-commit Fri Dec 22 10:17:52 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA10673 for freebsd-commit-outgoing; Fri, 22 Dec 1995 10:17:52 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA10661 for cvs-all-outgoing; Fri, 22 Dec 1995 10:17:48 -0800 (PST) Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA10644 for cvs-sys-outgoing; Fri, 22 Dec 1995 10:17:45 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id KAA10630 Fri, 22 Dec 1995 10:17:42 -0800 (PST) Date: Fri, 22 Dec 1995 10:17:42 -0800 (PST) From: Bruce Evans Message-Id: <199512221817.KAA10630@freefall.freebsd.org> To: CVS-committers, cvs-sys Subject: cvs commit: src/sys/i386/i386 machdep.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk bde 95/12/22 10:17:40 Modified: sys/i386/i386 machdep.c Log: Increased the double fault stack size from 512 to PAGE_SIZE. This is wasteful, but better than clobbering the variables below the stack. About 300 bytes of variables were clobbered when I examined double faults using ddb. Perhaps a page that is known not to be accessed by the double fault handler could be used. Such pages are not easy to find, since the double fault handler calls panic() which calls sync() and possibly dumpsys(). Revision Changes Path 1.162 +2 -2 src/sys/i386/i386/machdep.c