Searched refs:sqo_thread (Results 1 – 1 of 1) sorted by relevance
210 struct task_struct *sqo_thread; /* if using sq thread polling */ member3082 if (ctx->sqo_thread) { in io_sq_thread_stop()3089 kthread_park(ctx->sqo_thread); in io_sq_thread_stop()3090 kthread_stop(ctx->sqo_thread); in io_sq_thread_stop()3091 ctx->sqo_thread = NULL; in io_sq_thread_stop()3191 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread, in io_sq_offload_start()3195 ctx->sqo_thread = kthread_create(io_sq_thread, ctx, in io_sq_offload_start()3198 if (IS_ERR(ctx->sqo_thread)) { in io_sq_offload_start()3199 ret = PTR_ERR(ctx->sqo_thread); in io_sq_offload_start()3200 ctx->sqo_thread = NULL; in io_sq_offload_start()[all …]