Home
last modified time | relevance | path

Searched refs:work_ctx (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/kernel/irq/
H A Dirq_sim.c24 struct irq_sim_work_ctx *work_ctx; member
108 while (!bitmap_empty(work_ctx->pending, work_ctx->irq_count)) { in irq_sim_handle_irq()
131 irq_ctx->work_ctx = work_ctx; in irq_sim_domain_map()
169 work_ctx = kmalloc(sizeof(*work_ctx), GFP_KERNEL); in irq_domain_create_sim()
170 if (!work_ctx) in irq_domain_create_sim()
174 if (!work_ctx->pending) in irq_domain_create_sim()
179 work_ctx); in irq_domain_create_sim()
180 if (!work_ctx->domain) in irq_domain_create_sim()
186 return work_ctx->domain; in irq_domain_create_sim()
191 kfree(work_ctx); in irq_domain_create_sim()
[all …]
/openbmc/linux/drivers/crypto/intel/qat/qat_common/
H A Dadf_gen4_timer.c25 timer_ctx = container_of(to_delayed_work(work), struct adf_timer, work_ctx); in work_handler()
28 adf_misc_wq_queue_delayed_work(&timer_ctx->work_ctx, in work_handler()
50 INIT_DELAYED_WORK(&timer_ctx->work_ctx, work_handler); in adf_gen4_timer_start()
51 adf_misc_wq_queue_delayed_work(&timer_ctx->work_ctx, in adf_gen4_timer_start()
65 cancel_delayed_work_sync(&timer_ctx->work_ctx); in adf_gen4_timer_stop()
H A Dadf_gen4_timer.h14 struct delayed_work work_ctx; member