From owner-cvs-all@FreeBSD.ORG Sat Oct 16 22:32:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E508016A4CE; Sat, 16 Oct 2004 22:32:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B0943D1F; Sat, 16 Oct 2004 22:32:50 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i9GMWolh039340; Sat, 16 Oct 2004 22:32:50 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i9GMWowZ039339; Sat, 16 Oct 2004 22:32:50 GMT (envelope-from alc) Message-Id: <200410162232.i9GMWowZ039339@repoman.freebsd.org> From: Alan Cox Date: Sat, 16 Oct 2004 22:32:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Oct 2004 22:32:51 -0000 alc 2004-10-16 22:32:50 UTC FreeBSD src repository Modified files: sys/i386/i386 vm_machdep.c Log: When sf_buf_alloc() replaces a virtual-to-physical mapping, it needn't invalidate the TLB(s) if the old mapping wasn't used by the CPU. With network interfaces that implement checksum off-loading, the old mapping is almost never used by the CPU, only by the device driver for setting up the DMA operation. Reviewed by: tegge@ Revision Changes Path 1.242 +15 -1 src/sys/i386/i386/vm_machdep.c