diff options
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -2442,7 +2442,6 @@ EXPORT_SYMBOL(kmem_cache_shrink); | |||
2442 | * @cachep: the cache to destroy | 2442 | * @cachep: the cache to destroy |
2443 | * | 2443 | * |
2444 | * Remove a struct kmem_cache object from the slab cache. | 2444 | * Remove a struct kmem_cache object from the slab cache. |
2445 | * Returns 0 on success. | ||
2446 | * | 2445 | * |
2447 | * It is expected this function will be called by a module when it is | 2446 | * It is expected this function will be called by a module when it is |
2448 | * unloaded. This will remove the cache completely, and avoid a duplicate | 2447 | * unloaded. This will remove the cache completely, and avoid a duplicate |
@@ -2454,7 +2453,7 @@ EXPORT_SYMBOL(kmem_cache_shrink); | |||
2454 | * The caller must guarantee that noone will allocate memory from the cache | 2453 | * The caller must guarantee that noone will allocate memory from the cache |
2455 | * during the kmem_cache_destroy(). | 2454 | * during the kmem_cache_destroy(). |
2456 | */ | 2455 | */ |
2457 | int kmem_cache_destroy(struct kmem_cache *cachep) | 2456 | void kmem_cache_destroy(struct kmem_cache *cachep) |
2458 | { | 2457 | { |
2459 | BUG_ON(!cachep || in_interrupt()); | 2458 | BUG_ON(!cachep || in_interrupt()); |
2460 | 2459 | ||
@@ -2475,7 +2474,7 @@ int kmem_cache_destroy(struct kmem_cache *cachep) | |||
2475 | list_add(&cachep->next, &cache_chain); | 2474 | list_add(&cachep->next, &cache_chain); |
2476 | mutex_unlock(&cache_chain_mutex); | 2475 | mutex_unlock(&cache_chain_mutex); |
2477 | unlock_cpu_hotplug(); | 2476 | unlock_cpu_hotplug(); |
2478 | return 1; | 2477 | return; |
2479 | } | 2478 | } |
2480 | 2479 | ||
2481 | if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) | 2480 | if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) |
@@ -2483,7 +2482,6 @@ int kmem_cache_destroy(struct kmem_cache *cachep) | |||
2483 | 2482 | ||
2484 | __kmem_cache_destroy(cachep); | 2483 | __kmem_cache_destroy(cachep); |
2485 | unlock_cpu_hotplug(); | 2484 | unlock_cpu_hotplug(); |
2486 | return 0; | ||
2487 | } | 2485 | } |
2488 | EXPORT_SYMBOL(kmem_cache_destroy); | 2486 | EXPORT_SYMBOL(kmem_cache_destroy); |
2489 | 2487 | ||