From: Timofey Titovets Date: Thu, 25 May 2017 18:12:19 +0000 (+0300) Subject: Btrfs: lzo: fix typo in error message after failed deflate X-Git-Tag: v4.14-rc1~373^2~82 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=036b0217ade892066dcab6afc5de22b6791ef0ef;p=platform%2Fkernel%2Flinux-rpi.git Btrfs: lzo: fix typo in error message after failed deflate Fix copy paste typo in debug message for lzo.c, lzo is not deflate. Signed-off-by: Timofey Titovets Signed-off-by: David Sterba --- diff --git a/fs/btrfs/lzo.c b/fs/btrfs/lzo.c index 5995563..a554856 100644 --- a/fs/btrfs/lzo.c +++ b/fs/btrfs/lzo.c @@ -142,7 +142,7 @@ static int lzo_compress_pages(struct list_head *ws, ret = lzo1x_1_compress(data_in, in_len, workspace->cbuf, &out_len, workspace->mem); if (ret != LZO_E_OK) { - pr_debug("BTRFS: deflate in loop returned %d\n", + pr_debug("BTRFS: lzo in loop returned %d\n", ret); ret = -EIO; goto out;