From: David Sterba Date: Tue, 31 Oct 2017 16:55:14 +0000 (+0100) Subject: btrfs: prop: use common helper for type to string conversion X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=802a5c69584a0e48ab9797e743fb087c7b56a264;p=linux.git btrfs: prop: use common helper for type to string conversion Use the helper for conversion, keep the semantics. Signed-off-by: David Sterba --- diff --git a/fs/btrfs/props.c b/fs/btrfs/props.c index c39a940d0c75c..b30a056963ab9 100644 --- a/fs/btrfs/props.c +++ b/fs/btrfs/props.c @@ -423,11 +423,11 @@ static const char *prop_compression_extract(struct inode *inode) { switch (BTRFS_I(inode)->prop_compress) { case BTRFS_COMPRESS_ZLIB: - return "zlib"; case BTRFS_COMPRESS_LZO: - return "lzo"; case BTRFS_COMPRESS_ZSTD: - return "zstd"; + return btrfs_compress_type2str(BTRFS_I(inode)->prop_compress); + default: + break; } return NULL;