diff options
-rw-r--r-- | mm/slab.c | 35 |
1 files changed, 17 insertions, 18 deletions
@@ -313,7 +313,7 @@ static int drain_freelist(struct kmem_cache *cache, | |||
313 | struct kmem_list3 *l3, int tofree); | 313 | struct kmem_list3 *l3, int tofree); |
314 | static void free_block(struct kmem_cache *cachep, void **objpp, int len, | 314 | static void free_block(struct kmem_cache *cachep, void **objpp, int len, |
315 | int node); | 315 | int node); |
316 | static void enable_cpucache(struct kmem_cache *cachep); | 316 | static int enable_cpucache(struct kmem_cache *cachep); |
317 | static void cache_reap(void *unused); | 317 | static void cache_reap(void *unused); |
318 | 318 | ||
319 | /* | 319 | /* |
@@ -1490,7 +1490,8 @@ void __init kmem_cache_init(void) | |||
1490 | struct kmem_cache *cachep; | 1490 | struct kmem_cache *cachep; |
1491 | mutex_lock(&cache_chain_mutex); | 1491 | mutex_lock(&cache_chain_mutex); |
1492 | list_for_each_entry(cachep, &cache_chain, next) | 1492 | list_for_each_entry(cachep, &cache_chain, next) |
1493 | enable_cpucache(cachep); | 1493 | if (enable_cpucache(cachep)) |
1494 | BUG(); | ||
1494 | mutex_unlock(&cache_chain_mutex); | 1495 | mutex_unlock(&cache_chain_mutex); |
1495 | } | 1496 | } |
1496 | 1497 | ||
@@ -1924,12 +1925,11 @@ static size_t calculate_slab_order(struct kmem_cache *cachep, | |||
1924 | return left_over; | 1925 | return left_over; |
1925 | } | 1926 | } |
1926 | 1927 | ||
1927 | static void setup_cpu_cache(struct kmem_cache *cachep) | 1928 | static int setup_cpu_cache(struct kmem_cache *cachep) |
1928 | { | 1929 | { |
1929 | if (g_cpucache_up == FULL) { | 1930 | if (g_cpucache_up == FULL) |
1930 | enable_cpucache(cachep); | 1931 | return enable_cpucache(cachep); |
1931 | return; | 1932 | |
1932 | } | ||
1933 | if (g_cpucache_up == NONE) { | 1933 | if (g_cpucache_up == NONE) { |
1934 | /* | 1934 | /* |
1935 | * Note: the first kmem_cache_create must create the cache | 1935 | * Note: the first kmem_cache_create must create the cache |
@@ -1976,6 +1976,7 @@ static void setup_cpu_cache(struct kmem_cache *cachep) | |||
1976 | cpu_cache_get(cachep)->touched = 0; | 1976 | cpu_cache_get(cachep)->touched = 0; |
1977 | cachep->batchcount = 1; | 1977 | cachep->batchcount = 1; |
1978 | cachep->limit = BOOT_CPUCACHE_ENTRIES; | 1978 | cachep->limit = BOOT_CPUCACHE_ENTRIES; |
1979 | return 0; | ||
1979 | } | 1980 | } |
1980 | 1981 | ||
1981 | /** | 1982 | /** |
@@ -2242,8 +2243,11 @@ kmem_cache_create (const char *name, size_t size, size_t align, | |||
2242 | cachep->dtor = dtor; | 2243 | cachep->dtor = dtor; |
2243 | cachep->name = name; | 2244 | cachep->name = name; |
2244 | 2245 | ||
2245 | 2246 | if (setup_cpu_cache(cachep)) { | |
2246 | setup_cpu_cache(cachep); | 2247 | __kmem_cache_destroy(cachep); |
2248 | cachep = NULL; | ||
2249 | goto oops; | ||
2250 | } | ||
2247 | 2251 | ||
2248 | /* cache setup completed, link it into the list */ | 2252 | /* cache setup completed, link it into the list */ |
2249 | list_add(&cachep->next, &cache_chain); | 2253 | list_add(&cachep->next, &cache_chain); |
@@ -3693,7 +3697,7 @@ static int do_tune_cpucache(struct kmem_cache *cachep, int limit, | |||
3693 | int batchcount, int shared) | 3697 | int batchcount, int shared) |
3694 | { | 3698 | { |
3695 | struct ccupdate_struct new; | 3699 | struct ccupdate_struct new; |
3696 | int i, err; | 3700 | int i; |
3697 | 3701 | ||
3698 | memset(&new.new, 0, sizeof(new.new)); | 3702 | memset(&new.new, 0, sizeof(new.new)); |
3699 | for_each_online_cpu(i) { | 3703 | for_each_online_cpu(i) { |
@@ -3724,17 +3728,11 @@ static int do_tune_cpucache(struct kmem_cache *cachep, int limit, | |||
3724 | kfree(ccold); | 3728 | kfree(ccold); |
3725 | } | 3729 | } |
3726 | 3730 | ||
3727 | err = alloc_kmemlist(cachep); | 3731 | return alloc_kmemlist(cachep); |
3728 | if (err) { | ||
3729 | printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n", | ||
3730 | cachep->name, -err); | ||
3731 | BUG(); | ||
3732 | } | ||
3733 | return 0; | ||
3734 | } | 3732 | } |
3735 | 3733 | ||
3736 | /* Called with cache_chain_mutex held always */ | 3734 | /* Called with cache_chain_mutex held always */ |
3737 | static void enable_cpucache(struct kmem_cache *cachep) | 3735 | static int enable_cpucache(struct kmem_cache *cachep) |
3738 | { | 3736 | { |
3739 | int err; | 3737 | int err; |
3740 | int limit, shared; | 3738 | int limit, shared; |
@@ -3786,6 +3784,7 @@ static void enable_cpucache(struct kmem_cache *cachep) | |||
3786 | if (err) | 3784 | if (err) |
3787 | printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n", | 3785 | printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n", |
3788 | cachep->name, -err); | 3786 | cachep->name, -err); |
3787 | return err; | ||
3789 | } | 3788 | } |
3790 | 3789 | ||
3791 | /* | 3790 | /* |