From owner-cvs-src@FreeBSD.ORG Thu Jul 15 03:20:00 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 912AF16A4CE; Thu, 15 Jul 2004 03:20:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7209A43D1D; Thu, 15 Jul 2004 03:20:00 +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 i6F3K0et035739; Thu, 15 Jul 2004 03:20:00 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i6F3K05C035738; Thu, 15 Jul 2004 03:20:00 GMT (envelope-from alc) Message-Id: <200407150320.i6F3K05C035738@repoman.freebsd.org> From: Alan Cox Date: Thu, 15 Jul 2004 03:20:00 +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/ia64/ia64 pmap.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jul 2004 03:20:00 -0000 alc 2004-07-15 03:20:00 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c Log: A loop in pmap_remove() should use TAILQ_FOREACH_SAFE(), not TAILQ_FOREACH(), because the loop deletes elements from the list. Reviewed by: marcel@ Revision Changes Path 1.139 +2 -2 src/sys/ia64/ia64/pmap.c