1. NAME

virt_to_phys - map virtual addresses to physical

2. SYNOPSIS

phys_addr_t virt_to_phys(volatile void *  address );

3. ARGUMENTS

address
    address to remap

4. DESCRIPTION

The returned physical address is the physical (CPU) mapping for the memory address given. It is only valid to use this function on addresses directly mapped or allocated via kmalloc.

This function does not give bus mappings for DMA transfers. In almost all conceivable cases a device driver should not be using this function

5. AUTHORS

Matthew Wilcox <>
    Author.

Alan Cox <>
    Author.

6. COPYRIGHT