diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2015-08-21 00:15:53 -0800 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2016-10-07 09:01:12 -0800 |
commit | 6187c8a2f568d4981abdba0c31b66f02915c29b1 (patch) | |
tree | 9c962ffa2824103e06436d614669b45856f144a9 | |
parent | ac2fb3cd58e9e3e9ec247413af8e133bdbdf974b (diff) |
bcache: resize open_buckets array in data_insert_op back to 2
this was changed to 1 to work around a deadlock that should no longer exist
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
-rw-r--r-- | drivers/md/bcache/request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/request.h b/drivers/md/bcache/request.h index b159bee07b9b..a4467456fe72 100644 --- a/drivers/md/bcache/request.h +++ b/drivers/md/bcache/request.h @@ -47,7 +47,7 @@ struct data_insert_op { }; }; - struct open_bucket *open_buckets[1]; + struct open_bucket *open_buckets[2]; struct keylist insert_keys; BKEY_PADDED(insert_key); |