Searched refs:sqo_thread (Results 1 – 1 of 1) sorted by relevance
209 struct task_struct *sqo_thread; /* if using sq thread polling */ member2971 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()[all …]