1. Linux-Kernel Archive: [SLUB 3/3] Configurable slub_max_order
rem = slab_size % size; @@ -1637,6 +1642,15 @@ static int __init setup_slub_min_order(c __setup("slub_min_order=", setup_slub_min_order); +static int __init setup_slub_max_order(char ...
2. YouTube - stxbreed's Channel
Share your videos with friends, family, and the world
3. Linux-Kernel Archive: [SLUB 3/3] Guarantee minimum number of ...
rem = slab_size % size; @@ -1624,6 +1630,15 @@ static int __init setup_slub_min_order(c __setup("slub_min_order=", setup_slub_min_order); +static int __init setup_slub_min_objects ...
4. Montage Video by VEMPLORE STUDIOS (Sorana Gatej) - Myspace Video
A brief look at my video/film/animation work. Music by Dorian Gatej. ... COPYRIGHT 1 REM… slabbit videos 3
5. Disillusion of Marriage Video by Mary - Myspace Video
Less about this video More about this video ... COPYRIGHT 1 REM… slabbit videos 3
6. God Give Me Video by Christine Her ♫♪ - Myspace Video
Less about this video More about this video ... COPYRIGHT 1 REM… slabbit videos 3
7. SLUB: The unqueued Slab allocator [LWN.net]
... min_order, fls(size - 1) - PAGE_SHIFT); + order < MAX_ORDER; order++) { + unsigned long slab_size = PAGE_SIZE << order; + + if (slab_size < size) + continue; + + rem = slab ...
8. [SLUB 0/3] SLUB: The unqueued slab allocator V4
+ rem = slab_size % size; + + if (rem * 8 <= PAGE_SIZE << order) + break; + + } + if (order >= MAX_ORDER) + return -E2BIG; + return order;
9. SLUB: The unqueued Slab allocator
+ rem = slab_size % size; + + if (rem * 8 <= PAGE_SIZE << order) + break; + + } + if (order >= MAX_ORDER) + return -E2BIG; + return order;
10. /linux/mm/slub.c
Linux kernel & device driver programming