diff options
author | Kent Overstreet <kmo@daterainc.com> | 2013-07-25 04:26:51 +0400 |
---|---|---|
committer | Kent Overstreet <kmo@daterainc.com> | 2013-11-11 09:56:02 +0400 |
commit | 0b93207abb40d3c42bb83eba1e1e7edc1da77810 (patch) | |
tree | eeca92af43a3d2413dc0a425f5cb71cfd4cad764 /drivers/md/bcache/btree.h | |
parent | a34a8bfd4e6358c646928320d37b0425c0762f8a (diff) | |
download | linux-0b93207abb40d3c42bb83eba1e1e7edc1da77810.tar.xz |
bcache: Move keylist out of btree_op
Slowly working on pruning struct btree_op - the aim is for it to only
contain things that are actually necessary for traversing the btree.
Signed-off-by: Kent Overstreet <kmo@daterainc.com>
Diffstat (limited to 'drivers/md/bcache/btree.h')
-rw-r--r-- | drivers/md/bcache/btree.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/md/bcache/btree.h b/drivers/md/bcache/btree.h index ea0814b51574..17b7a4e39c7e 100644 --- a/drivers/md/bcache/btree.h +++ b/drivers/md/bcache/btree.h @@ -267,10 +267,6 @@ struct btree_op { unsigned lookup_done:1; unsigned insert_collision:1; - /* Anything after this point won't get zeroed in do_bio_hook() */ - - /* Keys to be inserted */ - struct keylist keys; BKEY_PADDED(replace); }; |