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 86BE4C0015E for ; Tue, 1 Aug 2023 18:11:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231167AbjHASLS (ORCPT ); Tue, 1 Aug 2023 14:11:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60134 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229671AbjHASLR (ORCPT ); Tue, 1 Aug 2023 14:11:17 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E9C58103; Tue, 1 Aug 2023 11:11:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:In-Reply-To:Content-Type: MIME-Version:References:Message-ID:Subject:Cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=tLRRDrRiHVSZcYboxyBTX+0f8b+FQnZsFjIe9Je9qAI=; b=sROSMwu0eoG2tz8B1dlMOxqxza 2BAyBGb6tB2Hzp+EyV51tlBMT6J7hS7ChV4M1q2UcuZ19V5K6C6Pjth+EadWmUmrAZB74T/qozKbU 4X3Qkamzqo6W6edygntqeh7Q5Yx/QZxh1IfszR451TSZ8At46FlOyx+1h/qAaiuNo537IpqUOG251 ycujEig8G0KsK8t6XS/j4kpEKlTrQxA5WE6XRuKg6mTz9+/H+b6pKhAu8sV5uuMuAAZJgQmzkWA+T S7uYWwlO1TDL640NnX+dybwKDktwghFMNjPyEQJ7iq4+/IXvW8i692de6DCGL8Fp3Qd6i5aclCZpy d6MyR54Q==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.96 #2 (Red Hat Linux)) id 1qQtpw-002zws-0q; Tue, 01 Aug 2023 18:11:12 +0000 Date: Tue, 1 Aug 2023 11:11:12 -0700 From: Luis Chamberlain To: Christoph Hellwig Cc: Jens Axboe , "Darrick J. Wong" , Andrew Morton , Matthew Wilcox , Christian Brauner , linux-block@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-xfs@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/6] block: open code __generic_file_write_iter for blkdev writes Message-ID: References: <20230801172201.1923299-1-hch@lst.de> <20230801172201.1923299-4-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230801172201.1923299-4-hch@lst.de> Sender: Luis Chamberlain Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org On Tue, Aug 01, 2023 at 07:21:58PM +0200, Christoph Hellwig wrote: > Open code __generic_file_write_iter to remove the indirect call into > ->direct_IO and to prepare using the iomap based write code. > > Signed-off-by: Christoph Hellwig Reviewed-by: Luis Chamberlain Luis