Make pc_freemask an array of uint32_t, rather than uint64_t. (I believe

that the use of the latter is simply an oversight in porting the new pv
entry code from amd64.)
This commit is contained in:
alc 2006-07-15 07:24:30 +00:00
parent 3944e27124
commit 8f169c00cb

View File

@ -1600,7 +1600,7 @@ pv_to_chunk(pv_entry_t pv)
#define PC_FREE0_9 0xfffffffful /* Free values for index 0 through 9 */
#define PC_FREE10 0x0000fffful /* Free values for index 10 */
static uint64_t pc_freemask[11] = {
static uint32_t pc_freemask[11] = {
PC_FREE0_9, PC_FREE0_9, PC_FREE0_9,
PC_FREE0_9, PC_FREE0_9, PC_FREE0_9,
PC_FREE0_9, PC_FREE0_9, PC_FREE0_9,