Make the vm_page_array_size long. Remove redundand zero initialization
for vm_page_array_size and nearby variablees. Sponsored by: The FreeBSD Foundation Reviewed by: alc MFC after: 1 month
This commit is contained in:
parent
3a772ce0a6
commit
84b22557f6
@ -121,10 +121,10 @@ struct vpglocks vm_page_queue_free_lock;
|
||||
|
||||
struct vpglocks pa_lock[PA_LOCK_COUNT];
|
||||
|
||||
vm_page_t vm_page_array = 0;
|
||||
int vm_page_array_size = 0;
|
||||
long first_page = 0;
|
||||
int vm_page_zero_count = 0;
|
||||
vm_page_t vm_page_array;
|
||||
long vm_page_array_size;
|
||||
long first_page;
|
||||
int vm_page_zero_count;
|
||||
|
||||
static int boot_pages = UMA_BOOT_PAGES;
|
||||
TUNABLE_INT("vm.boot_pages", &boot_pages);
|
||||
|
Loading…
Reference in New Issue
Block a user