diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-12-06 20:32:52 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 08:39:23 -0800 |
commit | 8b7d91eb7f6a3e8f0caaa613937bda5ab7dc7dc2 (patch) | |
tree | 8036dc7f0c05ec2712acfed92589bd41ed5766f9 | |
parent | 5d6538fcf231faccb2ac42f92851d259d00e62f9 (diff) | |
download | linux-3.10-8b7d91eb7f6a3e8f0caaa613937bda5ab7dc7dc2.tar.gz linux-3.10-8b7d91eb7f6a3e8f0caaa613937bda5ab7dc7dc2.tar.bz2 linux-3.10-8b7d91eb7f6a3e8f0caaa613937bda5ab7dc7dc2.zip |
[PATCH] Move filep_cachep to include/file.h
filp_cachep is only used in fs/file_table.c and in fs/dcache.c where
it is defined.
Move it to related definitions in linux/file.h.
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/linux/file.h | 2 | ||||
-rw-r--r-- | include/linux/slab.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/file.h b/include/linux/file.h index be37423e992..6e77b9177f9 100644 --- a/include/linux/file.h +++ b/include/linux/file.h @@ -64,6 +64,8 @@ struct files_struct { #define files_fdtable(files) (rcu_dereference((files)->fdt)) +extern struct kmem_cache *filp_cachep; + extern void FASTCALL(__fput(struct file *)); extern void FASTCALL(fput(struct file *)); diff --git a/include/linux/slab.h b/include/linux/slab.h index dd9efecff41..f9202d60d76 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h @@ -310,7 +310,6 @@ static inline void *kcalloc(size_t n, size_t size, gfp_t flags) /* System wide caches */ extern kmem_cache_t *names_cachep; -extern kmem_cache_t *filp_cachep; extern kmem_cache_t *fs_cachep; #endif /* __KERNEL__ */ |