The modification of slab.c in 2.2.18pre2 seems to be missing a "return"
in kmem_cache_shrink():

Index: mm/slab.c
--- mm/slab.c.prev
+++ mm/slab.c   Fri Sep  1 21:16:45 2000
@@ -1048,5 +1048,5 @@ found:
 int kmem_cache_shrink(kmem_cache_t *cachep)
 {
-       __kmem_cache_shrink(cachep,0);
+       return __kmem_cache_shrink(cachep,0);
 }
 

-- 
Chip Salzenberg              - a.k.a. -              <[EMAIL PROTECTED]>
"I wanted to play hopscotch with the impenetrable mystery of existence,
    but he stepped in a wormhole and had to go in early."  // MST3K
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to