diff options
author | Steve French <sfrench@us.ibm.com> | 2006-06-07 02:40:03 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-06-07 02:40:03 +0000 |
commit | f3ffb6814408f29817fc84d40ecc9c796acaa3ab (patch) | |
tree | b4702cbdbf2c4517a5986bbaa971495b0f92a877 /mm/slab.c | |
parent | 5bafd76593f060540acbea3b61e3087e009aa269 (diff) | |
parent | 1def630a6a49dda5bc89dfbd86656293640456f0 (diff) | |
download | kernel_goldelico_gta04-f3ffb6814408f29817fc84d40ecc9c796acaa3ab.zip kernel_goldelico_gta04-f3ffb6814408f29817fc84d40ecc9c796acaa3ab.tar.gz kernel_goldelico_gta04-f3ffb6814408f29817fc84d40ecc9c796acaa3ab.tar.bz2 |
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 27 |
1 files changed, 13 insertions, 14 deletions
@@ -207,11 +207,6 @@ typedef unsigned int kmem_bufctl_t; #define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2) #define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3) -/* Max number of objs-per-slab for caches which use off-slab slabs. - * Needed to avoid a possible looping condition in cache_grow(). - */ -static unsigned long offslab_limit; - /* * struct slab * @@ -1356,12 +1351,6 @@ void __init kmem_cache_init(void) NULL, NULL); } - /* Inc off-slab bufctl limit until the ceiling is hit. */ - if (!(OFF_SLAB(sizes->cs_cachep))) { - offslab_limit = sizes->cs_size - sizeof(struct slab); - offslab_limit /= sizeof(kmem_bufctl_t); - } - sizes->cs_dmacachep = kmem_cache_create(names->name_dma, sizes->cs_size, ARCH_KMALLOC_MINALIGN, @@ -1780,6 +1769,7 @@ static void set_up_list3s(struct kmem_cache *cachep, int index) static size_t calculate_slab_order(struct kmem_cache *cachep, size_t size, size_t align, unsigned long flags) { + unsigned long offslab_limit; size_t left_over = 0; int gfporder; @@ -1791,9 +1781,18 @@ static size_t calculate_slab_order(struct kmem_cache *cachep, if (!num) continue; - /* More than offslab_limit objects will cause problems */ - if ((flags & CFLGS_OFF_SLAB) && num > offslab_limit) - break; + if (flags & CFLGS_OFF_SLAB) { + /* + * Max number of objs-per-slab for caches which + * use off-slab slabs. Needed to avoid a possible + * looping condition in cache_grow(). + */ + offslab_limit = size - sizeof(struct slab); + offslab_limit /= sizeof(kmem_bufctl_t); + + if (num > offslab_limit) + break; + } /* Found something acceptable - save it away */ cachep->num = num; |