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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 61F92C433EF for ; Wed, 17 Nov 2021 13:13:15 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3E4F661ABD for ; Wed, 17 Nov 2021 13:13:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230174AbhKQNQM (ORCPT ); Wed, 17 Nov 2021 08:16:12 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38986 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234159AbhKQNQH (ORCPT ); Wed, 17 Nov 2021 08:16:07 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 51A37C061570 for ; Wed, 17 Nov 2021 05:13:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=ylpZ9Lw61g+uleOVyqJA3dFrLpOTun3ZRS+3g5WDVlg=; b=fZpkKkDdg0nRn54bcJyExBelwZ H0dVQnO1SYdwuM6IZ5UBd9GifihUtr3tKdbkq7dDM3FSNC8N8/2H21RQKrO1wUyOfWZCYFyxKMr/w 1SCrjLShiNp4SW0HXwWd34J4g6tO2i2na5brYskBcW/a9EOnBM/R8Wialec9cg13DHPT/E+d0wqa/ AJJLWHdFHVgGarCFGwzNN0Tcbk4jaoBvnRorAGlMIcunsl+SwJHYqOYbIShV4pzHgfoGCey9EsEIR +TPngsCA1QUlBCN4rGG/aZmTquCfLwezj7KGa0fa/IjwH4Auvzl2AoeL43shy7frh9Dk6FwfT8a4V lnDF1DuA==; Received: from willy by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnKkM-007cdN-E2; Wed, 17 Nov 2021 13:13:06 +0000 Date: Wed, 17 Nov 2021 13:13:06 +0000 From: Matthew Wilcox To: rohitsd1409 Cc: viro@zeniv.linux.org.uk, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH] inode_dio_begin comment fixed. Message-ID: References: <20211117111326.GA4306@overlay> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211117111326.GA4306@overlay> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Wed, Nov 17, 2021 at 04:43:26PM +0530, rohitsd1409 wrote: > +++ b/include/linux/fs.h > @@ -3282,8 +3282,7 @@ void inode_dio_wait(struct inode *inode); > * inode_dio_begin - signal start of a direct I/O requests > * @inode: inode the direct I/O happens on > * > - * This is called once we've finished processing a direct I/O request, > - * and is used to wake up callers waiting for direct I/O to be quiesced. > + * This is called once we've started processing a direct I/O request. > */ * This is called before we start processing a direct I/O request so * that inode_dio_wait() will wait for this to finish.