Commit 0428fec3 authored by Seth Jennings's avatar Seth Jennings Committed by Greg Kroah-Hartman

staging: zcache: fix typos

The patch fixes two typos in zcache-main.c
Signed-off-by: default avatarSeth Jennings <sjenning@linux.vnet.ibm.com>
Acked-by: default avatarDan Magenheimer <dan.magenheimer@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent dbe82eb1
...@@ -651,7 +651,7 @@ static unsigned int zv_max_zsize = (PAGE_SIZE / 8) * 7; ...@@ -651,7 +651,7 @@ static unsigned int zv_max_zsize = (PAGE_SIZE / 8) * 7;
/* /*
* byte count defining poor *mean* compression; pages with greater zsize * byte count defining poor *mean* compression; pages with greater zsize
* will be rejected until sufficient better-compressed pages are accepted * will be rejected until sufficient better-compressed pages are accepted
* driving the man below this threshold * driving the mean below this threshold
*/ */
static unsigned int zv_max_mean_zsize = (PAGE_SIZE / 8) * 5; static unsigned int zv_max_mean_zsize = (PAGE_SIZE / 8) * 5;
...@@ -1993,7 +1993,7 @@ static int __init zcache_init(void) ...@@ -1993,7 +1993,7 @@ static int __init zcache_init(void)
pr_info("zcache: frontswap enabled using kernel " pr_info("zcache: frontswap enabled using kernel "
"transcendent memory and xvmalloc\n"); "transcendent memory and xvmalloc\n");
if (old_ops.init != NULL) if (old_ops.init != NULL)
pr_warning("ktmem: frontswap_ops overridden"); pr_warning("zcache: frontswap_ops overridden");
} }
#endif #endif
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment