diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-12-06 23:33:20 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-07 11:39:25 -0500 |
commit | e18b890bb0881bbab6f4f1a6cd20d9c60d66b003 (patch) | |
tree | 4828be07e1c24781c264b42c5a75bcd968223c3f /include/linux | |
parent | 441e143e95f5aa1e04026cb0aa71c801ba53982f (diff) |
[PATCH] slab: remove kmem_cache_t
Replace all uses of kmem_cache_t with struct kmem_cache.
The patch was generated using the following script:
#!/bin/sh
#
# Replace one string by another in all the kernel sources.
#
set -e
for file in `find * -name "*.c" -o -name "*.h"|xargs grep -l $1`; do
quilt add $file
sed -e "1,\$s/$1/$2/g" $file >/tmp/$$
mv /tmp/$$ $file
quilt refresh
done
The script was run like this
sh replace kmem_cache_t "struct kmem_cache"
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/delayacct.h | 2 | ||||
-rw-r--r-- | include/linux/i2o.h | 2 | ||||
-rw-r--r-- | include/linux/jbd.h | 2 | ||||
-rw-r--r-- | include/linux/jbd2.h | 2 | ||||
-rw-r--r-- | include/linux/raid/raid5.h | 2 | ||||
-rw-r--r-- | include/linux/rmap.h | 2 | ||||
-rw-r--r-- | include/linux/skbuff.h | 2 | ||||
-rw-r--r-- | include/linux/taskstats_kern.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/include/linux/delayacct.h b/include/linux/delayacct.h index 561e2a77805c..55d1ca5e60f5 100644 --- a/include/linux/delayacct.h +++ b/include/linux/delayacct.h | |||
@@ -30,7 +30,7 @@ | |||
30 | #ifdef CONFIG_TASK_DELAY_ACCT | 30 | #ifdef CONFIG_TASK_DELAY_ACCT |
31 | 31 | ||
32 | extern int delayacct_on; /* Delay accounting turned on/off */ | 32 | extern int delayacct_on; /* Delay accounting turned on/off */ |
33 | extern kmem_cache_t *delayacct_cache; | 33 | extern struct kmem_cache *delayacct_cache; |
34 | extern void delayacct_init(void); | 34 | extern void delayacct_init(void); |
35 | extern void __delayacct_tsk_init(struct task_struct *); | 35 | extern void __delayacct_tsk_init(struct task_struct *); |
36 | extern void __delayacct_tsk_exit(struct task_struct *); | 36 | extern void __delayacct_tsk_exit(struct task_struct *); |
diff --git a/include/linux/i2o.h b/include/linux/i2o.h index 1fb02e17f6f6..2514f4e286b7 100644 --- a/include/linux/i2o.h +++ b/include/linux/i2o.h | |||
@@ -490,7 +490,7 @@ struct i2o_dma { | |||
490 | */ | 490 | */ |
491 | struct i2o_pool { | 491 | struct i2o_pool { |
492 | char *name; | 492 | char *name; |
493 | kmem_cache_t *slab; | 493 | struct kmem_cache *slab; |
494 | mempool_t *mempool; | 494 | mempool_t *mempool; |
495 | }; | 495 | }; |
496 | 496 | ||
diff --git a/include/linux/jbd.h b/include/linux/jbd.h index fe89444b1c6f..dacd566c9f6c 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h | |||
@@ -949,7 +949,7 @@ void journal_put_journal_head(struct journal_head *jh); | |||
949 | /* | 949 | /* |
950 | * handle management | 950 | * handle management |
951 | */ | 951 | */ |
952 | extern kmem_cache_t *jbd_handle_cache; | 952 | extern struct kmem_cache *jbd_handle_cache; |
953 | 953 | ||
954 | static inline handle_t *jbd_alloc_handle(gfp_t gfp_flags) | 954 | static inline handle_t *jbd_alloc_handle(gfp_t gfp_flags) |
955 | { | 955 | { |
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index ddb128795781..98a0ae52660f 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
@@ -958,7 +958,7 @@ void jbd2_journal_put_journal_head(struct journal_head *jh); | |||
958 | /* | 958 | /* |
959 | * handle management | 959 | * handle management |
960 | */ | 960 | */ |
961 | extern kmem_cache_t *jbd2_handle_cache; | 961 | extern struct kmem_cache *jbd2_handle_cache; |
962 | 962 | ||
963 | static inline handle_t *jbd_alloc_handle(gfp_t gfp_flags) | 963 | static inline handle_t *jbd_alloc_handle(gfp_t gfp_flags) |
964 | { | 964 | { |
diff --git a/include/linux/raid/raid5.h b/include/linux/raid/raid5.h index f13299a15591..03636d7918fe 100644 --- a/include/linux/raid/raid5.h +++ b/include/linux/raid/raid5.h | |||
@@ -235,7 +235,7 @@ struct raid5_private_data { | |||
235 | */ | 235 | */ |
236 | int active_name; | 236 | int active_name; |
237 | char cache_name[2][20]; | 237 | char cache_name[2][20]; |
238 | kmem_cache_t *slab_cache; /* for allocating stripes */ | 238 | struct kmem_cache *slab_cache; /* for allocating stripes */ |
239 | 239 | ||
240 | int seq_flush, seq_write; | 240 | int seq_flush, seq_write; |
241 | int quiesce; | 241 | int quiesce; |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index 61c2ab634b00..36f850373d2c 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
@@ -30,7 +30,7 @@ struct anon_vma { | |||
30 | 30 | ||
31 | #ifdef CONFIG_MMU | 31 | #ifdef CONFIG_MMU |
32 | 32 | ||
33 | extern kmem_cache_t *anon_vma_cachep; | 33 | extern struct kmem_cache *anon_vma_cachep; |
34 | 34 | ||
35 | static inline struct anon_vma *anon_vma_alloc(void) | 35 | static inline struct anon_vma *anon_vma_alloc(void) |
36 | { | 36 | { |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 1d649f3eb006..4ff3940210d8 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -345,7 +345,7 @@ static inline struct sk_buff *alloc_skb_fclone(unsigned int size, | |||
345 | return __alloc_skb(size, priority, 1, -1); | 345 | return __alloc_skb(size, priority, 1, -1); |
346 | } | 346 | } |
347 | 347 | ||
348 | extern struct sk_buff *alloc_skb_from_cache(kmem_cache_t *cp, | 348 | extern struct sk_buff *alloc_skb_from_cache(struct kmem_cache *cp, |
349 | unsigned int size, | 349 | unsigned int size, |
350 | gfp_t priority); | 350 | gfp_t priority); |
351 | extern void kfree_skbmem(struct sk_buff *skb); | 351 | extern void kfree_skbmem(struct sk_buff *skb); |
diff --git a/include/linux/taskstats_kern.h b/include/linux/taskstats_kern.h index f81a5af8a4f8..ce8a912e5426 100644 --- a/include/linux/taskstats_kern.h +++ b/include/linux/taskstats_kern.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #include <net/genetlink.h> | 12 | #include <net/genetlink.h> |
13 | 13 | ||
14 | #ifdef CONFIG_TASKSTATS | 14 | #ifdef CONFIG_TASKSTATS |
15 | extern kmem_cache_t *taskstats_cache; | 15 | extern struct kmem_cache *taskstats_cache; |
16 | extern struct mutex taskstats_exit_mutex; | 16 | extern struct mutex taskstats_exit_mutex; |
17 | 17 | ||
18 | static inline void taskstats_exit_free(struct taskstats *tidstats) | 18 | static inline void taskstats_exit_free(struct taskstats *tidstats) |