Commit 10d9dcf6 authored by Kent Overstreet's avatar Kent Overstreet

bcache: Fix moving_pred()

Avoid a potential null pointer deref (e.g. from check keys for cache misses)
Signed-off-by: default avatarKent Overstreet <kmo@daterainc.com>
parent da415a09
......@@ -24,12 +24,10 @@ static bool moving_pred(struct keybuf *buf, struct bkey *k)
moving_gc_keys);
unsigned i;
for (i = 0; i < KEY_PTRS(k); i++) {
struct bucket *g = PTR_BUCKET(c, k, i);
if (GC_MOVE(g))
for (i = 0; i < KEY_PTRS(k); i++)
if (ptr_available(c, k, i) &&
GC_MOVE(PTR_BUCKET(c, k, i)))
return true;
}
return false;
}
......
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