diff options
Diffstat (limited to 'fs/jbd2/revoke.c')
-rw-r--r-- | fs/jbd2/revoke.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jbd2/revoke.c b/fs/jbd2/revoke.c index 2fccddc7acad..5820a0c5ad26 100644 --- a/fs/jbd2/revoke.c +++ b/fs/jbd2/revoke.c | |||
@@ -168,13 +168,13 @@ static struct jbd2_revoke_record_s *find_revoke_record(journal_t *journal, | |||
168 | 168 | ||
169 | int __init jbd2_journal_init_revoke_caches(void) | 169 | int __init jbd2_journal_init_revoke_caches(void) |
170 | { | 170 | { |
171 | jbd2_revoke_record_cache = kmem_cache_create("revoke_record", | 171 | jbd2_revoke_record_cache = kmem_cache_create("jbd2_revoke_record", |
172 | sizeof(struct jbd2_revoke_record_s), | 172 | sizeof(struct jbd2_revoke_record_s), |
173 | 0, SLAB_HWCACHE_ALIGN, NULL, NULL); | 173 | 0, SLAB_HWCACHE_ALIGN, NULL, NULL); |
174 | if (jbd2_revoke_record_cache == 0) | 174 | if (jbd2_revoke_record_cache == 0) |
175 | return -ENOMEM; | 175 | return -ENOMEM; |
176 | 176 | ||
177 | jbd2_revoke_table_cache = kmem_cache_create("revoke_table", | 177 | jbd2_revoke_table_cache = kmem_cache_create("jbd2_revoke_table", |
178 | sizeof(struct jbd2_revoke_table_s), | 178 | sizeof(struct jbd2_revoke_table_s), |
179 | 0, 0, NULL, NULL); | 179 | 0, 0, NULL, NULL); |
180 | if (jbd2_revoke_table_cache == 0) { | 180 | if (jbd2_revoke_table_cache == 0) { |