OSDN Git Service

Btrfs: lzo: fix typo in error message after failed deflate
authorTimofey Titovets <nefelim4ag@gmail.com>
Thu, 25 May 2017 18:12:19 +0000 (21:12 +0300)
committerDavid Sterba <dsterba@suse.com>
Mon, 19 Jun 2017 16:26:01 +0000 (18:26 +0200)
Fix copy paste typo in debug message for lzo.c, lzo is not deflate.

Signed-off-by: Timofey Titovets <nefelim4ag@gmail.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/lzo.c

index 5995563..a554856 100644 (file)
@@ -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;