All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] btrfs: fix zstd compression parameter
@ 2019-03-13  5:36 Anand Jain
  2019-03-13  5:36 ` [PATCH 2/2] btrfs: fix vanished compression property after failed set Anand Jain
  2019-03-13  7:19 ` [PATCH 1/2] btrfs: fix zstd compression parameter Nikolay Borisov
  0 siblings, 2 replies; 12+ messages in thread
From: Anand Jain @ 2019-03-13  5:36 UTC (permalink / raw)
  To: linux-btrfs

We let to pass zstd compression parameter even if its not fully written.
For example:
  btrfs prop set /btrfs compression zst
  btrfs prop get /btrfs compression
     compression=zst

zlib and lzo are fine.

Fix it by using the expected number of char in strncmp().

Signed-off-by: Anand Jain <anand.jain@oracle.com>
---
 fs/btrfs/props.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/btrfs/props.c b/fs/btrfs/props.c
index 8577ea1d4e2b..ef6502a94712 100644
--- a/fs/btrfs/props.c
+++ b/fs/btrfs/props.c
@@ -306,7 +306,7 @@ static int prop_compression_apply(struct inode *inode, const char *value,
 		btrfs_set_fs_incompat(fs_info, COMPRESS_LZO);
 	} else if (!strncmp("zlib", value, 4)) {
 		type = BTRFS_COMPRESS_ZLIB;
-	} else if (!strncmp("zstd", value, len)) {
+	} else if (!strncmp("zstd", value, 4)) {
 		type = BTRFS_COMPRESS_ZSTD;
 		btrfs_set_fs_incompat(fs_info, COMPRESS_ZSTD);
 	} else {
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2019-03-14  1:40 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-13  5:36 [PATCH 1/2] btrfs: fix zstd compression parameter Anand Jain
2019-03-13  5:36 ` [PATCH 2/2] btrfs: fix vanished compression property after failed set Anand Jain
2019-03-13  7:20   ` Nikolay Borisov
2019-03-13  7:22     ` Nikolay Borisov
2019-03-13  8:49       ` Anand Jain
2019-03-13 17:39         ` David Sterba
2019-03-13 10:33   ` Anand Jain
2019-03-13 10:49     ` Anand Jain
2019-03-13 17:42       ` David Sterba
2019-03-13 17:45     ` David Sterba
2019-03-14  1:40       ` Anand Jain
2019-03-13  7:19 ` [PATCH 1/2] btrfs: fix zstd compression parameter Nikolay Borisov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.