fix KMALLOC_MIN_SIZE macro

This commit is contained in:
Balazs Gerofi
2016-09-21 06:23:54 -04:00
parent 8f4f68b877
commit 0d8d915d82

View File

@ -1228,7 +1228,7 @@ void kmalloc_consolidate_free_list(void)
}
#define KMALLOC_MIN_SHIFT (5)
#define KMALLOC_MIN_SIZE (1 << KMALLOC_TRACK_HASH_SHIFT)
#define KMALLOC_MIN_SIZE (1 << KMALLOC_MIN_SHIFT)
#define KMALLOC_MIN_MASK (KMALLOC_MIN_SIZE - 1)
/* Actual low-level allocation routines */