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 BB990C7EE2A for ; Sat, 20 May 2023 04:12:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230175AbjETEMe (ORCPT ); Sat, 20 May 2023 00:12:34 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50326 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229436AbjETEMd (ORCPT ); Sat, 20 May 2023 00:12:33 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4C9D8137; Fri, 19 May 2023 21:12:32 -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=CmsksxXD+n4C0QHv7Zr+S4D+BO8Q1gfodWsSUUJZRcs=; b=wYBYJCsc9X5cOzCe7Siycq+sm4 JN0IA6hxZMgTuCVKWEpoKYrifkBMr0lWDMJSliRS83pvDqAMRzSEcIoE30caFN3f0l0Wnhj6TXJR4 hiyhP8Q94fnYNIzKFJ0ohLNCPB78puv9ksyLcaKPTITe+x+BewZc+oc2uDW0phzAEJ68Aj8FgdbJc HR1Y0l3w8gjGXTTg8lmV/SJ0NzR3kMvVYQo7UDE/zUSwRbMduraWcnVaKN8Tg5eCSXYEy2Zqz1xRW ubQnDeOPaapafV9c1oAHb8WqsUFEC+DnlcaPgNTtPiRbXnjFUAXxqJGQmxc71ODO1WV+qC49LD9w1 zSA8V69Q==; Received: from hch by bombadil.infradead.org with local (Exim 4.96 #2 (Red Hat Linux)) id 1q0Dx7-000dWG-23; Sat, 20 May 2023 04:12:21 +0000 Date: Fri, 19 May 2023 21:12:21 -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 , Christian Brauner , Linus Torvalds , linux-fsdevel@vger.kernel.org, linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Christoph Hellwig , Theodore Ts'o , Andreas Dilger , linux-ext4@vger.kernel.org Subject: Re: [PATCH v21 18/30] ext4: Provide a splice-read stub Message-ID: References: <20230520000049.2226926-1-dhowells@redhat.com> <20230520000049.2226926-19-dhowells@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230520000049.2226926-19-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-fsdevel@vger.kernel.org On Sat, May 20, 2023 at 01:00:37AM +0100, David Howells wrote: > Provide a splice_read stub for Ext4. This does the inode shutdown check > before proceeding. Splicing from DAX files and O_DIRECT fds is handled by > the caller. Not sure I'd call this a stub, but then again I'm not a native speaker. The patch itself looks good: Reviewed-by: Christoph Hellwig