Lines Matching defs:vms
4974 struct vm_struct **vms;
5007 vms = kzalloc_objs(vms[0], nr_vms);
5009 if (!vas || !vms)
5014 vms[area] = kzalloc_obj(struct vm_struct);
5015 if (!vas[area] || !vms[area])
5114 setup_vmalloc_vm(vms[area], vas[area], VM_ALLOC,
5125 kasan_unpoison_vmap_areas(vms, nr_vms, KASAN_VMALLOC_PROT_NORMAL);
5128 return vms;
5174 kfree(vms[area]);
5178 kfree(vms);
5198 kfree(vms[area]);
5202 kfree(vms);
5208 * @vms: vm_struct pointer array returned by pcpu_get_vm_areas()
5213 void pcpu_free_vm_areas(struct vm_struct **vms, int nr_vms)
5218 free_vm_area(vms[i]);
5219 kfree(vms);