]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - include/linux/mbcache.h
Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzi...
[mv-sheeva.git] / include / linux / mbcache.h
index 54cbbac1e71dafbdd8802ea3df5cab51f6a9ab1b..5525d370701db049e176456292cdb725366d59f7 100644 (file)
@@ -18,6 +18,17 @@ struct mb_cache_entry {
        } e_index;
 };
 
+struct mb_cache {
+       struct list_head                c_cache_list;
+       const char                      *c_name;
+       atomic_t                        c_entry_count;
+       int                             c_max_entries;
+       int                             c_bucket_bits;
+       struct kmem_cache               *c_entry_cache;
+       struct list_head                *c_block_hash;
+       struct list_head                *c_index_hash;
+};
+
 /* Functions on caches */
 
 struct mb_cache *mb_cache_create(const char *, int);