From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) (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 681C253A5; Fri, 15 Dec 2023 04:59:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=lst.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lst.de Received: by verein.lst.de (Postfix, from userid 2407) id 2584568D05; Fri, 15 Dec 2023 05:59:44 +0100 (CET) Date: Fri, 15 Dec 2023 05:59:43 +0100 From: Christoph Hellwig To: Matthew Wilcox Cc: Christoph Hellwig , Namjae Jeon , Sungjong Seo , Jan Kara , OGAWA Hirofumi , Mikulas Patocka , Dave Kleikamp , Bob Copeland , linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, jfs-discussion@lists.sourceforge.net, linux-karma-devel@lists.sourceforge.net, linux-mm@kvack.org Subject: Re: [PATCH 4/9] hfs: remove ->writepage Message-ID: <20231215045943.GA16040@lst.de> References: <20221113162902.883850-1-hch@lst.de> <20221113162902.883850-5-hch@lst.de> Precedence: bulk X-Mailing-List: linux-ext4@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) On Thu, Dec 14, 2023 at 07:01:25PM +0000, Matthew Wilcox wrote: > Was there a reason you only did this for hfs_aops and not for > hfs_btree_aops? It feels like anything that just calls > block_write_full_page() in the writepage handler should be converted > to just calling mpage_writepages() in the writepages handler. > I have a few of those conversions done, but obviously they're in > filesystems that are basically untestable. Probably. I remember I had a good reason to skip, and the lack of testability might have been it. Note that for hfsplus in particular we should actually be able to test now that the port of the hfs userspace has returned to distros. I haven't actually gotten to see what the test baseline looks like, though.