Date: Wed, 27 Feb 2002 15:02:04 -0800 (PST) From: Mike Silbersack <silby@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 pmap.c Message-ID: <200202272302.g1RN24L12311@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
silby 2002/02/27 15:02:04 PST Modified files: (Branch: RELENG_4) sys/i386/i386 pmap.c Log: MFC rev 1.301: Replace a bunch of: for (pv = TAILQ_FIRST(&m->md.pv_list); pv; pv = TAILQ_NEXT(pv, pv_list)) { with: TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) { Revision Changes Path 1.250.2.16 +6 -20 src/sys/i386/i386/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200202272302.g1RN24L12311>