From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EFEA4C43334 for ; Tue, 12 Jul 2022 08:33:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229542AbiGLIdK (ORCPT ); Tue, 12 Jul 2022 04:33:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34834 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231991AbiGLIcx (ORCPT ); Tue, 12 Jul 2022 04:32:53 -0400 Received: from out0.migadu.com (out0.migadu.com [94.23.1.103]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F321A5E57 for ; Tue, 12 Jul 2022 01:32:52 -0700 (PDT) Message-ID: <7d5d120d-941d-0451-b1f3-ed67baa8ecbe@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1657614770; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Uc/1IeoBi5B2zMVpV39WYd4jj27ademMJrk8ick2mNA=; b=drx/i0m/yAz3DvvRXSJOlo4wgJKmla1JC2YkeYBrDJRvd98TLlnP17BnNOjFcH9uDF1yrI lYnKYyjAuHlTzO6bnbL/PmOlUoerDG3YMZZfZ9d5YqNEhKcq4q0ktb98MocqAGuscSmR99 su1JviiSKXBU6I75JT3BLgZCqEJG98k= Date: Tue, 12 Jul 2022 16:32:44 +0800 MIME-Version: 1.0 Subject: Re: [PATCH v5 00/11] fixed worker Content-Language: en-US X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Hao Xu To: io-uring@vger.kernel.org Cc: Jens Axboe , Pavel Begunkov References: <20220627133541.15223-1-hao.xu@linux.dev> In-Reply-To: <20220627133541.15223-1-hao.xu@linux.dev> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: linux.dev Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org On 6/27/22 21:35, Hao Xu wrote: > From: Hao Xu > > This is the second version of fixed worker implementation. > Wrote a nop test program to test it, 3 fixed-workers VS 3 normal workers. > normal workers: > ./run_nop_wqe.sh nop_wqe_normal 200000 100 3 1-3 > time spent: 17314274 usecs IOPS: 1155116 > time spent: 17016942 usecs IOPS: 1175299 > time spent: 17908684 usecs IOPS: 1116776 > > fixed workers: > ./run_nop_wqe.sh nop_wqe_fixed 200000 100 3 1-3 > time spent: 10464397 usecs IOPS: 1911242 > time spent: 9610976 usecs IOPS: 2080954 > time spent: 9807361 usecs IOPS: 2039284 > > About 2x improvement. From perf result, almost no acct->lock contension. > Test program: https://github.com/HowHsu/liburing/tree/fixed_worker > liburing/test/nop_wqe.c > > v3->v4: > - make work in fixed worker's private worfixed worker > - tweak the io_wqe_acct struct to make it clearer > > v4->v5: > - code clean > - rebase against the for-5.20/io_uring > > > Hao Xu (11): > io-wq: add a worker flag for individual exit > io-wq: change argument of create_io_worker() for convienence > io-wq: add infra data structure for fixed workers > io-wq: tweak io_get_acct() > io-wq: fixed worker initialization > io-wq: fixed worker exit > io-wq: implement fixed worker logic > io-wq: batch the handling of fixed worker private works > io_uring: add register fixed worker interface > io-wq: add an work list for fixed worker > io_uring: cancel works in exec work list for fixed worker > > include/uapi/linux/io_uring.h | 11 + > io_uring/io-wq.c | 495 ++++++++++++++++++++++++++++++---- > io_uring/io-wq.h | 8 + > io_uring/io_uring.c | 71 +++++ > 4 files changed, 537 insertions(+), 48 deletions(-) > > > base-commit: 094abe8fbccb0d79bef982c67eb7372e92452c0e ping...