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 82174C6FD1C for ; Thu, 23 Mar 2023 14:37:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231562AbjCWOhy (ORCPT ); Thu, 23 Mar 2023 10:37:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35016 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231520AbjCWOhx (ORCPT ); Thu, 23 Mar 2023 10:37:53 -0400 Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D167B211E9 for ; Thu, 23 Mar 2023 07:37:52 -0700 (PDT) Received: from cwcc.thunk.org (pool-173-48-120-46.bstnma.fios.verizon.net [173.48.120.46]) (authenticated bits=0) (User authenticated as tytso@ATHENA.MIT.EDU) by outgoing.mit.edu (8.14.7/8.12.4) with ESMTP id 32NEbYI4012741 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Thu, 23 Mar 2023 10:37:35 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mit.edu; s=outgoing; t=1679582256; bh=mFMJqLcjrnAL8JljGxhBhN4umzSGhKk2guyVXCBOPcw=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=QU753MeneCiMKiUaxD2SVGtaiTPUast8Iy+eVbGI/zd7Xn7/UyBda8Q9N1+XDIqKK 1TlpuOc0h2DttAII4hn/Tf+/mOFTyq51cT3CtOgLt4qqyxJIbsdHGDI15cFPabPCcV YtfscSmSgI8ZKxgKNx38VZYX0NO6/4ecDtphjOxOZPn/3lJBWu2Nhn/QsfS20A/MA0 scOkceHzQBQ9Do1rsLBMItUlmwBHCgJKwMfqnEAD6z4yP2CODTkAtZSWOw8JEcoN2I xboNsLpu3jw7f7t6vsS69p20vliCL9y+nDvFsDdPYLEe2X/x3hlTC8BHabhvK1Rxuu UmRWma7CYmSKQ== Received: by cwcc.thunk.org (Postfix, from userid 15806) id A11F915C4279; Thu, 23 Mar 2023 10:37:34 -0400 (EDT) Date: Thu, 23 Mar 2023 10:37:34 -0400 From: "Theodore Ts'o" To: Gabriel Krisman Bertazi Cc: viro@zeniv.linux.org.uk, jaegeuk@kernel.org, ebiggers@kernel.org, linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, kernel@collabora.com Subject: Re: [PATCH 4/7] libfs: Support revalidation of encrypted case-insensitive dentries Message-ID: <20230323143734.GF136146@mit.edu> References: <20220622194603.102655-1-krisman@collabora.com> <20220622194603.102655-5-krisman@collabora.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220622194603.102655-5-krisman@collabora.com> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Wed, Jun 22, 2022 at 03:46:00PM -0400, Gabriel Krisman Bertazi wrote: > Preserve the existing behavior for encrypted directories, by rejecting > negative dentries of encrypted+casefolded directories. This allows > generic_ci_d_revalidate to be used by filesystems with both features > enabled, as long as the directory is either casefolded or encrypted, but > not both at the same time. > > Signed-off-by: Gabriel Krisman Bertazi Reviewed-by: Theodore Ts'o