Commit 8e094808 authored by Slava Pestov's avatar Slava Pestov Committed by Kent Overstreet

bcache: fix typo in bch_bkey_equal_header

Signed-off-by: default avatarKent Overstreet <kmo@daterainc.com>
parent 501d52a9
......@@ -453,7 +453,7 @@ static inline bool bch_bkey_equal_header(const struct bkey *l,
{
return (KEY_DIRTY(l) == KEY_DIRTY(r) &&
KEY_PTRS(l) == KEY_PTRS(r) &&
KEY_CSUM(l) == KEY_CSUM(l));
KEY_CSUM(l) == KEY_CSUM(r));
}
/* Keylists */
......
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