Lines Matching defs:map_rodata_base
160 vaddr_t map_rodata_base;
440 map_rodata_base = uvm_km_alloc(module_map, round_page(map_rodata_size),
442 if (map_rodata_base == 0) {
447 ko->ko_rodata_address = map_rodata_base;
450 map_rodata_base = 0;
484 map_rodata_base += alignmask;
485 map_rodata_base &= ~alignmask;
486 addr = (void *)map_rodata_base;
487 map_rodata_base += shdr[i].sh_size;
599 if (map_rodata_base != ko->ko_rodata_address + map_rodata_size) {
600 panic("%s:%d: %s: map_rodata_base 0x%lx != address %lx "
602 __func__, __LINE__, ko->ko_name, (long)map_rodata_base,