Hey Misc, As I read through the code, especially in the boot code, there seem to be quite a few blocks of code of the style:
#if 0 /* some code here */ #endif On example of this is in sys/arch/amd64/amd64/pmap.c:2326 #if 0 pool_cache_invalidate(&pmap_pdp_cache); #endif Obviously, this code needs to be modified if we want it to be included, but my question is, is this old, dead code, or is there some reason it's still in the source? Regards, - Nick Gonella