| /OK3568_Linux_fs/kernel/mm/ |
| H A D | slab.c | 212 static void free_block(struct kmem_cache *cachep, void **objpp, int len, 214 static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list); 215 static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp); 218 static inline void fixup_objfreelist_debug(struct kmem_cache *cachep, 220 static inline void fixup_slab_list(struct kmem_cache *cachep, 242 #define MAKE_LIST(cachep, listp, slab, nodeid) \ argument 245 list_splice(&get_node(cachep, nodeid)->slab, listp); \ 248 #define MAKE_ALL_LISTS(cachep, ptr, nodeid) \ argument 250 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \ 251 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \ [all …]
|
| H A D | slab.h | 503 struct kmem_cache *cachep; in cache_from_obj() local 509 cachep = virt_to_cache(x); in cache_from_obj() 510 if (WARN(cachep && cachep != s, in cache_from_obj() 512 __func__, s->name, cachep->name)) in cache_from_obj() 513 print_tracking(cachep, x); in cache_from_obj() 514 return cachep; in cache_from_obj() 658 int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count, 660 void cache_random_seq_destroy(struct kmem_cache *cachep); 662 static inline int cache_random_seq_create(struct kmem_cache *cachep, in cache_random_seq_create() argument 667 static inline void cache_random_seq_destroy(struct kmem_cache *cachep) { } in cache_random_seq_destroy() argument
|
| H A D | slab_common.c | 535 int kmem_cache_shrink(struct kmem_cache *cachep) in kmem_cache_shrink() argument 541 kasan_cache_shrink(cachep); in kmem_cache_shrink() 542 ret = __kmem_cache_shrink(cachep); in kmem_cache_shrink() 900 int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count, in cache_random_seq_create() argument 905 if (count < 2 || cachep->random_seq) in cache_random_seq_create() 908 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp); in cache_random_seq_create() 909 if (!cachep->random_seq) in cache_random_seq_create() 915 freelist_randomize(&state, cachep->random_seq, count); in cache_random_seq_create() 920 void cache_random_seq_destroy(struct kmem_cache *cachep) in cache_random_seq_destroy() argument 922 kfree(cachep->random_seq); in cache_random_seq_destroy() [all …]
|
| H A D | slob.c | 630 void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags) in kmem_cache_alloc() argument 632 return slob_alloc_node(cachep, flags, NUMA_NO_NODE); in kmem_cache_alloc() 643 void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t gfp, int node) in kmem_cache_alloc_node() argument 645 return slob_alloc_node(cachep, gfp, node); in kmem_cache_alloc_node()
|
| /OK3568_Linux_fs/kernel/tools/testing/radix-tree/ |
| H A D | linux.c | 29 void *kmem_cache_alloc(struct kmem_cache *cachep, int gfp) in kmem_cache_alloc() argument 36 pthread_mutex_lock(&cachep->lock); in kmem_cache_alloc() 37 if (cachep->nr_objs) { in kmem_cache_alloc() 38 struct radix_tree_node *node = cachep->objs; in kmem_cache_alloc() 39 cachep->nr_objs--; in kmem_cache_alloc() 40 cachep->objs = node->parent; in kmem_cache_alloc() 41 pthread_mutex_unlock(&cachep->lock); in kmem_cache_alloc() 45 pthread_mutex_unlock(&cachep->lock); in kmem_cache_alloc() 46 if (cachep->align) in kmem_cache_alloc() 47 posix_memalign(&p, cachep->align, cachep->size); in kmem_cache_alloc() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/snic/ |
| H A D | snic_main.c | 833 struct kmem_cache *cachep; in snic_global_data_init() local 866 cachep = kmem_cache_create("snic_req_dfltsgl", len, SNIC_SG_DESC_ALIGN, in snic_global_data_init() 868 if (!cachep) { in snic_global_data_init() 874 snic_glob->req_cache[SNIC_REQ_CACHE_DFLT_SGL] = cachep; in snic_global_data_init() 879 cachep = kmem_cache_create("snic_req_maxsgl", len, SNIC_SG_DESC_ALIGN, in snic_global_data_init() 881 if (!cachep) { in snic_global_data_init() 887 snic_glob->req_cache[SNIC_REQ_CACHE_MAX_SGL] = cachep; in snic_global_data_init() 890 cachep = kmem_cache_create("snic_req_maxsgl", len, SNIC_SG_DESC_ALIGN, in snic_global_data_init() 892 if (!cachep) { in snic_global_data_init() 898 snic_glob->req_cache[SNIC_REQ_TM_CACHE] = cachep; in snic_global_data_init()
|
| /OK3568_Linux_fs/kernel/tools/testing/radix-tree/linux/ |
| H A D | slab.h | 20 void *kmem_cache_alloc(struct kmem_cache *cachep, int flags); 21 void kmem_cache_free(struct kmem_cache *cachep, void *objp);
|
| /OK3568_Linux_fs/kernel/drivers/soc/rockchip/minidump/ |
| H A D | minidump_memory.c | 156 static void slabinfo_stats(struct seq_buf *m, struct kmem_cache *cachep) in slabinfo_stats() argument 160 unsigned long high = cachep->high_mark; in slabinfo_stats() 161 unsigned long allocs = cachep->num_allocations; in slabinfo_stats() 162 unsigned long grown = cachep->grown; in slabinfo_stats() 163 unsigned long reaped = cachep->reaped; in slabinfo_stats() 164 unsigned long errors = cachep->errors; in slabinfo_stats() 165 unsigned long max_freeable = cachep->max_freeable; in slabinfo_stats() 166 unsigned long node_allocs = cachep->node_allocs; in slabinfo_stats() 167 unsigned long node_frees = cachep->node_frees; in slabinfo_stats() 168 unsigned long overflows = cachep->node_overflow; in slabinfo_stats() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/mm/ |
| H A D | hugetlbpage.c | 48 struct kmem_cache *cachep; in __hugepte_alloc() local 54 cachep = PGT_CACHE(PTE_T_ORDER); in __hugepte_alloc() 57 cachep = PGT_CACHE(pdshift - pshift); in __hugepte_alloc() 61 if (!cachep) { in __hugepte_alloc() 66 new = kmem_cache_alloc(cachep, pgtable_gfp_flags(mm, GFP_KERNEL)); in __hugepte_alloc() 97 kmem_cache_free(cachep, new); in __hugepte_alloc()
|
| /OK3568_Linux_fs/u-boot/include/linux/ |
| H A D | compat.h | 93 static inline void kmem_cache_free(struct kmem_cache *cachep, void *obj) in kmem_cache_free() argument 97 static inline void kmem_cache_destroy(struct kmem_cache *cachep) in kmem_cache_destroy() argument 99 free(cachep); in kmem_cache_destroy()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188eu/core/mesh/ |
| H A D | rtw_mesh.c | 2760 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 2763 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 2769 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 2772 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 2779 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 2782 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 2787 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 2798 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 2800 u32 sz = cachep->size; in dbg_rtw_mcache_free() 2805 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8189fs/core/mesh/ |
| H A D | rtw_mesh.c | 2781 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 2784 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 2790 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 2793 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 2800 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 2803 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 2808 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 2819 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 2821 u32 sz = cachep->size; in dbg_rtw_mcache_free() 2826 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8188fu/core/mesh/ |
| H A D | rtw_mesh.c | 2760 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 2763 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 2769 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 2772 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 2779 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 2782 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 2787 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 2798 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 2800 u32 sz = cachep->size; in dbg_rtw_mcache_free() 2805 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8822bs/core/mesh/ |
| H A D | rtw_mesh.c | 2760 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 2763 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 2769 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 2772 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 2779 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 2782 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 2787 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 2798 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 2800 u32 sz = cachep->size; in dbg_rtw_mcache_free() 2805 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/include/net/ |
| H A D | inet_hashtables.h | 201 inet_bind_bucket_create(struct kmem_cache *cachep, struct net *net, 204 void inet_bind_bucket_destroy(struct kmem_cache *cachep,
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/core/mesh/ |
| H A D | rtw_mesh.c | 3036 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3039 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3045 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3048 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3055 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3058 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3063 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3074 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3076 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3081 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8723ds/core/mesh/ |
| H A D | rtw_mesh.c | 3050 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3053 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3059 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3062 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3069 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3072 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3077 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3088 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3090 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3095 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8821cs/core/mesh/ |
| H A D | rtw_mesh.c | 3050 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3053 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3059 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3062 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3069 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3072 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3077 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3088 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3090 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3095 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8822cs/core/mesh/ |
| H A D | rtw_mesh.c | 3050 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3053 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3059 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3062 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3069 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3072 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3077 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3088 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3090 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3095 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723cs/core/mesh/ |
| H A D | rtw_mesh.c | 3050 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3053 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3059 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3062 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3069 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3072 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3077 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3088 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3090 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3095 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8821cs/core/mesh/ |
| H A D | rtw_mesh.c | 3051 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3054 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3060 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3063 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3070 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3073 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3078 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3089 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3091 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3096 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rtl8723ds/core/mesh/ |
| H A D | rtw_mesh.c | 3051 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3054 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3060 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3063 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3070 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3073 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3078 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3089 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3091 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3096 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8189fs/core/mesh/ |
| H A D | rtw_mesh.c | 3050 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3053 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3059 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3062 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3069 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3072 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3077 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3088 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3090 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3095 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8188fu/core/mesh/ |
| H A D | rtw_mesh.c | 3050 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3053 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3059 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3062 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3069 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3072 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3077 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3088 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3090 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3095 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/core/mesh/ |
| H A D | rtw_mesh.c | 3036 void *_rtw_mcache_alloc(rtw_mcache *cachep) in _rtw_mcache_alloc() argument 3039 return kmem_cache_alloc(cachep, GFP_ATOMIC); in _rtw_mcache_alloc() 3045 void _rtw_mcache_free(rtw_mcache *cachep, void *objp) in _rtw_mcache_free() argument 3048 kmem_cache_free(cachep, objp); in _rtw_mcache_free() 3055 inline void *dbg_rtw_mcache_alloc(rtw_mcache *cachep, const enum mstat_f flags, const char *func, c… in dbg_rtw_mcache_alloc() argument 3058 u32 sz = cachep->size; in dbg_rtw_mcache_alloc() 3063 p = _rtw_mcache_alloc(cachep); in dbg_rtw_mcache_alloc() 3074 inline void dbg_rtw_mcache_free(rtw_mcache *cachep, void *pbuf, const enum mstat_f flags, const cha… in dbg_rtw_mcache_free() argument 3076 u32 sz = cachep->size; in dbg_rtw_mcache_free() 3081 _rtw_mcache_free(cachep, pbuf); in dbg_rtw_mcache_free() [all …]
|