From patchwork Sat Feb 10 05:06:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 13552116 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 3484463C for ; Sat, 10 Feb 2024 05:06:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707541569; cv=none; b=d7slgs6/E/qxd9KTIqk1sRwey6loLdt+v7uw9IRxWvorr3xqE39CGJaaPiaEZbydgCLJuQ06OwhCb1GSHOLiVRPDQR6Il+KmoMz5GKibnIHvrBT9PkDHHWIx9jomJSGBZyKO88Rfza0Cj104EPJ99qTXAEYRLFg+0dmzpcD1ZB8= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1707541569; c=relaxed/simple; bh=uGhnbafFw57DZUb2SjTRhMNCt6wGtyCxlU1nTO9g8Yw=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=Gu8Q+9iY/y6KFSvBEFm2mJrcK/mmBK9ezF8keMcU7AkDy8ci/BLK3NiiKT3zRqncXdqjBoaniw5WMnE2gEdUvTCtddo1kjy4UD+c7GcO72eAEHPtBfTNutNvOLjMdswvnQ6htVhgWyl5/dgc+ffK603z11qUoEArXdexji0Zhmc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=1fYDIBUu; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="1fYDIBUu" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=PgqiFXHTY4BNefMXVU71C8xlnhYWmJXOTG4yohtyeaU=; b=1fYDIBUuvPe2xa9v1Aqnlo7eRR qxrOAOR08gP773/QuWv02BSjyz3QOVg4d0R6oEwV9+34NhWM63OYqjAb5KUT2HNHAg2ntNszIrxoO 5Extu3Nv0bAWbi6MYsO6Q7b+VDLc7nuckLqupC/WxDNDw5W0lTo8UGtZQyx8NftoQyuqATTsPOSCc IJqK5wBulaDGOe7OVYu4ICkdeEiYJ1sIx9yCCMD26oGMpz+2rp8OZv6uleP6k7K/apW3W+dUV/Vyh Le/4jddhtqydDaPsHi911pwF8x6RpnQu6l6w6wqiaS7zxLFUjnifEVeaM3vFH36uUUsNj9zQpe11R xnxTe5Qg==; Received: from [50.53.50.0] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.97.1 #2 (Red Hat Linux)) id 1rYfZ1-00000001E44-2EzL; Sat, 10 Feb 2024 05:06:07 +0000 From: Randy Dunlap To: linux-fsdevel@vger.kernel.org Cc: Randy Dunlap , Bart Van Assche , Alexander Viro , Christian Brauner , Jens Axboe Subject: [PATCH] fs/hfsplus: use better @opf description Date: Fri, 9 Feb 2024 21:06:06 -0800 Message-ID: <20240210050606.9182-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Use a more descriptive explanation of the @opf function parameter, more in line with . Fixes: 02105f18a26c ("fs/hfsplus: wrapper.c: fix kernel-doc warnings") Suggested-by: Bart Van Assche Signed-off-by: Randy Dunlap Cc: Alexander Viro Cc: Christian Brauner Cc: Jens Axboe Reviewed-by: Bart Van Assche --- fs/hfsplus/wrapper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -- a/fs/hfsplus/wrapper.c b/fs/hfsplus/wrapper.c --- a/fs/hfsplus/wrapper.c +++ b/fs/hfsplus/wrapper.c @@ -30,7 +30,7 @@ struct hfsplus_wd { * @sector: block to read or write, for blocks of HFSPLUS_SECTOR_SIZE bytes * @buf: buffer for I/O * @data: output pointer for location of requested data - * @opf: request op flags + * @opf: I/O operation type and flags * * The unit of I/O is hfsplus_min_io_size(sb), which may be bigger than * HFSPLUS_SECTOR_SIZE, and @buf must be sized accordingly. On reads