pmap_query_bit() should return false if the bit is not set.

Reviewed by: grehan
This commit is contained in:
Andrew Gallatin 2003-12-09 14:47:33 +00:00
parent eaa53cc8fc
commit 4f7daed045
3 changed files with 3 additions and 3 deletions

View File

@ -2217,7 +2217,7 @@ pmap_query_bit(vm_page_t m, int ptebit)
}
}
return (TRUE);
return (FALSE);
}
static u_int

View File

@ -2217,7 +2217,7 @@ pmap_query_bit(vm_page_t m, int ptebit)
}
}
return (TRUE);
return (FALSE);
}
static u_int

View File

@ -2217,7 +2217,7 @@ pmap_query_bit(vm_page_t m, int ptebit)
}
}
return (TRUE);
return (FALSE);
}
static u_int