Lines Matching refs:v
4993 static void show_numa_info(struct seq_file *m, struct vm_struct *v, in show_numa_info() argument
4997 unsigned int step = 1U << vm_area_page_order(v); in show_numa_info()
5004 for (nr = 0; nr < v->nr_pages; nr += step) in show_numa_info()
5005 counters[page_to_nid(v->pages[nr])] += step; in show_numa_info()
5031 struct vm_struct *v; in vmalloc_info_show() local
5049 v = va->vm; in vmalloc_info_show()
5050 if (v->flags & VM_UNINITIALIZED) in vmalloc_info_show()
5057 v->addr, v->addr + v->size, v->size); in vmalloc_info_show()
5059 if (v->caller) in vmalloc_info_show()
5060 seq_printf(m, " %pS", v->caller); in vmalloc_info_show()
5062 if (v->nr_pages) in vmalloc_info_show()
5063 seq_printf(m, " pages=%d", v->nr_pages); in vmalloc_info_show()
5065 if (v->phys_addr) in vmalloc_info_show()
5066 seq_printf(m, " phys=%pa", &v->phys_addr); in vmalloc_info_show()
5068 if (v->flags & VM_IOREMAP) in vmalloc_info_show()
5071 if (v->flags & VM_SPARSE) in vmalloc_info_show()
5074 if (v->flags & VM_ALLOC) in vmalloc_info_show()
5077 if (v->flags & VM_MAP) in vmalloc_info_show()
5080 if (v->flags & VM_USERMAP) in vmalloc_info_show()
5083 if (v->flags & VM_DMA_COHERENT) in vmalloc_info_show()
5086 if (is_vmalloc_addr(v->pages)) in vmalloc_info_show()
5090 show_numa_info(m, v, counters); in vmalloc_info_show()