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 X-Spam-Level: X-Spam-Status: No, score=-5.7 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F3114C49EA6 for ; Thu, 24 Jun 2021 06:42:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D026F613E0 for ; Thu, 24 Jun 2021 06:42:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231373AbhFXGol (ORCPT ); Thu, 24 Jun 2021 02:44:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50804 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231145AbhFXGok (ORCPT ); Thu, 24 Jun 2021 02:44:40 -0400 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 368CBC061574; Wed, 23 Jun 2021 23:42:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; 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=VTp4ERIHfZ74eGmRGc/ixEZgfb274FHoLoJXb8aHGKc=; b=UUHFVGEv9UaLDXHzBvsrdkaA7g nrqXIXFwrdw/YwOYS3+v9jAkcH0Q+k3+IQ365DFaLqmlPRmruZ9md1tcG3dydjtLp2NeUonhpIZHx WXxuny/Vt+kgh/nxgilKlIEYF19oOib4HOedpv/VDD6AmiRygch6mqEiI72NsRVdkKi8qddeodwiN YuFd36djBHlyoCaz1aocwnoxaQsMV8ehXrsFOqEPZKpyxaSxpYkwVdGCiqNhyFAnIgOlRAReFikQI BF3pZ5gNMGSDYNpodJrAxbUuaAEBoaCvgZN2MxVwm86F5DD0ETCswC3deCqVFcRW/Ok+hH0/X5gpF Tx9T5QhQ==; Received: from hch by casper.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1lwJ32-00GGVd-KS; Thu, 24 Jun 2021 06:41:22 +0000 Date: Thu, 24 Jun 2021 07:41:12 +0100 From: Christoph Hellwig To: Matthew Wilcox Cc: Omar Sandoval , Al Viro , Linus Torvalds , Dave Chinner , linux-fsdevel , linux-btrfs , Linux API , Kernel Team , Dave Chinner Subject: Re: [PATCH RESEND x3 v9 1/9] iov_iter: add copy_struct_from_iter() Message-ID: References: <20210622220639.GH2419729@dread.disaster.area> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org I'm also really worried with overloading the regular r/w path and iov_iter with ever more special cases. We already have various performance problems in the path, and adding more special cases ain't gonna help.