Re: [PATCH] fix alloc_large_system_hash roundup

From: Roland Dreier
Date: Wed Mar 15 2006 - 12:38:20 EST


> /* rounded up to nearest power of 2 in size */
> - numentries = 1UL << (long_log2(numentries) + 1);
> + numentries = 1UL << (long_log2(2*numentries - 1));

How about just using roundup_pow_of_two()? You could kill the comment
too then.

- R.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/