Lines Matching refs:start
110 int memory_add_physaddr_to_nid(u64 start) in memory_add_physaddr_to_nid() argument
112 return hot_add_scn_to_nid(start); in memory_add_physaddr_to_nid()
116 int arch_add_memory(int nid, u64 start, u64 size, bool for_device) in arch_add_memory() argument
120 unsigned long start_pfn = start >> PAGE_SHIFT; in arch_add_memory()
125 start = (unsigned long)__va(start); in arch_add_memory()
126 if (create_section_mapping(start, start + size)) in arch_add_memory()
131 zone_for_memory(nid, start, size, 0, for_device); in arch_add_memory()
137 int arch_remove_memory(u64 start, u64 size) in arch_remove_memory() argument
139 unsigned long start_pfn = start >> PAGE_SHIFT; in arch_remove_memory()
150 start = (unsigned long)__va(start); in arch_remove_memory()
151 ret = remove_section_mapping(start, start + size); in arch_remove_memory()
388 void __init free_initrd_mem(unsigned long start, unsigned long end) in free_initrd_mem() argument
390 free_reserved_area((void *)start, (void *)end, -1, "initrd"); in free_initrd_mem()
422 void *start = kmap_atomic(page); in flush_dcache_icache_page() local
423 __flush_dcache_icache(start); in flush_dcache_icache_page()
424 kunmap_atomic(start); in flush_dcache_icache_page()
542 res->start = base; in add_system_ram_resources()