Lines Matching refs:sqo_thread
209 struct task_struct *sqo_thread; /* if using sq thread polling */ member
2971 if (ctx->sqo_thread) { in io_sq_thread_stop()
2978 kthread_park(ctx->sqo_thread); in io_sq_thread_stop()
2979 kthread_stop(ctx->sqo_thread); in io_sq_thread_stop()
2980 ctx->sqo_thread = NULL; in io_sq_thread_stop()
3186 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread, in io_sq_offload_start()
3190 ctx->sqo_thread = kthread_create(io_sq_thread, ctx, in io_sq_offload_start()
3193 if (IS_ERR(ctx->sqo_thread)) { in io_sq_offload_start()
3194 ret = PTR_ERR(ctx->sqo_thread); in io_sq_offload_start()
3195 ctx->sqo_thread = NULL; in io_sq_offload_start()
3198 wake_up_process(ctx->sqo_thread); in io_sq_offload_start()