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 32F55C6FD1F for ; Tue, 14 Mar 2023 17:32:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229535AbjCNRcf (ORCPT ); Tue, 14 Mar 2023 13:32:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48160 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229797AbjCNRce (ORCPT ); Tue, 14 Mar 2023 13:32:34 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0E9AF9B997; Tue, 14 Mar 2023 10:32:34 -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=28j9WYgvln7aRho0OI6duSimvP4MftIELf2uPURKALY=; b=ezQ6b9Wz3oP3LuIChxz62KzWUd UfTh6YVtINaWGSDW4lKRlfb17SBRw1phWauX5F3WS0AMcb7IIz0NhrPvxAhoGrUvPIc9JxfcbfOzx KtMntx4IBgWsjg48yvjhEikc81whrfdeDIMNptNa6JQG8OveNmDKW6EVBDqtyURwlLm5ftY/lO9BI ZDnI5cZh1SVUj7BgcdAEOd9YtFenDxYENUFrNDpHv7tbWngE031S4BaPGdaYSIXByEyfro3Dw68q7 S7hTk8FiTPK0bubryasAgXrRt5LPpvAbSjQSqXKAykY4UxEz32B7PAkYikrMDRCBTcVrtM/TSvGs8 Pfr6sIqg==; Received: from hch by bombadil.infradead.org with local (Exim 4.96 #2 (Red Hat Linux)) id 1pc8Vd-00B1ba-2g; Tue, 14 Mar 2023 17:32:25 +0000 Date: Tue, 14 Mar 2023 10:32:25 -0700 From: Christoph Hellwig To: David Howells Cc: Jens Axboe , Al Viro , Christoph Hellwig , Matthew Wilcox , Jan Kara , Jeff Layton , David Hildenbrand , Jason Gunthorpe , Logan Gunthorpe , Hillf Danton , Linus Torvalds , linux-fsdevel@vger.kernel.org, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Steve French , Christoph Hellwig , John Hubbard , linux-cifs@vger.kernel.org Subject: Re: [PATCH v17 07/14] splice: Do splice read from a file without using ITER_PIPE Message-ID: References: <20230308165251.2078898-1-dhowells@redhat.com> <20230308165251.2078898-8-dhowells@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230308165251.2078898-8-dhowells@redhat.com> 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-cifs@vger.kernel.org On Wed, Mar 08, 2023 at 04:52:44PM +0000, David Howells wrote: > Make generic_file_splice_read() use filemap_splice_read() and > direct_splice_read() rather than using an ITER_PIPE and call_read_iter(). > > Make cifs use generic_file_splice_read() rather than doing it for itself. Please split the cifs patch out into a separate one. Otherwise this looks good: Reviewed-by: Christoph Hellwig