Searched refs:code_resource (Results 1 – 10 of 10) sorted by relevance
/linux-6.3-rc2/arch/sh/kernel/ |
A D | setup.c | 83 static struct resource code_resource = { variable 224 request_resource(res, &code_resource); in __add_active_range() 299 code_resource.start = virt_to_phys(_text); in setup_arch() 300 code_resource.end = virt_to_phys(_etext)-1; in setup_arch()
|
/linux-6.3-rc2/arch/loongarch/kernel/ |
A D | setup.c | 81 static struct resource code_resource = { .name = "Kernel code", }; variable 398 code_resource.start = __pa_symbol(&_text); in resource_init() 399 code_resource.end = __pa_symbol(&_etext) - 1; in resource_init() 430 request_resource(res, &code_resource); in resource_init()
|
/linux-6.3-rc2/arch/mips/kernel/ |
A D | setup.c | 84 static struct resource code_resource = { .name = "Kernel code", }; variable 702 code_resource.start = __pa_symbol(&_text); in resource_init() 703 code_resource.end = __pa_symbol(&_etext) - 1; in resource_init() 734 request_resource(res, &code_resource); in resource_init()
|
/linux-6.3-rc2/arch/parisc/mm/ |
A D | init.c | 51 static struct resource code_resource = { variable 318 code_resource.start = virt_to_phys(_text); in setup_bootmem() 319 code_resource.end = virt_to_phys(&data_start)-1; in setup_bootmem() 326 request_resource(res, &code_resource); in setup_bootmem()
|
/linux-6.3-rc2/arch/x86/kernel/ |
A D | setup.c | 99 static struct resource code_resource = { variable 959 code_resource.start = __pa_symbol(_text); in setup_arch() 960 code_resource.end = __pa_symbol(_etext)-1; in setup_arch() 1047 insert_resource(&iomem_resource, &code_resource); in setup_arch()
|
/linux-6.3-rc2/arch/s390/kernel/ |
A D | setup.c | 513 static struct resource code_resource = { variable 529 &code_resource, 541 code_resource.start = (unsigned long) _text; in setup_resources() 542 code_resource.end = (unsigned long) _etext - 1; in setup_resources()
|
/linux-6.3-rc2/arch/ia64/kernel/ |
A D | setup.c | 98 static struct resource code_resource = { variable 239 code_resource.start = ia64_tpa(_text); in register_memory() 240 code_resource.end = ia64_tpa(_etext) - 1; in register_memory() 245 efi_initialize_iomem_resources(&code_resource, &data_resource, in register_memory()
|
A D | efi.c | 1171 efi_initialize_iomem_resources(struct resource *code_resource, in efi_initialize_iomem_resources() argument 1264 insert_resource(res, code_resource); in efi_initialize_iomem_resources()
|
/linux-6.3-rc2/arch/sparc/mm/ |
A D | init_64.c | 3034 static struct resource code_resource = { variable 3056 code_resource.start = compute_kern_paddr(_text); in kernel_lds_init() 3057 code_resource.end = compute_kern_paddr(_etext - 1); in kernel_lds_init() 3089 insert_resource(res, &code_resource); in report_memory()
|
/linux-6.3-rc2/include/linux/ |
A D | efi.h | 742 extern void efi_initialize_iomem_resources(struct resource *code_resource,
|
Completed in 27 milliseconds