Received: by 2002:a05:6a10:f347:0:0:0:0 with SMTP id d7csp4638307pxu; Thu, 10 Dec 2020 01:26:47 -0800 (PST) X-Google-Smtp-Source: ABdhPJxoYGpesr4QTKLTZ0k8kz+KJLBrKgUBZy0s64DrntxTWeDdTihagtm3sWVheRExgxWkkE4q X-Received: by 2002:a50:ff05:: with SMTP id a5mr5811033edu.43.1607592407724; Thu, 10 Dec 2020 01:26:47 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1607592407; cv=none; d=google.com; s=arc-20160816; b=oEXf71SzPtByVW0L2Lpcvis7XqSg8y39+ASBuE9ucEzclR70nIwxyR4N9IXKGdqE9H OfwZ61Vb2fXmEiLAWrJxaEBrlKyMM0VCKQTgYOyLTrrAff+f5GZqRtvqVrhAW7ZzcbVL oq1gJrnsz31GHiYmeVG7/sFeg/dynGKIfdExCjStJdESLgXr++sYM/5ltTphzsC7r+Wk O0xNMIw53q3g1w7Oy+X0zGT+2l+XQ3n3Qh27eZ0s6RHp3/PTiKlyOu+2YXn3XkThor+W nnm8umLQpcq1b2Vh9rXI0f9R8g39kWqz0X2YYnChPiSAiOUCMpMuFcziJukDeLYI7pPo h1zw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=ljOGx+43D4+GhBOESTCLgih0o2QhMYHESC3eyJnO6e8=; b=wSxV+fqEwLyb/n25yYi/H4yRHcmC+VgKvHTCS6SMI4CAkqS2JUd3+biunYEWGNlOEo QyTUFad+7UzxwhqavXT406UpKWp0pX92iw4C2Qi/iY563uCm22XRU/6Ez5nZeDMlXDj0 /67ImF/Vn+LBjRhx638WMd4UZdI5OUQTeb7/rRWvn36uddDcWqX+PwzDvx879P0ws3nw Kfhwm848SIrjKpf4aNnQgVBXmVbvRb/o21niIhNmIyegqmpJVgH6hbLLJxEp/9JOgRli yon60LrIZuKXOl8qDDs7tvYQjh87YZFd97zweadAZmUDrOtJInHRkP6viVTu1fF1zv8E tuRg== 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 b6si2501452edn.50.2020.12.10.01.26.23; Thu, 10 Dec 2020 01:26:47 -0800 (PST) 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 S1732218AbgLJJVl (ORCPT + 99 others); Thu, 10 Dec 2020 04:21:41 -0500 Received: from szxga06-in.huawei.com ([45.249.212.32]:8976 "EHLO szxga06-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729990AbgLJJVa (ORCPT ); Thu, 10 Dec 2020 04:21:30 -0500 Received: from DGGEMS403-HUB.china.huawei.com (unknown [172.30.72.58]) by szxga06-in.huawei.com (SkyGuard) with ESMTP id 4Cs7g9024CzhqBR; Thu, 10 Dec 2020 17:20:21 +0800 (CST) Received: from szvp000203569.huawei.com (10.120.216.130) by DGGEMS403-HUB.china.huawei.com (10.3.19.203) with Microsoft SMTP Server id 14.3.487.0; Thu, 10 Dec 2020 17:20:36 +0800 From: Chao Yu To: CC: , , , Chao Yu Subject: [PATCH RFC] f2fs: compress: add compress_flag in struct f2fs_comp_option Date: Thu, 10 Dec 2020 17:20:20 +0800 Message-ID: <20201210092020.66245-1-yuchao0@huawei.com> X-Mailer: git-send-email 2.29.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 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add a extra field compress_flag to get/set more compress option from/to compressed inode. Signed-off-by: Chao Yu --- Daeho, Jaegeuk, Could you please check whether we could add this new field to struct f2fs_comp_option? so we can expand to allow user to query/config more options of compressed inode via new ioctl. It needs to consider before original patches goes to merge window, let me know you have other concerns. fs/f2fs/file.c | 1 + include/uapi/linux/f2fs.h | 1 + 2 files changed, 2 insertions(+) diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 16ea10f2bcf5..fbf06311c88d 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -3965,6 +3965,7 @@ static int f2fs_ioc_get_compress_option(struct file *filp, unsigned long arg) option.algorithm = F2FS_I(inode)->i_compress_algorithm; option.log_cluster_size = F2FS_I(inode)->i_log_cluster_size; + option.compress_flag = F2FS_I(inode)->i_compress_flag; inode_unlock_shared(inode); diff --git a/include/uapi/linux/f2fs.h b/include/uapi/linux/f2fs.h index 352a822d4370..2b9c4c99ceee 100644 --- a/include/uapi/linux/f2fs.h +++ b/include/uapi/linux/f2fs.h @@ -93,6 +93,7 @@ struct f2fs_sectrim_range { struct f2fs_comp_option { __u8 algorithm; __u8 log_cluster_size; + __u16 compress_flag; }; #endif /* _UAPI_LINUX_F2FS_H */ -- 2.29.2