va=VMALLOC_VMADDR((unsignedlong)address);/* get the page directory. Use the kernel memory map. */pgd =pgd_offset_k(va);/* check whether we found an entry */if(!pgd_none(*pgd)) {/*I'm not sure if we need this, or the line for 2.4*//*above will work reliably too*//*If ...