From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4BA31390220 for ; Wed, 8 Apr 2026 09:18:33 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775639913; cv=none; b=pFV8qSQHca+9UGxju7tMjaAqTseoIgHwCV0Xj5edezRT6Wds4F/kTkzlwmgD2wbvlt8JJiANrQJIgZpWV53QHsRd5h8dQ6KeHhx6k9GEgxmiTXYWceRdldriNEKr1gSkneSoiw25qiw3WHinxl6trSImzVLgeKYyLJBtgwPRspE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775639913; c=relaxed/simple; bh=ZFmmFGWyWNA4NzmpuEJSddLl5GcJesrvvOY9F5nrTDw=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=VvR6kEpwK2yW/Bqe1nihGf6uL/FoG6FBaJio05ALxiT9Ug96cvOBd2WzctYsm/bT88MckE0EjvbVLzy7CRcgphKm8gF5ZsqZl3acS65Y7mTVP6HlQOya2XGnw2H+7Rf8f6sQ96rXB7HCernVfGhnEApeXgKpdo8LAR/5x8SHG98= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fuPkTYZt; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fuPkTYZt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 333B9C19421; Wed, 8 Apr 2026 09:18:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1775639912; bh=ZFmmFGWyWNA4NzmpuEJSddLl5GcJesrvvOY9F5nrTDw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=fuPkTYZt3yhL61ky86ytM/uV1d//9KVMDsbynM2q7BnIZSh3JeUPVtgBiIm62IAL/ XUUJ6TOGfunNTPZT8h8zv+9nTD0HEyGP0bw/bx6Je8nK/LXjuo1FIyHtT0m8ZJ7uiV Z8rfLua8TCHNruxthfoyuBEPmq4iRZ6w09jAV43+IFjlHC38P59TMWnlw1eRj6uwly oZ+9Bogb7iBKe23f7l9zoxPIe9qtXBVPqpwWfFVaWwqBJu+5r305RCqPKtHANoDhFo TB7N4i+yKf1Wpc2pSKBGE9Oi11iGbwzucMl2zgQY7hsugFJOqDAWBQpGS4irt/O4Qo WG0nY8lEpVyCQ== Date: Wed, 8 Apr 2026 11:18:28 +0200 From: Alejandro Colomar To: linux-man@vger.kernel.org Cc: Alejandro Colomar , Guillem Jover , linux-aio@kvack.org Subject: [PATCH v1 1/6] man/man2/io_setup.2: Reduce parameter name Message-ID: <6e23fd87b5f9db2ed09f4e90a33e1fcbc203910e.1775639353.git.alx@kernel.org> X-Mailer: git-send-email 2.53.0 References: Precedence: bulk X-Mailing-List: linux-man@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Signed-off-by: Alejandro Colomar --- man/man2/io_setup.2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/man/man2/io_setup.2 b/man/man2/io_setup.2 index 3d52103d..43d9a631 100644 --- a/man/man2/io_setup.2 +++ b/man/man2/io_setup.2 @@ -17,7 +17,7 @@ .SH SYNOPSIS .nf .BR "#include " " /* Defines needed types */" .P -.BI "long io_setup(unsigned int " nr_events ", aio_context_t *" ctx_idp ); +.BI "long io_setup(unsigned int " n ", aio_context_t *" ctx_idp ); .fi .P .IR Note : @@ -37,7 +37,7 @@ .SH DESCRIPTION .BR io_setup () system call creates an asynchronous I/O context suitable for concurrently processing -.I nr_events +.I n operations. The .I ctx_idp @@ -56,7 +56,7 @@ .SH ERRORS .TP .B EAGAIN The specified -.I nr_events +.I n exceeds the limit of available events, as defined in .I /proc/sys/fs/aio\-max\-nr @@ -71,9 +71,9 @@ .SH ERRORS .I ctx_idp is not initialized, or the specified -.I nr_events +.I n exceeds internal limits. -.I nr_events +.I n should be greater than 0. .TP .B ENOMEM -- 2.53.0