Messages in this thread Patch in this message |  | | Date | Fri, 1 Sep 2000 22:10:43 -0700 | From | Chip Salzenberg <> | Subject | 2.2.18pre2: slab.c missing return |
| |
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. - <chip@valinux.com> "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 majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |