Lines Matching refs:cwqe_info
22 struct otx_cptvf_wqe_info *cwqe_info = in vq_work_handler() local
25 otx_cpt_post_process(&cwqe_info->vq_wqe[0]); in vq_work_handler()
31 struct otx_cptvf_wqe_info *cwqe_info; in init_worker_threads() local
34 cwqe_info = kzalloc(sizeof(*cwqe_info), GFP_KERNEL); in init_worker_threads()
35 if (!cwqe_info) in init_worker_threads()
44 tasklet_init(&cwqe_info->vq_wqe[i].twork, vq_work_handler, in init_worker_threads()
45 (u64)cwqe_info); in init_worker_threads()
46 cwqe_info->vq_wqe[i].cptvf = cptvf; in init_worker_threads()
48 cptvf->wqe_info = cwqe_info; in init_worker_threads()
56 struct otx_cptvf_wqe_info *cwqe_info; in cleanup_worker_threads() local
59 cwqe_info = (struct otx_cptvf_wqe_info *)cptvf->wqe_info; in cleanup_worker_threads()
60 if (!cwqe_info) in cleanup_worker_threads()
69 tasklet_kill(&cwqe_info->vq_wqe[i].twork); in cleanup_worker_threads()
71 kfree_sensitive(cwqe_info); in cleanup_worker_threads()