From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cn.fujitsu.com ([222.73.24.84]:47035 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1758153AbcCVBiw (ORCPT ); Mon, 21 Mar 2016 21:38:52 -0400 From: Qu Wenruo To: linux-btrfs@vger.kernel.org Cc: Wang Xiaoguang Subject: [PATCH v8 17/27] btrfs: dedupe: add a property handler for online dedupe Date: Tue, 22 Mar 2016 09:35:42 +0800 Message-Id: <1458610552-9845-18-git-send-email-quwenruo@cn.fujitsu.com> In-Reply-To: <1458610552-9845-1-git-send-email-quwenruo@cn.fujitsu.com> References: <1458610552-9845-1-git-send-email-quwenruo@cn.fujitsu.com> MIME-Version: 1.0 Sender: linux-btrfs-owner@vger.kernel.org List-ID: From: Wang Xiaoguang We use btrfs extended attribute "btrfs.dedupe" to record per-file online dedupe status, so add a dedupe property handler. Signed-off-by: Wang Xiaoguang --- fs/btrfs/props.c | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/fs/btrfs/props.c b/fs/btrfs/props.c index 3699212..a430886 100644 --- a/fs/btrfs/props.c +++ b/fs/btrfs/props.c @@ -42,6 +42,11 @@ static int prop_compression_apply(struct inode *inode, size_t len); static const char *prop_compression_extract(struct inode *inode); +static int prop_dedupe_validate(const char *value, size_t len); +static int prop_dedupe_apply(struct inode *inode, const char *value, + size_t len); +static const char *prop_dedupe_extract(struct inode *inode); + static struct prop_handler prop_handlers[] = { { .xattr_name = XATTR_BTRFS_PREFIX "compression", @@ -50,6 +55,13 @@ static struct prop_handler prop_handlers[] = { .extract = prop_compression_extract, .inheritable = 1 }, + { + .xattr_name = XATTR_BTRFS_PREFIX "dedupe", + .validate = prop_dedupe_validate, + .apply = prop_dedupe_apply, + .extract = prop_dedupe_extract, + .inheritable = 1 + }, }; void __init btrfs_props_init(void) @@ -426,4 +438,33 @@ static const char *prop_compression_extract(struct inode *inode) return NULL; } +static int prop_dedupe_validate(const char *value, size_t len) +{ + if (!strncmp("disable", value, len)) + return 0; + + return -EINVAL; +} + +static int prop_dedupe_apply(struct inode *inode, const char *value, size_t len) +{ + if (len == 0) { + BTRFS_I(inode)->flags &= ~BTRFS_INODE_NODEDUPE; + return 0; + } + + if (!strncmp("disable", value, len)) { + BTRFS_I(inode)->flags |= BTRFS_INODE_NODEDUPE; + return 0; + } + + return -EINVAL; +} + +static const char *prop_dedupe_extract(struct inode *inode) +{ + if (BTRFS_I(inode)->flags & BTRFS_INODE_NODEDUPE) + return "disable"; + return NULL; +} -- 2.7.3