2002-02-26 02:04:43

by Michael Cohen

[permalink] [raw]
Subject: Submissions for 2.4.19-pre [slab estimate optimization (Balbir Singh)]

This is the fifth of several mails containing patches to be included in 2.4.19. Some are worthy of dicussion prior to inclusion and have been marked as such. The majority of these patches were found on lkml; the remaining ones have URLs listed.

This one originated on lkml some months ago.

------
Michael Cohen
OhDarn.net

--- linux-virgin/mm/slab.c Sun Jan 13 18:02:18 2002
+++ linux-wli/mm/slab.c Sun Jan 13 18:02:01 2002
@@ -397,10 +397,10 @@
base = sizeof(slab_t);
extra = sizeof(kmem_bufctl_t);
}
- i = 0;
+ i = (wastage - base)/(size + extra);
while (i*size + L1_CACHE_ALIGN(base+i*extra) <= wastage)
i++;
- if (i > 0)
+ while (i*size + L1_CACHE_ALIGN(base+i*extra) > wastage)
i--;

if (i > SLAB_LIMIT)