diff options
-rw-r--r-- | fs/fscache/cookie.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/fs/fscache/cookie.c b/fs/fscache/cookie.c index b52f1dcd5dea..c550512ce335 100644 --- a/fs/fscache/cookie.c +++ b/fs/fscache/cookie.c | |||
@@ -70,7 +70,7 @@ void fscache_free_cookie(struct fscache_cookie *cookie) | |||
70 | } | 70 | } |
71 | 71 | ||
72 | /* | 72 | /* |
73 | * Set the index key in a cookie. The cookie struct has space for a 12-byte | 73 | * Set the index key in a cookie. The cookie struct has space for a 16-byte |
74 | * key plus length and hash, but if that's not big enough, it's instead a | 74 | * key plus length and hash, but if that's not big enough, it's instead a |
75 | * pointer to a buffer containing 3 bytes of hash, 1 byte of length and then | 75 | * pointer to a buffer containing 3 bytes of hash, 1 byte of length and then |
76 | * the key data. | 76 | * the key data. |
@@ -80,10 +80,13 @@ static int fscache_set_key(struct fscache_cookie *cookie, | |||
80 | { | 80 | { |
81 | unsigned long long h; | 81 | unsigned long long h; |
82 | u32 *buf; | 82 | u32 *buf; |
83 | int bufs; | ||
83 | int i; | 84 | int i; |
84 | 85 | ||
86 | bufs = DIV_ROUND_UP(index_key_len, sizeof(*buf)); | ||
87 | |||
85 | if (index_key_len > sizeof(cookie->inline_key)) { | 88 | if (index_key_len > sizeof(cookie->inline_key)) { |
86 | buf = kzalloc(index_key_len, GFP_KERNEL); | 89 | buf = kcalloc(bufs, sizeof(*buf), GFP_KERNEL); |
87 | if (!buf) | 90 | if (!buf) |
88 | return -ENOMEM; | 91 | return -ENOMEM; |
89 | cookie->key = buf; | 92 | cookie->key = buf; |
@@ -98,7 +101,8 @@ static int fscache_set_key(struct fscache_cookie *cookie, | |||
98 | */ | 101 | */ |
99 | h = (unsigned long)cookie->parent; | 102 | h = (unsigned long)cookie->parent; |
100 | h += index_key_len + cookie->type; | 103 | h += index_key_len + cookie->type; |
101 | for (i = 0; i < (index_key_len + sizeof(u32) - 1) / sizeof(u32); i++) | 104 | |
105 | for (i = 0; i < bufs; i++) | ||
102 | h += buf[i]; | 106 | h += buf[i]; |
103 | 107 | ||
104 | cookie->key_hash = h ^ (h >> 32); | 108 | cookie->key_hash = h ^ (h >> 32); |