diff options
| author | Christoph Hellwig <hch@lst.de> | 2004-09-02 20:29:51 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-09-02 20:29:51 -0700 |
| commit | e500ee2722d76db18c501e8ff3b31fbbb7621771 (patch) | |
| tree | 17e8a676053982750fdf013bcd8c64ef916bb247 | |
| parent | b407ae3cbe06e6252493079d70ab09e48a604656 (diff) | |
[PATCH] some missing statics in mm/
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | mm/shmem.c | 2 | ||||
| -rw-r--r-- | mm/slab.c | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/mm/shmem.c b/mm/shmem.c index 3c438c528ae9..9ed4b622686a 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -179,7 +179,7 @@ static struct backing_dev_info shmem_backing_dev_info = { .unplug_io_fn = default_unplug_io_fn, }; -LIST_HEAD(shmem_inodes); +static LIST_HEAD(shmem_inodes); static spinlock_t shmem_ilock = SPIN_LOCK_UNLOCKED; static void shmem_free_block(struct inode *inode) diff --git a/mm/slab.c b/mm/slab.c index 21a54adbc4c4..71a36d582303 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -504,8 +504,10 @@ static struct cache_names __initdata cache_names[] = { #undef CACHE }; -struct arraycache_init initarray_cache __initdata = { { 0, BOOT_CPUCACHE_ENTRIES, 1, 0} }; -struct arraycache_init initarray_generic __initdata = { { 0, BOOT_CPUCACHE_ENTRIES, 1, 0} }; +static struct arraycache_init initarray_cache __initdata = + { { 0, BOOT_CPUCACHE_ENTRIES, 1, 0} }; +static struct arraycache_init initarray_generic __initdata = + { { 0, BOOT_CPUCACHE_ENTRIES, 1, 0} }; /* internal cache of cache description objs */ static kmem_cache_t cache_cache = { @@ -523,8 +525,7 @@ static kmem_cache_t cache_cache = { /* Guard access to the cache-chain. */ static struct semaphore cache_chain_sem; - -struct list_head cache_chain; +static struct list_head cache_chain; /* * vm_enough_memory() looks at this to determine how many @@ -539,7 +540,7 @@ EXPORT_SYMBOL(slab_reclaim_pages); * chicken and egg problem: delay the per-cpu array allocation * until the general caches are up. */ -enum { +static enum { NONE, PARTIAL, FULL @@ -822,7 +823,7 @@ void __init kmem_cache_init(void) */ } -int __init cpucache_init(void) +static int __init cpucache_init(void) { int cpu; |
