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 04805C0015E for ; Mon, 24 Jul 2023 17:31:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229509AbjGXRbH (ORCPT ); Mon, 24 Jul 2023 13:31:07 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37904 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229485AbjGXRbG (ORCPT ); Mon, 24 Jul 2023 13:31:06 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8EB30E1; Mon, 24 Jul 2023 10:31:05 -0700 (PDT) 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=FilRVP5bIdReycpGXPo+d2Y8wo2WCLjMqoFkGhMrdKo=; b=aCinILooTQROh4/AvSE4/BWUnI NxeicWVpuH5BySDSP7ADqbclwYVtL2OW9p0XOZEj4uDwzlzuFumO0c6k/GVb1ygAuEGXhiRvHfSYg 1YRL8FzXM2X6skCEH+BJmR7VSfdX1hF/f5zsO6Aw8RoxQBZ7Mqv8M761HQTslyk4yxjLqu67ln9Ge vtlf2yjM2or6LfOrpvb2f6w2Dd3zYzALmZbTwlp5hAwt7N/F6tFAIqtVvNpboEso7kTROiG616cOE O6jCUWkbpTZj0ooyHrGbJ46/SKtqKCGckVyufxDleejKft+uxavehekRZ1uAC60511+uGBigZvEXn Z8r5/crg==; Received: from hch by bombadil.infradead.org with local (Exim 4.96 #2 (Red Hat Linux)) id 1qNzOj-0053r0-01; Mon, 24 Jul 2023 17:31:05 +0000 Date: Mon, 24 Jul 2023 10:31:04 -0700 From: Christoph Hellwig To: Kent Overstreet Cc: linux-bcachefs@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Kent Overstreet , linux-block@vger.kernel.org, Jens Axboe Subject: Re: [PATCH 04/20] block: Add some exports for bcachefs Message-ID: References: <20230712211115.2174650-1-kent.overstreet@linux.dev> <20230712211115.2174650-5-kent.overstreet@linux.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230712211115.2174650-5-kent.overstreet@linux.dev> 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-bcachefs@vger.kernel.org On Wed, Jul 12, 2023 at 05:10:59PM -0400, Kent Overstreet wrote: > From: Kent Overstreet > > - bio_set_pages_dirty(), bio_check_pages_dirty() - dio path Why? We've so far have been able to get away without file systems reinventing their own DIO path. I'd really like to keep it that way, so if you think the iomap dio code should be improved please explain why. And please also cycle the fsdevel list in. > - blk_status_to_str() - error messages > - bio_add_folio() - this should definitely be exported for everyone, > it's the modern version of bio_add_page() These look ok to me to go in when the actual user shows up.