Lines Matching refs:m
965 static bool should_skip_region(struct memblock_region *m, int nid, int flags) in should_skip_region() argument
967 int m_nid = memblock_get_region_node(m); in should_skip_region()
974 if (movable_node_is_enabled() && memblock_is_hotpluggable(m)) in should_skip_region()
978 if ((flags & MEMBLOCK_MIRROR) && !memblock_is_mirror(m)) in should_skip_region()
982 if (!(flags & MEMBLOCK_NOMAP) && memblock_is_nomap(m)) in should_skip_region()
1029 struct memblock_region *m = &type_a->regions[idx_a]; in __next_mem_range() local
1031 phys_addr_t m_start = m->base; in __next_mem_range()
1032 phys_addr_t m_end = m->base + m->size; in __next_mem_range()
1033 int m_nid = memblock_get_region_node(m); in __next_mem_range()
1035 if (should_skip_region(m, nid, flags)) in __next_mem_range()
1133 struct memblock_region *m = &type_a->regions[idx_a]; in __next_mem_range_rev() local
1135 phys_addr_t m_start = m->base; in __next_mem_range_rev()
1136 phys_addr_t m_end = m->base + m->size; in __next_mem_range_rev()
1137 int m_nid = memblock_get_region_node(m); in __next_mem_range_rev()
1139 if (should_skip_region(m, nid, flags)) in __next_mem_range_rev()
1988 static int memblock_debug_show(struct seq_file *m, void *private) in memblock_debug_show() argument
1990 struct memblock_type *type = m->private; in memblock_debug_show()
1999 seq_printf(m, "%4d: ", i); in memblock_debug_show()
2000 seq_printf(m, "%pa..%pa\n", ®->base, &end); in memblock_debug_show()