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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham 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 8A471C3A5A2 for ; Fri, 20 Sep 2019 21:31:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5ED7E2080F for ; Fri, 20 Sep 2019 21:31:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1569015082; bh=oTUYbLrG6Vu8sjSve+NxU8IwPYokjqHXVSHgKbyi51k=; h=From:To:Subject:Date:In-Reply-To:References:List-ID:From; b=0r5LW4w3k+Hj522GwDO3xlkOhHSIYbNlNTPlRSDN3anPIpwG+NHtrPrbn41zIaUcf pQlgjMrRpgWA8t1HoasbiW8ke/52i6MehVriPXa41MCkGnsIc+aoGLGUpCea1HVi4i fDQOKtrad1S0k6HT90bLtgQLJtJ7fHzyvEhUWi8c= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2389932AbfITVbV (ORCPT ); Fri, 20 Sep 2019 17:31:21 -0400 Received: from mail.kernel.org ([198.145.29.99]:39378 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2389460AbfITVbV (ORCPT ); Fri, 20 Sep 2019 17:31:21 -0400 Received: from ebiggers-linuxstation.mtv.corp.google.com (unknown [104.132.1.77]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 32ED2208C3 for ; Fri, 20 Sep 2019 21:31:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1569015081; bh=oTUYbLrG6Vu8sjSve+NxU8IwPYokjqHXVSHgKbyi51k=; h=From:To:Subject:Date:In-Reply-To:References:From; b=d1dJQJ7fInPHthnJkEFkqizCIAPIyCYtjMZesOQPDcRWJoz5Se9aPm7drw0iA1yX5 Rf87bDhD2dTro7KIylAXNOx4DzIPeLJhU73IN19uY84iXWphbsCryzcsgPjueDRnIX 8E7EQPiZiVd/x2Ty+UQGIfFqqysMIEAI3gBsRHZg= From: Eric Biggers To: linux-ext4@vger.kernel.org Subject: [PATCH 6/6] tune2fs.8: tweak the documentation for the encrypt feature Date: Fri, 20 Sep 2019 14:29:54 -0700 Message-Id: <20190920212954.205789-7-ebiggers@kernel.org> X-Mailer: git-send-email 2.23.0.351.gc4317032e6-goog In-Reply-To: <20190920212954.205789-1-ebiggers@kernel.org> References: <20190920212954.205789-1-ebiggers@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Eric Biggers Try to make it clearer that enabling 'encrypt' just enables *support* for encryption; it doesn't actually encrypt anything by itself. Signed-off-by: Eric Biggers --- misc/tune2fs.8.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tune2fs.8.in b/misc/tune2fs.8.in index f7c7d42d..74eebb6a 100644 --- a/misc/tune2fs.8.in +++ b/misc/tune2fs.8.in @@ -550,7 +550,7 @@ extended attributes per file. currently only supports setting this filesystem feature. .TP .B encrypt -Enable file system level encryption. +Enable support for file system level encryption. .B Tune2fs currently only supports setting this filesystem feature. .TP -- 2.23.0.351.gc4317032e6-goog