struct cache_sb         sb;
 
-       struct cache            *cache[MAX_CACHES_PER_SET];
-       struct cache            *cache_by_alloc[MAX_CACHES_PER_SET];
-       int                     caches_loaded;
+       struct cache            *cache;
 
        struct bcache_device    **devices;
        unsigned int            devices_max_used;
                                      const struct bkey *k,
                                      unsigned int ptr)
 {
-       return c->cache[PTR_DEV(k, ptr)];
+       return c->cache;
 }
 
 static inline size_t PTR_BUCKET_NR(struct cache_set *c,
 /* Looping macros */
 
 #define for_each_cache(ca, cs, iter)                                   \
-       for (iter = 0; ca = cs->cache[iter], iter < (cs)->sb.nr_in_set; iter++)
+       for (iter = 0; ca = cs->cache, iter < 1; iter++)
 
 #define for_each_bucket(b, ca)                                         \
        for (b = (ca)->buckets + (ca)->sb.first_bucket;                 \
 
        for_each_cache(ca, c, i)
                if (ca) {
                        ca->set = NULL;
-                       c->cache[ca->sb.nr_this_dev] = NULL;
+                       c->cache = NULL;
                        kobject_put(&ca->kobj);
                }
 
 
        list_for_each_entry(c, &bch_cache_sets, list)
                if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) {
-                       if (c->cache[ca->sb.nr_this_dev])
+                       if (c->cache)
                                return "duplicate cache set member";
 
                        if (!can_attach_cache(ca, c))
 
        kobject_get(&ca->kobj);
        ca->set = c;
-       ca->set->cache[ca->sb.nr_this_dev] = ca;
-       c->cache_by_alloc[c->caches_loaded++] = ca;
+       ca->set->cache = ca;
 
-       if (c->caches_loaded == c->sb.nr_in_set) {
-               err = "failed to run cache set";
-               if (run_cache_set(c) < 0)
-                       goto err;
-       }
+       err = "failed to run cache set";
+       if (run_cache_set(c) < 0)
+               goto err;
 
        return NULL;
 err:
        unsigned int i;
 
        if (ca->set) {
-               BUG_ON(ca->set->cache[ca->sb.nr_this_dev] != ca);
-               ca->set->cache[ca->sb.nr_this_dev] = NULL;
+               BUG_ON(ca->set->cache != ca);
+               ca->set->cache = NULL;
        }
 
        free_pages((unsigned long) ca->disk_buckets, ilog2(meta_bucket_pages(&ca->sb)));