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=-4.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,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 C984AC2D0A3 for ; Mon, 9 Nov 2020 22:50:39 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8C648206CB for ; Mon, 9 Nov 2020 22:50:39 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="x/RoupRN" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729785AbgKIWuf (ORCPT ); Mon, 9 Nov 2020 17:50:35 -0500 Received: from mail.kernel.org ([198.145.29.99]:60396 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729451AbgKIWuf (ORCPT ); Mon, 9 Nov 2020 17:50:35 -0500 Received: from gmail.com (unknown [104.132.1.84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 28674206C0; Mon, 9 Nov 2020 22:50:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604962234; bh=3zCrnmiSy4pI28U8wV8PlYqpeE16yEzdnAVoONyzohs=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=x/RoupRNbJK1Pi4mHAwErVHXP/WENGRJgQMMxq9le7k+nzQ6OMr3Ik9Tg6nhy36C1 yFvZiu/Ji96oaWBRhoIDdUt+aBI3y0PNOh3QbRN0uliX4vy/xne5YwHqkCQB5XM4I4 qxla2lpMXWy+XbxUgITCAREeyY8g3BQp6Zc+EBOk= Date: Mon, 9 Nov 2020 14:50:32 -0800 From: Eric Biggers To: Daniel Rosenberg Cc: "Theodore Y . Ts'o" , Jaegeuk Kim , Andreas Dilger , Chao Yu , Alexander Viro , Richard Weinberger , linux-fscrypt@vger.kernel.org, linux-ext4@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-mtd@lists.infradead.org, Gabriel Krisman Bertazi , kernel-team@android.com Subject: Re: [PATCH 0/5] Add support for Encryption and Casefolding in F2FS Message-ID: <20201109225032.GA2652236@gmail.com> References: <20200923010151.69506-1-drosen@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200923010151.69506-1-drosen@google.com> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Wed, Sep 23, 2020 at 01:01:46AM +0000, Daniel Rosenberg wrote: > These patches are on top of the f2fs dev branch > > F2FS currently supports casefolding and encryption, but not at > the same time. These patches aim to rectify that. In a later follow up, > this will be added for Ext4 as well. I've included one ext4 patch from > the previous set since it isn't in the f2fs branch, but is needed for the > fscrypt changes. > > The f2fs-tools changes have already been applied. > > Since both fscrypt and casefolding require their own dentry operations, > I've moved the responsibility of setting the dentry operations from fscrypt > to the filesystems and provided helper functions that should work for most > cases. > > These are a follow-up to the previously sent patch set > "[PATCH v12 0/4] Prepare for upcoming Casefolding/Encryption patches" > > Daniel Rosenberg (5): > ext4: Use generic casefolding support > fscrypt: Export fscrypt_d_revalidate > libfs: Add generic function for setting dentry_ops > fscrypt: Have filesystems handle their d_ops > f2fs: Handle casefolding with Encryption Daniel, can you resend this for 5.11, with all remaining comments addressed? The first two patches made 5.10, but the others didn't. - Eric