X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=fs%2Fjbd2%2Frevoke.c;h=28cac049a56bfafebb7714389576aabdd2d52e17;hb=1f1c2881f673671539b25686df463518d69c4649;hp=380d19917f3732ad198edd47947f6fcfad662d5f;hpb=43f82216f0bd114599f4a221ae6924f3658a0c9a;p=powerpc.git diff --git a/fs/jbd2/revoke.c b/fs/jbd2/revoke.c index 380d19917f..28cac049a5 100644 --- a/fs/jbd2/revoke.c +++ b/fs/jbd2/revoke.c @@ -1,5 +1,5 @@ /* - * linux/fs/revoke.c + * linux/fs/jbd2/revoke.c * * Written by Stephen C. Tweedie , 2000 * @@ -66,12 +66,12 @@ #include #include #include -#include #include #endif +#include -static kmem_cache_t *jbd2_revoke_record_cache; -static kmem_cache_t *jbd2_revoke_table_cache; +static struct kmem_cache *jbd2_revoke_record_cache; +static struct kmem_cache *jbd2_revoke_table_cache; /* Each revoke record represents one single revoked block. During journal replay, this involves recording the transaction ID of the @@ -213,7 +213,7 @@ int jbd2_journal_init_revoke(journal_t *journal, int hash_size) journal->j_revoke = journal->j_revoke_table[0]; /* Check that the hash_size is a power of two */ - J_ASSERT ((hash_size & (hash_size-1)) == 0); + J_ASSERT(is_power_of_2(hash_size)); journal->j_revoke->hash_size = hash_size; @@ -240,7 +240,7 @@ int jbd2_journal_init_revoke(journal_t *journal, int hash_size) journal->j_revoke = journal->j_revoke_table[1]; /* Check that the hash_size is a power of two */ - J_ASSERT ((hash_size & (hash_size-1)) == 0); + J_ASSERT(is_power_of_2(hash_size)); journal->j_revoke->hash_size = hash_size;