Received: by 2002:a05:6902:102b:0:0:0:0 with SMTP id x11csp131260ybt; Thu, 18 Jun 2020 20:39:35 -0700 (PDT) X-Google-Smtp-Source: ABdhPJy5lM9p9HZOJbzlh3lOufpUlE1CawQ1wg2pcARJvon4N3jmaUa1LZ2h94Bg+EIXP9G/YrhO X-Received: by 2002:a05:6402:1d10:: with SMTP id dg16mr1250127edb.309.1592537975604; Thu, 18 Jun 2020 20:39:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1592537975; cv=none; d=google.com; s=arc-20160816; b=nMg4dcEQUbWhX19jq2wiFGOgZ3egbpwtZyNs4gyzH4oBcaVExWCFDmSaMN8WIl3Y/S tEwwNsrzTBVAFScdhnndAvxskeBr5Eb3Zke542+pY/DOWARba8+5SdAVz+ssEzt1ucH3 zMKH3qbbUXAT0++h2qUqpI1VNa+EjnKRhbWcdX3ru+JKt7nMx75HRqAZ0pcish4Jdd4D i2D4XXC9njFXpI0DZXga3+Jo8F+Vv4FYIu2ilWKceLx9zPx+WWeVESSpRKskEKHUgLVM sJKD3tnOt4MT4eDAABHd5WEvAWpgU7+kTK1RdSp0kdTP+lAj9E/UQJImrcN/1c/xXnto Tr8A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=fV/5+NpcCsKqglUr2Ejb0jT3pFORmzbo10ntol7tVXg=; b=vggt4JnK72auvqUrB/s2d8y189IrpRQrLXd1mj0qgMPh43C/OZeaxop4rWTNqKjZPu pbCxAx4TP9dgt7F9j0NNDcYF8cAgDqT5QD64iXctPcRiLaOVtfkQ3pff0cvXy9a96rNh VPQC1cj/UvnjzQjnCaclh34FMAYzs9eN/VgAV6JDeNwofMgubMDX5XP6vfGLxzpaAPQJ QxiBYPiGI5EE6SUinQRziumcBy9pwq3H6LPoSKMWAM/urCqTFd/dtfiRjdC3oE9VqcnQ rEnOztt/wa9kCRk2j0lvEwWQGAfxrS3REAkLVZNStt/DXMen5YEKbEaffA7aWfYPwj5G JBgA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id gq24si3127246ejb.55.2020.06.18.20.39.13; Thu, 18 Jun 2020 20:39:35 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730545AbgFSDUp (ORCPT + 99 others); Thu, 18 Jun 2020 23:20:45 -0400 Received: from szxga05-in.huawei.com ([45.249.212.191]:6286 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726196AbgFSDUp (ORCPT ); Thu, 18 Jun 2020 23:20:45 -0400 Received: from DGGEMS409-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id 967527602E7B5BB0B482; Fri, 19 Jun 2020 11:20:42 +0800 (CST) Received: from szvp000203569.huawei.com (10.120.216.130) by DGGEMS409-HUB.china.huawei.com (10.3.19.209) with Microsoft SMTP Server id 14.3.487.0; Fri, 19 Jun 2020 11:20:36 +0800 From: Chao Yu To: CC: , , , Chao Yu Subject: [PATCH] f2fs: fix to document reserved special compression extension Date: Fri, 19 Jun 2020 11:20:28 +0800 Message-ID: <20200619032028.128668-1-yuchao0@huawei.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.120.216.130] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There is one reserved special compression extension: '*', which could be set via 'compress_extension="*"' mount option to enable compression for all files. Signed-off-by: Chao Yu --- Documentation/filesystems/f2fs.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/filesystems/f2fs.rst b/Documentation/filesystems/f2fs.rst index 099d45ac8d8f..535021c46260 100644 --- a/Documentation/filesystems/f2fs.rst +++ b/Documentation/filesystems/f2fs.rst @@ -258,6 +258,8 @@ compress_extension=%s Support adding specified extension, so that f2fs can enab on compression extension list and enable compression on these file by default rather than to enable it via ioctl. For other files, we can still enable compression via ioctl. + Note that, there is one reserved special extension '*', it + can be set to enable compression for all files. ====================== ============================================================ Debugfs Entries -- 2.26.2