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 724FBC433FE for ; Tue, 15 Nov 2022 08:37:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232432AbiKOIhP (ORCPT ); Tue, 15 Nov 2022 03:37:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49684 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232453AbiKOIhO (ORCPT ); Tue, 15 Nov 2022 03:37:14 -0500 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 18CCF19B; Tue, 15 Nov 2022 00:37:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; 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=U6/3ofeiVaLo9TBWq2pxdKOcfHZdpVbG7f+Luo5asuI=; b=TQiNsjF/Lw8/3IeIFoM/veEM3s CbsKhfabPTMyHQIOdBT0HCZk683/kUJsjsffl8L+hQw13JPlXR/Vwi5f2wbzHWzldUNG7eiYTR1Jt abrOITc0SvusUK1lJefS9gMXi7JgVIGJ4H8R2EuvdNgvp+2AmLvKzBJTdCniFfTQDqNgo5XXhfF0C jUM4YtcNCGil8sYdK8FshSHQXCKOD0xXrUD+PSIJleo0ge5KO62i4xUN0fA4SoG8hoC55kum1CLa5 lHuYlMFP91B5MthTyMRtXPEQhAM5fcbM4Mgc+nc4tjj26eKn0xZvV6Zi8kLq2njQ4tABY5JSrDce4 MvZLHmaQ==; Received: from hch by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1ourRR-008yYD-OI; Tue, 15 Nov 2022 08:37:13 +0000 Date: Tue, 15 Nov 2022 00:37:13 -0800 From: Christoph Hellwig To: "Darrick J. Wong" Cc: linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org, david@fromorbit.com, hch@infradead.org Subject: Re: [PATCH 10/14] iomap: pass a private pointer to iomap_file_buffered_write Message-ID: References: <166801774453.3992140.241667783932550826.stgit@magnolia> <166801780087.3992140.16981045908489138660.stgit@magnolia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <166801780087.3992140.16981045908489138660.stgit@magnolia> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org On Wed, Nov 09, 2022 at 10:16:40AM -0800, Darrick J. Wong wrote: > From: Darrick J. Wong > > Allow filesystems to pass a filesystem-private pointer into iomap for > writes into the pagecache. This will now be accessible from > ->iomap_begin implementations, which is key to being able to revalidate > mappings after taking folio locks. Looks good (and this is similar to what we already do for other users of iomap): Reviewed-by: Christoph Hellwig