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=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,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 8B0A0C2D0E7 for ; Thu, 26 Mar 2020 05:56:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 59C112082D for ; Thu, 26 Mar 2020 05:56:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585202180; bh=ATsxY27fqQuQAI7c5hIv+v4pUdmY3NseQLX7Nb2vjfI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=gTNsLwzUQOvjaiVTu7pGeOmZS2TKzBNDhRZDwgzkLx7OJ+8Z2H3nVsGsqSVMPN4t1 K8tse2QkhkL4rlY2lFhmTD8McPhNFLmFlvqBDsPFz0DCCJNFZUiv6ubZP09GNCAvxv owTvQWiew9jCoKsYVWTULTfuow4xOHbj+HI+C2cA= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726260AbgCZF4T (ORCPT ); Thu, 26 Mar 2020 01:56:19 -0400 Received: from mail.kernel.org ([198.145.29.99]:47524 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725854AbgCZF4T (ORCPT ); Thu, 26 Mar 2020 01:56:19 -0400 Received: from sol.localdomain (c-107-3-166-239.hsd1.ca.comcast.net [107.3.166.239]) (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 4C98920714; Thu, 26 Mar 2020 05:56:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1585202178; bh=ATsxY27fqQuQAI7c5hIv+v4pUdmY3NseQLX7Nb2vjfI=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=lYYFXha9KLXOhGV4x2KO5Hzc2nlRhlHHCX7KSPizJ8F/8LZdYDamEppBP3VlprQkI MAJV9Q+fDLJaK0sQoX6QSzvTur+PZV3b49/KpV+xs7C+WuUScJb+LbId40apf4wgr8 x/ztoxWczB5S8sz/ZCrQZRipZ6K2nAtHpHqKSfSQ= Date: Wed, 25 Mar 2020 22:56:16 -0700 From: Eric Biggers To: Satya Tangirala Cc: linux-block@vger.kernel.org, linux-scsi@vger.kernel.org, linux-fscrypt@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, linux-ext4@vger.kernel.org, Barani Muthukumaran , Kuohong Wang , Kim Boojin Subject: Re: [PATCH v9 08/11] fs: introduce SB_INLINECRYPT Message-ID: <20200326055616.GE858@sol.localdomain> References: <20200326030702.223233-1-satyat@google.com> <20200326030702.223233-9-satyat@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200326030702.223233-9-satyat@google.com> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org On Wed, Mar 25, 2020 at 08:06:59PM -0700, Satya Tangirala wrote: > Introduce SB_INLINECRYPT, which is set by filesystems that wish to use > blk-crypto for file content en/decryption. > > Signed-off-by: Satya Tangirala This commit message could use a better explanation. E.g. this flag maps to the '-o inlinecrypt' mount option which multiple filesystems will implement, and code in fs/crypto/ needs to be able to check for this mount option in a filesystem-independent way. - Eric