From: Manfred Spraul <manfred@colorfullife.com>
To: akpm@digeo.com, linux-kernel@vger.kernel.org
Cc: mbligh@aracnet.com
Subject: [PATCH] patch-slab-split-02-SMP
Date: Fri, 04 Oct 2002 19:01:44 +0200 [thread overview]
Message-ID: <3D9DC978.5090004@colorfullife.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 227 bytes --]
part 2:
[depends on -01-rename]
Always enable the cpu arrays. They provide LIFO ordering, which should
improve cache hit rates. And the array allocator is slightly faster than
the list operations.
Please apply
--
Manfred
[-- Attachment #2: patch-slab-split-02-SMP --]
[-- Type: text/plain, Size: 5636 bytes --]
--- 2.5/mm/slab.c Fri Oct 4 18:55:20 2002
+++ build-2.5/mm/slab.c Fri Oct 4 18:58:13 2002
@@ -198,9 +198,7 @@
unsigned int flags; /* constant flags */
unsigned int num; /* # of objs per slab */
spinlock_t spinlock;
-#ifdef CONFIG_SMP
unsigned int batchcount;
-#endif
/* 2) slab additions /removals */
/* order of pgs per slab (2^n) */
@@ -227,10 +225,8 @@
/* 3) cache creation/removal */
const char *name;
struct list_head next;
-#ifdef CONFIG_SMP
/* 4) per-cpu data */
cpucache_t *cpudata[NR_CPUS];
-#endif
#if STATS
unsigned long num_active;
unsigned long num_allocations;
@@ -238,13 +234,11 @@
unsigned long grown;
unsigned long reaped;
unsigned long errors;
-#ifdef CONFIG_SMP
atomic_t allochit;
atomic_t allocmiss;
atomic_t freehit;
atomic_t freemiss;
#endif
-#endif
};
/* internal c_flags */
@@ -278,7 +272,7 @@
#define STATS_INC_ERR(x) do { } while (0)
#endif
-#if STATS && defined(CONFIG_SMP)
+#if STATS
#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
@@ -402,7 +396,6 @@
#define cache_chain (cache_cache.next)
-#ifdef CONFIG_SMP
/*
* chicken and egg problem: delay the per-cpu array allocation
* until the general caches are up.
@@ -411,7 +404,6 @@
static void enable_cpucache (kmem_cache_t *cachep);
static void enable_all_cpucaches (void);
-#endif
/* Cal the num objs, wastage, and bytes left over for a given slab size. */
static void cache_estimate (unsigned long gfporder, size_t size,
@@ -501,10 +493,8 @@
int __init cpucache_init(void)
{
-#ifdef CONFIG_SMP
g_cpucache_up = 1;
enable_all_cpucaches();
-#endif
return 0;
}
@@ -832,10 +822,8 @@
cachep->dtor = dtor;
cachep->name = name;
-#ifdef CONFIG_SMP
if (g_cpucache_up)
enable_cpucache(cachep);
-#endif
/* Need the semaphore to access the chain. */
down(&cache_chain_sem);
{
@@ -900,7 +888,6 @@
#define is_chained_cache(x) 1
#endif
-#ifdef CONFIG_SMP
/*
* Waits for all CPUs to execute func().
*/
@@ -955,10 +942,6 @@
up(&cache_chain_sem);
}
-#else
-#define drain_cpu_caches(cachep) do { } while (0)
-#endif
-
static int __cache_shrink(kmem_cache_t *cachep)
{
slab_t *slabp;
@@ -1044,13 +1027,11 @@
up(&cache_chain_sem);
return 1;
}
-#ifdef CONFIG_SMP
{
int i;
for (i = 0; i < NR_CPUS; i++)
kfree(cachep->cpudata[i]);
}
-#endif
kmem_cache_free(&cache_cache, cachep);
return 0;
@@ -1330,7 +1311,6 @@
cache_alloc_one_tail(cachep, slabp); \
})
-#ifdef CONFIG_SMP
void* cache_alloc_batch(kmem_cache_t* cachep, int flags)
{
int batchcount = cachep->batchcount;
@@ -1363,7 +1343,6 @@
return cc_entry(cc)[--cc->avail];
return NULL;
}
-#endif
static inline void * __cache_alloc (kmem_cache_t *cachep, int flags)
{
@@ -1376,7 +1355,6 @@
cache_alloc_head(cachep, flags);
try_again:
local_irq_save(save_flags);
-#ifdef CONFIG_SMP
{
cpucache_t *cc = cc_data(cachep);
@@ -1398,19 +1376,12 @@
spin_unlock(&cachep->spinlock);
}
}
-#else
- objp = cache_alloc_one(cachep);
-#endif
local_irq_restore(save_flags);
return objp;
alloc_new_slab:
-#ifdef CONFIG_SMP
spin_unlock(&cachep->spinlock);
-#endif
local_irq_restore(save_flags);
-#ifdef CONFIG_SMP
alloc_new_slab_nolock:
-#endif
if (cache_grow(cachep, flags))
/* Someone may have stolen our objs. Doesn't matter, we'll
* just come back here again.
@@ -1512,7 +1483,6 @@
}
}
-#ifdef CONFIG_SMP
static inline void __free_block (kmem_cache_t* cachep,
void** objpp, int len)
{
@@ -1526,7 +1496,6 @@
__free_block(cachep, objpp, len);
spin_unlock(&cachep->spinlock);
}
-#endif
/*
* __cache_free
@@ -1534,7 +1503,6 @@
*/
static inline void __cache_free (kmem_cache_t *cachep, void* objp)
{
-#ifdef CONFIG_SMP
cpucache_t *cc = cc_data(cachep);
CHECK_PAGE(objp);
@@ -1554,9 +1522,6 @@
} else {
free_block(cachep, &objp, 1);
}
-#else
- cache_free_one(cachep, objp);
-#endif
}
/**
@@ -1674,8 +1639,6 @@
return (gfpflags & GFP_DMA) ? csizep->cs_dmacachep : csizep->cs_cachep;
}
-#ifdef CONFIG_SMP
-
/* called with cache_chain_sem acquired. */
static int tune_cpucache (kmem_cache_t* cachep, int limit, int batchcount)
{
@@ -1772,7 +1735,6 @@
up(&cache_chain_sem);
}
-#endif
/**
* cache_reap - Reclaim memory from caches.
@@ -1816,7 +1778,6 @@
searchp->dflags &= ~DFLGS_GROWN;
goto next_unlock;
}
-#ifdef CONFIG_SMP
{
cpucache_t *cc = cc_data(searchp);
if (cc && cc->avail) {
@@ -1824,7 +1785,6 @@
cc->avail = 0;
}
}
-#endif
full_free = 0;
p = searchp->slabs_free.next;
@@ -1958,9 +1918,7 @@
#if STATS
" (statistics)"
#endif
-#ifdef CONFIG_SMP
" (SMP)"
-#endif
"\n");
return 0;
}
@@ -2018,7 +1976,6 @@
high, allocs, grown, reaped, errors);
}
#endif
-#ifdef CONFIG_SMP
{
unsigned int batchcount = cachep->batchcount;
unsigned int limit;
@@ -2029,8 +1986,7 @@
limit = 0;
seq_printf(m, " : %4u %4u", limit, batchcount);
}
-#endif
-#if STATS && defined(CONFIG_SMP)
+#if STATS
{
unsigned long allochit = atomic_read(&cachep->allochit);
unsigned long allocmiss = atomic_read(&cachep->allocmiss);
@@ -2077,7 +2033,6 @@
ssize_t slabinfo_write(struct file *file, const char *buffer,
size_t count, loff_t *ppos)
{
-#ifdef CONFIG_SMP
char kbuf[MAX_SLABINFO_WRITE+1], *tmp;
int limit, batchcount, res;
struct list_head *p;
@@ -2113,8 +2068,5 @@
if (res >= 0)
res = count;
return res;
-#else
- return -EINVAL;
-#endif
}
#endif
reply other threads:[~2002-10-04 17:28 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3D9DC978.5090004@colorfullife.com \
--to=manfred@colorfullife.com \
--cc=akpm@digeo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mbligh@aracnet.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.