Date: Sat, 29 Mar 2003 10:22:30 -0800 (PST) From: Andrew Gallatin <gallatin@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include param.h pmap.h Message-ID: <200303291822.h2TIMUiq090718@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
gallatin 2003/03/29 10:22:30 PST FreeBSD src repository Modified files: sys/alpha/include param.h pmap.h Log: Fix the osf1 abi module on SMP systems by making the size of a struct pmap be the same on both SMP and UP kernels. It turns out that the size of a struct pmap is much larger on alpha SMP systems due to the number of pm_asn's being dependant on MAX_CPU. Since modules are supposed to be SMP agnostic, this has the affect of moving around the "interesting bits" of the vmspace (daddr, dsize) that the osf1 module wants to frob. So the module ends up scribbling in a pmap struct, and the user either sees a panic, or an application failure. While here, I've also shrunk MAXCPU to 8 now that it affects the size of pmap structs on UP systesm. This should be plenty, as I'm unware of any hardware we currently run in which supports more than 8 CPUs. Revision Changes Path 1.30 +2 -1 src/sys/alpha/include/param.h 1.22 +1 -1 src/sys/alpha/include/pmap.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200303291822.h2TIMUiq090718>