Eliminate a redundant alignment directive on the page locks array.

This commit is contained in:
alc 2011-01-09 04:34:02 +00:00
parent 9a7c4f93a9
commit 2ff68e8630

View File

@ -141,7 +141,7 @@ struct vpgqueues vm_page_queues[PQ_COUNT];
struct vpglocks vm_page_queue_lock;
struct vpglocks vm_page_queue_free_lock;
struct vpglocks pa_lock[PA_LOCK_COUNT] __aligned(CACHE_LINE_SIZE);
struct vpglocks pa_lock[PA_LOCK_COUNT];
vm_page_t vm_page_array = 0;
int vm_page_array_size = 0;