Lines Matching refs:ctx_cache
5371 alloc_perf_ctx_data(struct kmem_cache *ctx_cache, bool global) in alloc_perf_ctx_data() argument
5379 cd->data = kmem_cache_zalloc(ctx_cache, GFP_KERNEL); in alloc_perf_ctx_data()
5386 cd->ctx_cache = ctx_cache; in alloc_perf_ctx_data()
5394 kmem_cache_free(cd->ctx_cache, cd->data); in free_perf_ctx_data()
5412 attach_task_ctx_data(struct task_struct *task, struct kmem_cache *ctx_cache, in attach_task_ctx_data() argument
5417 cd = alloc_perf_ctx_data(ctx_cache, global); in attach_task_ctx_data()
5465 attach_global_ctx_data(struct kmem_cache *ctx_cache) in attach_global_ctx_data() argument
5500 ret = attach_task_ctx_data(p, ctx_cache, true); in attach_global_ctx_data()
5513 struct kmem_cache *ctx_cache = event->pmu->task_ctx_cache; in attach_perf_ctx_data() local
5516 if (!ctx_cache) in attach_perf_ctx_data()
5520 return attach_task_ctx_data(task, ctx_cache, false); in attach_perf_ctx_data()
5522 ret = attach_global_ctx_data(ctx_cache); in attach_perf_ctx_data()
9205 struct kmem_cache *ctx_cache = NULL; in perf_event_alloc_task_data() local
9214 ctx_cache = cd->ctx_cache; in perf_event_alloc_task_data()
9217 if (!ctx_cache) in perf_event_alloc_task_data()
9241 attach_task_ctx_data(child, ctx_cache, true); in perf_event_alloc_task_data()