diff options
| author | Jens Axboe <jaxboe@fusionio.com> | 2011-03-01 15:04:39 -0500 |
|---|---|---|
| committer | Jens Axboe <jaxboe@fusionio.com> | 2011-03-01 15:04:39 -0500 |
| commit | 6fae9c25134baffbeeb20031479e7ff6f6d8eec0 (patch) | |
| tree | c9ab89992ce5293a43cd455a81dc8a5926a28a5e /include/linux/mbcache.h | |
| parent | c186794dbb466b45cf40f942f2d09d6d5b4b0e42 (diff) | |
| parent | f5412be599602124d2bdd49947b231dd77c0bf99 (diff) | |
Merge commit 'v2.6.38-rc6' into for-2.6.39/core
Conflicts:
block/cfq-iosched.c
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'include/linux/mbcache.h')
| -rw-r--r-- | include/linux/mbcache.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/mbcache.h b/include/linux/mbcache.h index 54cbbac1e71d..5525d370701d 100644 --- a/include/linux/mbcache.h +++ b/include/linux/mbcache.h | |||
| @@ -18,6 +18,17 @@ struct mb_cache_entry { | |||
| 18 | } e_index; | 18 | } e_index; |
| 19 | }; | 19 | }; |
| 20 | 20 | ||
| 21 | struct mb_cache { | ||
| 22 | struct list_head c_cache_list; | ||
| 23 | const char *c_name; | ||
| 24 | atomic_t c_entry_count; | ||
| 25 | int c_max_entries; | ||
| 26 | int c_bucket_bits; | ||
| 27 | struct kmem_cache *c_entry_cache; | ||
| 28 | struct list_head *c_block_hash; | ||
| 29 | struct list_head *c_index_hash; | ||
| 30 | }; | ||
| 31 | |||
| 21 | /* Functions on caches */ | 32 | /* Functions on caches */ |
| 22 | 33 | ||
| 23 | struct mb_cache *mb_cache_create(const char *, int); | 34 | struct mb_cache *mb_cache_create(const char *, int); |
