Searched refs:kmem_cache_t (Results 1 – 25 of 67) sorted by relevance
123
/linux-2.4.37.9/include/linux/ |
D | slab.h | 12 typedef struct kmem_cache_s kmem_cache_t; typedef 52 extern kmem_cache_t *kmem_find_general_cachep(size_t, int gfpflags); 53 extern kmem_cache_t *kmem_cache_create(const char *, size_t, size_t, unsigned long, 54 void (*)(void *, kmem_cache_t *, unsigned long), 55 void (*)(void *, kmem_cache_t *, unsigned long)); 56 extern int kmem_cache_destroy(kmem_cache_t *); 57 extern int kmem_cache_shrink(kmem_cache_t *); 58 extern void *kmem_cache_alloc(kmem_cache_t *, int); 59 extern void kmem_cache_free(kmem_cache_t *, void *); 60 extern unsigned int kmem_cache_size(kmem_cache_t *); [all …]
|
/linux-2.4.37.9/mm/ |
D | slab.c | 214 kmem_cache_t *slabp_cache; 219 void (*ctor)(void *, kmem_cache_t *, unsigned long); 222 void (*dtor)(void *, kmem_cache_t *, unsigned long); 326 #define GET_PAGE_CACHE(pg) ((kmem_cache_t *)(pg)->list.next) 333 kmem_cache_t *cs_cachep; 334 kmem_cache_t *cs_dmacachep; 357 static kmem_cache_t cache_cache = { 361 objsize: sizeof(kmem_cache_t), 372 static kmem_cache_t *clock_searchp = &cache_cache; 383 static void enable_cpucache (kmem_cache_t *cachep); [all …]
|
/linux-2.4.37.9/fs/jffs2/ |
D | malloc.c | 52 static kmem_cache_t *full_dnode_slab; 53 static kmem_cache_t *raw_dirent_slab; 54 static kmem_cache_t *raw_inode_slab; 55 static kmem_cache_t *tmp_dnode_info_slab; 56 static kmem_cache_t *raw_node_ref_slab; 57 static kmem_cache_t *node_frag_slab; 58 static kmem_cache_t *inode_cache_slab;
|
/linux-2.4.37.9/arch/arm/mm/ |
D | mm-armo.c | 26 kmem_cache_t *pte_cache, *pgd_cache; 160 static void pte_cache_ctor(void *pte, kmem_cache_t *cache, unsigned long flags) in pte_cache_ctor() 165 static void pgd_cache_ctor(void *pte, kmem_cache_t *cache, unsigned long flags) in pgd_cache_ctor()
|
D | mm-armv.c | 472 kmem_cache_t *pte_cache; 479 static void pte_cache_ctor(void *pte, kmem_cache_t *cache, unsigned long flags) in pte_cache_ctor()
|
/linux-2.4.37.9/include/asm-s390/ |
D | ccwcache.h | 16 #define kmem_cache_t void macro 56 kmem_cache_t *cache; /* the cache this data comes from */
|
/linux-2.4.37.9/include/asm-s390x/ |
D | ccwcache.h | 16 #define kmem_cache_t void macro 56 kmem_cache_t *cache; /* the cache this data comes from */
|
/linux-2.4.37.9/fs/ |
D | char_dev.c | 16 static kmem_cache_t * cdev_cachep; 22 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags) in init_once()
|
D | dcache.c | 37 static kmem_cache_t *dentry_cache; 1242 static void init_buffer_head(void * foo, kmem_cache_t * cachep, unsigned long flags) in init_buffer_head() 1255 kmem_cache_t *names_cachep; 1258 kmem_cache_t *filp_cachep; 1261 kmem_cache_t *dquot_cachep; 1264 kmem_cache_t *bh_cachep;
|
D | dnotify.c | 29 static kmem_cache_t *dn_cache;
|
D | iobuf.c | 14 static kmem_cache_t *kiobuf_cachep;
|
/linux-2.4.37.9/include/asm-arm/proc-armo/ |
D | pgalloc.h | 12 extern kmem_cache_t *pte_cache;
|
/linux-2.4.37.9/include/asm-arm/proc-armv/ |
D | pgalloc.h | 12 extern kmem_cache_t *pte_cache;
|
/linux-2.4.37.9/kernel/ |
D | fork.c | 855 kmem_cache_t *sigact_cachep; 858 kmem_cache_t *files_cachep; 861 kmem_cache_t *fs_cachep; 864 kmem_cache_t *vm_area_cachep; 867 kmem_cache_t *mm_cachep;
|
D | user.c | 25 static kmem_cache_t *uid_cachep;
|
/linux-2.4.37.9/fs/xfs/linux-2.4/ |
D | kmem.h | 46 #define kmem_zone_t kmem_cache_t
|
/linux-2.4.37.9/fs/jfs/ |
D | jfs_inode.c | 26 kmem_cache_t *jfs_inode_cachep;
|
D | jfs_incore.h | 180 extern kmem_cache_t *jfs_inode_cachep;
|
D | jfs_metapage.c | 100 kmem_cache_t *metapage_cache; 102 static void init_once(void *foo, kmem_cache_t *cachep, unsigned long flags) in init_once()
|
/linux-2.4.37.9/include/net/ |
D | dst.h | 86 kmem_cache_t *kmem_cachep;
|
/linux-2.4.37.9/fs/jbd/ |
D | revoke.c | 74 static kmem_cache_t *revoke_record_cache; 75 static kmem_cache_t *revoke_table_cache;
|
/linux-2.4.37.9/fs/intermezzo/ |
D | cache.c | 53 extern kmem_cache_t * presto_dentry_slab;
|
D | dcache.c | 51 kmem_cache_t * presto_dentry_slab;
|
/linux-2.4.37.9/fs/freevxfs/ |
D | vxfs_inode.c | 58 kmem_cache_t *vxfs_inode_cachep;
|
/linux-2.4.37.9/drivers/s390/ |
D | ccwcache.c | 52 static kmem_cache_t *ccw_cache[CCW_NUMBER_CACHES];
|
123