Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363367
b: refs/heads/master
c: aeac64a
h: refs/heads/master
i:
  363365: ca35d5d
  363363: cde9939
  363359: 5d98929
v: v3
  • Loading branch information
Chen Gang authored and Greg Kroah-Hartman committed Mar 11, 2013
1 parent 7753c60 commit 0ede5f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b6dd012efc8c785f8dc2441ae21ae48561788821
refs/heads/master: aeac64aac538fde7c11038fc6dd2ef4bec4c39a7
3 changes: 2 additions & 1 deletion trunk/drivers/staging/zcache/zcache-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/types.h>
#include <linux/string.h>
#include <linux/atomic.h>
#include <linux/math64.h>
#include <linux/crypto.h>
Expand Down Expand Up @@ -1688,7 +1689,7 @@ __setup("nocleancacheignorenonactive", no_cleancache_ignore_nonactive);

static int __init enable_zcache_compressor(char *s)
{
strncpy(zcache_comp_name, s, ZCACHE_COMP_NAME_SZ);
strlcpy(zcache_comp_name, s, sizeof(zcache_comp_name));
zcache_enabled = true;
return 1;
}
Expand Down

0 comments on commit 0ede5f6

Please sign in to comment.