Remove redundand definitions. The chunk was missed from r227102.

MFC after:	2 weeks
This commit is contained in:
Konstantin Belousov 2011-11-05 09:03:18 +00:00
parent 561cc9fcb5
commit 7845becfe8

View File

@ -324,16 +324,6 @@ extern struct vpglocks vm_page_queue_lock;
#define vm_page_lock_queues() mtx_lock(&vm_page_queue_mtx)
#define vm_page_unlock_queues() mtx_unlock(&vm_page_queue_mtx)
#if PAGE_SIZE == 4096
#define VM_PAGE_BITS_ALL 0xffu
#elif PAGE_SIZE == 8192
#define VM_PAGE_BITS_ALL 0xffffu
#elif PAGE_SIZE == 16384
#define VM_PAGE_BITS_ALL 0xffffffffu
#elif PAGE_SIZE == 32768
#define VM_PAGE_BITS_ALL 0xfffffffffffffffflu
#endif
/* page allocation classes: */
#define VM_ALLOC_NORMAL 0
#define VM_ALLOC_INTERRUPT 1