From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server-vie001.gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_DBL_BLOCKED_OPENDNS, URIBL_ZEN_BLOCKED_OPENDNS autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=new2025; t=1753577013; bh=TnXW7fZnrm+uavSGu7+OvFNTZCEXcKrFHrQeTFKXCGk=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version: Content-Transfer-Encoding:Message-ID:Date:From:Reply-To:Subject:To: Cc:In-Reply-To:References:Resent-Date:Resent-From:Resent-To: Resent-Cc:User-Agent:Content-Type:Content-Transfer-Encoding; b=Nd6wWWc6R0BsD+cwBXtWTI6OsEU9GVu5c4xIec0nQ+yJjPgpAFyuKCMW2hgxqGnF3 zospQ/p0psp+sqCiGVdy7Bc/3h+SFH9GYeBpU8Xmzzanstab1mCdSMw/bSTMNoIpKA ecStKMBjiAkAeSBXh9DJqQwB1UW8DOlsYAj5/d6opJuok7X/Qnh5BwKCUuAHr3FOyB C4YjyoBlPiexMxFQ9vFGQ4cjTATzWpUr6/7ZVgZd9My6F4esHIBQfUH3LBXbpVR9u+ 0Du2DO1aRjbQtNUCABAFDQ8SdunZN5HBao8FpmrAxU+JQWwbNzdo2PrV9YTD8PP94l D0OuRDji4u9vw== Received: from integral2.. (unknown [182.253.126.144]) by server-vie001.gnuweeb.org (Postfix) with ESMTPSA id 3A3133126E01; Sun, 27 Jul 2025 00:43:32 +0000 (UTC) From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Alviro Iskandar Setiawan , GNU/Weeb Mailing List , Christian Mazakas , io-uring Mailing List , Linux Kernel Mailing List Subject: [PATCH liburing 0/3] Manpage updates for iowait toggle feature and one extra FFI fix Date: Sun, 27 Jul 2025 07:43:13 +0700 Message-Id: <20250727004316.3351033-1-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Hi Jens, As previously discussed on Discord, here are two manpage updates about the iowait toggle feature. And then I have one extra FFI trivial fix. The FFI fix is safe to apply for the liburing 2.12 release. - Add `io_uring_set_iowait(3)` manpage. - Add `IORING_ENTER_NO_IOWAIT` flag to `io_uring_enter(2)` - Don't use `IOURINGINLINE` on private helpers in `liburing.h`. Signed-off-by: Ammar Faizi --- Ammar Faizi (3): man: Add `io_uring_set_iowait(3)` man: Add `IORING_ENTER_NO_IOWAIT` flag liburing: Don't use `IOURINGINLINE` on private helpers man/io_uring_enter.2 | 16 ++++++++++- man/io_uring_set_iowait.3 | 57 +++++++++++++++++++++++++++++++++++++++ src/include/liburing.h | 6 ++--- 3 files changed, 75 insertions(+), 4 deletions(-) create mode 100644 man/io_uring_set_iowait.3 base-commit: 6d3d27bc42733f5a407424c76aadcc84bd4b0cf0 -- Ammar Faizi