Eliminate a redundant alignment directive on the page locks array.

This commit is contained in:
Alan Cox 2011-01-09 04:34:02 +00:00
parent f9266eb1f9
commit 27772ddf45
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217177

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;