From owner-freebsd-commit Fri Sep 15 01:31:43 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02538 for freebsd-commit-outgoing; Fri, 15 Sep 1995 01:31:43 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02520 for cvs-all-outgoing; Fri, 15 Sep 1995 01:31:38 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02510 for cvs-sys-outgoing; Fri, 15 Sep 1995 01:31:35 -0700 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id BAA02496 ; Fri, 15 Sep 1995 01:31:21 -0700 Date: Fri, 15 Sep 1995 01:31:21 -0700 From: David Greenman Message-Id: <199509150831.BAA02496@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/i386/i386 machdep.c pmap.c Sender: owner-commit@FreeBSD.org Precedence: bulk davidg 95/09/15 01:31:20 Modified: sys/i386/i386 machdep.c pmap.c Log: 1) Killed 'BSDVM_COMPAT'. 2) Killed i386pagesperpage as it is not used by anything. 3) Fixed benign miscalculations in pmap_bootstrap(). 4) Moved allocation of ISA DMA memory to machdep.c. 5) Removed bogus vm_map_find()'s in pmap_init() - the entire range was already allocated kmem_init(). 6) Added some comments. virual_avail is still miscalculated NKPT*NBPG too large, but in order to fix this properly requires moving the variable initialization into locore.s. Some other day.