From owner-cvs-all Mon Apr 19 11:47:51 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 2525A14F47; Mon, 19 Apr 1999 11:47:49 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: (from alc@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id LAA06552; Mon, 19 Apr 1999 11:45:24 -0700 (PDT) (envelope-from alc@FreeBSD.org) Message-Id: <199904191845.LAA06552@freefall.freebsd.org> From: Alan Cox Date: Mon, 19 Apr 1999 11:45:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk alc 1999/04/19 11:45:23 PDT Modified files: sys/i386/i386 pmap.c Log: _pmap_unwire_pte_hold and pmap_remove_page: Use pmap_TLB_invalidate instead of invltlb_1pg to eliminate unnecessary IPIs. pmap_remove, pmap_protect and pmap_remove_pages: Use pmap_TLB_invalidate_all instead of invltlb to eliminate unnecessary IPIs. pmap_copy: Use cpu_invltlb instead of invltlb when updating APTDpde. pmap_changebit: Rather than deleting the unused "set bit" option (which may be useful later), make pmap_changebit an inline that is used by the new pmap_clearbit procedure. Collectively, the first three changes reduce the number of TLB shootdown IPIs by 1/3 for a kernel compile. Revision Changes Path 1.231 +31 -13 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message