X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=fs%2Fjbd%2Frevoke.c;h=62e13c8db132b5efc4ec24adcfb3837204cf0014;hb=20c2df83d25c6a95affe6157a4c9cac4cf5ffaac;hp=8db2fa25170b7ae55cfd6625ec78fca127920578;hpb=e245befce7af0a1e1347079ed62695b059594bd4;p=linux-2.6 diff --git a/fs/jbd/revoke.c b/fs/jbd/revoke.c index 8db2fa2517..62e13c8db1 100644 --- a/fs/jbd/revoke.c +++ b/fs/jbd/revoke.c @@ -170,13 +170,13 @@ int __init journal_init_revoke_caches(void) { revoke_record_cache = kmem_cache_create("revoke_record", sizeof(struct jbd_revoke_record_s), - 0, SLAB_HWCACHE_ALIGN, NULL, NULL); + 0, SLAB_HWCACHE_ALIGN, NULL); if (revoke_record_cache == 0) return -ENOMEM; revoke_table_cache = kmem_cache_create("revoke_table", sizeof(struct jbd_revoke_table_s), - 0, 0, NULL, NULL); + 0, 0, NULL); if (revoke_table_cache == 0) { kmem_cache_destroy(revoke_record_cache); revoke_record_cache = NULL;