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 A6397C4332F for ; Thu, 3 Nov 2022 20:40:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231278AbiKCUkk (ORCPT ); Thu, 3 Nov 2022 16:40:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45790 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231272AbiKCUki (ORCPT ); Thu, 3 Nov 2022 16:40:38 -0400 Received: from 66-220-144-178.mail-mxout.facebook.com (66-220-144-178.mail-mxout.facebook.com [66.220.144.178]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 22FC82099A for ; Thu, 3 Nov 2022 13:40:37 -0700 (PDT) Received: by dev0134.prn3.facebook.com (Postfix, from userid 425415) id 567B7C4F6B7; Thu, 3 Nov 2022 13:40:23 -0700 (PDT) From: Stefan Roesch To: kernel-team@fb.com Cc: shr@devkernel.io, axboe@kernel.dk, olivier@trillion01.com, netdev@vger.kernel.org, io-uring@vger.kernel.org, kuba@kernel.org Subject: [RFC PATCH v1 2/3] liburing: add documentation for new napi busy polling Date: Thu, 3 Nov 2022 13:40:16 -0700 Message-Id: <20221103204017.670757-3-shr@devkernel.io> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20221103204017.670757-1-shr@devkernel.io> References: <20221103204017.670757-1-shr@devkernel.io> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: io-uring@vger.kernel.org This adds two man pages for the two new functions: - io_uring_register_busy_poll_timeout - io_uring_unregister_busy_poll_timeout Signed-off-by: Stefan Roesch --- man/io_uring_register_napi.3 | 35 ++++++++++++++++++++++++++++++++++ man/io_uring_unregister_napi.3 | 26 +++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 man/io_uring_register_napi.3 create mode 100644 man/io_uring_unregister_napi.3 diff --git a/man/io_uring_register_napi.3 b/man/io_uring_register_napi.3 new file mode 100644 index 0000000..2063b5c --- /dev/null +++ b/man/io_uring_register_napi.3 @@ -0,0 +1,35 @@ +.\" Copyright (C) 2022 Stefan Roesch +.\" +.\" SPDX-License-Identifier: LGPL-2.0-or-later +.\" +.TH io_uring_register_busy_poll_timeout 3 "November 1, 2022" "liburing-2= .3" "liburing Manual" +.SH NAME +io_uring_register_busy_poll_timeout \- register NAPI busy poll timeout +.SH SYNOPSIS +.nf +.B #include +.PP +.BI "int io_uring_register_busy_poll_timeout(struct io_uring *" ring "," +.BI " unsigned int " timeout) +.PP +.fi +.SH DESCRIPTION +.PP +The +.BR io_uring_register_busy_poll_timeout (3) +function registers the NAPI busy poll +.I timeout +for subsequent operations. + +Registering a NAPI busy poll timeout is a requirement to be able to use +NAPI busy polling. The other way to enable NAPI busy polling is to set t= he +proc setting /proc/sys/net/core/busy_poll. + +NAPI busy poll can reduce the network roundtrip time. + + +.SH RETURN VALUE +On success +.BR io_uring_register_busy_poll_timeout (3) +return 0. On failure they return +.BR -errno . diff --git a/man/io_uring_unregister_napi.3 b/man/io_uring_unregister_nap= i.3 new file mode 100644 index 0000000..f294ab3 --- /dev/null +++ b/man/io_uring_unregister_napi.3 @@ -0,0 +1,26 @@ +.\" Copyright (C) 2022 Stefan Roesch +.\" +.\" SPDX-License-Identifier: LGPL-2.0-or-later +.\" +.TH io_uring_unregister_busy_poll_timeout 3 "November 1, 2022" "liburing= -2.3" "liburing Manual" +.SH NAME +io_uring_unregister_busy_poll_timeout \- register NAPI busy poll timeout +.SH SYNOPSIS +.nf +.B #include +.PP +.BI "int io_uring_register_busy_poll_timeout(struct io_uring *" ring ") +.PP +.fi +.SH DESCRIPTION +.PP +The +.BR io_uring_unregister_busy_poll_timeout (3) +function unregisters the NAPI busy poll +for subsequent operations. + +.SH RETURN VALUE +On success +.BR io_uring_unregister_busy_poll_timeout (3) +return 0. On failure they return +.BR -errno . --=20 2.30.2