search for: table_start

Displaying 1 result from an estimated 1 matches for "table_start".

2007 Feb 14
2
[PATCH 8/8] 2.6.17: scan DMI early
...ud is shared with the kernel pud. + */ + pmds = (PMD_SIZE - 1 - FIXADDR_START) >> PMD_SHIFT; + ptes = (PTE_SIZE - 1 - FIXADDR_START) >> PAGE_SHIFT; + + fixmap_tables = round_up(pmds * 8, PAGE_SIZE) + + round_up(ptes * 8, PAGE_SIZE); + + extend_init_mapping(tables + fixmap_tables); table_start = start_pfn; table_end = table_start + (tables>>PAGE_SHIFT); @@ -668,6 +699,8 @@ static void __init find_early_table_spac early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n", end, table_start << PAGE_SHIFT, (table_start << PAGE_SHIFT) + tables); +...