1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Fix build: remove (now) unnecessary PG_BUSY check, it's handled by vm object locking.

This commit is contained in:
Xin LI 2006-10-22 16:33:43 +00:00
parent 01139e4145
commit e3af7c042c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=163608

View File

@ -307,7 +307,7 @@ get_pv_entry(pmap_t locked_pmap)
retry:
sched_pin();
TAILQ_FOREACH(m, &vpq->pl, pageq) {
if (m->hold_count || m->busy || (m->flags & PG_BUSY))
if (m->hold_count || m->busy)
continue;
TAILQ_FOREACH_SAFE(pv, &m->md.pv_list, pv_list, next_pv) {
va = pv->pv_va;