Re: LogFS

From: Kyle Moffett
Date: Sun Aug 27 2006 - 16:51:07 EST


On Aug 27, 2006, at 16:16:48, Jörn Engel wrote:
On Sun, 27 August 2006 14:12:45 -0400, Ian Lindsay wrote:

So, 28 should be enough for everyone?

No, it just took me more prodding to notice my thinko. Thank you for noticing, the bloody bug is fixed now.

Btw, isn't 2^30 32 rather than 28?

Not really. 30 already has the 2 bit set:
30 = 0b11110 = 16 + 8 + 4 + 2 + 0
28 = 0b11100 = 16 + 8 + 4 + 0 + 0

Feel free to run this in a terminal to check: :-)
perl -e 'print( (30^2) ."\n" );'

Cheers,
Kyle Moffett

-
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/