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.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS 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 A88EAC433E6 for ; Wed, 3 Feb 2021 13:06:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 705EB64F8D for ; Wed, 3 Feb 2021 13:06:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231335AbhBCNGI (ORCPT ); Wed, 3 Feb 2021 08:06:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37182 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229797AbhBCNGE (ORCPT ); Wed, 3 Feb 2021 08:06:04 -0500 Received: from casper.infradead.org (casper.infradead.org [IPv6:2001:8b0:10b:1236::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 128FBC06178C; Wed, 3 Feb 2021 05:05:11 -0800 (PST) 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=Z+rMXPwnMv2uKjTcYlIREsImSSruLhtFxYFu3h8+JbY=; b=RtF7ds9jgELiLC7ZG6AHd/X98U kgtFNnZ6Rfs6g53b4tStqbKMuLV42A0Lz5bW2ifMSy7Vt40KFuYnyCgtZaXhTy0LcBNmnpPWHl3Pm xfe5ApNaVeu2f/oMM7IMF5/pkNwCcvniDA++7Oyhzl7oYLBpHZLXA1zvCnHH7b8z5WUnHxrepixhZ g9Y0tTJj4kl2SawJFxaFHVXlNvR0nZ09DrroWdI/anfQYT59YN+ZC+WZaWi9p85zHJwaeLsScaXua CwOmtval6imFgaK0wGJB9DUk+mai67woV98u5UQHVSyM9kuF7yXy3tjMwLME98ZcGOOMmjVqfYTzd Hky0NHeA==; Received: from willy by casper.infradead.org with local (Exim 4.94 #2 (Red Hat Linux)) id 1l7Hq9-00GtiD-FF; Wed, 03 Feb 2021 13:05:03 +0000 Date: Wed, 3 Feb 2021 13:05:01 +0000 From: Matthew Wilcox To: Miklos Szeredi Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Al Viro , Andreas Dilger , Andreas Gruenbacher , Christoph Hellwig , "Darrick J . Wong" , Dave Kleikamp , David Sterba , Jaegeuk Kim , Jan Kara , Joel Becker , Matthew Garrett , Mike Marshall , Richard Weinberger , Ryusuke Konishi , Theodore Ts'o , Tyler Hicks Subject: Re: [PATCH 00/18] new API for FS_IOC_[GS]ETFLAGS/FS_IOC_FS[GS]ETXATTR Message-ID: <20210203130501.GY308988@casper.infradead.org> References: <20210203124112.1182614-1-mszeredi@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210203124112.1182614-1-mszeredi@redhat.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Feb 03, 2021 at 01:40:54PM +0100, Miklos Szeredi wrote: > This series adds the infrastructure and conversion of filesystems to the > new API. > > Two filesystems are not converted: FUSE and CIFS, as they behave > differently from local filesystems (use the file pointer, don't perform > permission checks). It's likely that these two can be supported with minor > changes to the API, but this requires more thought. Why not change the API now? ie pass the file instead of the dentry?