Home
last modified time | relevance | path

Searched refs:load (Results 1 – 25 of 40) sorted by relevance

12

/xen/tools/libxc/
A Dxc_kexec.c75 DECLARE_HYPERCALL_BUFFER(xen_kexec_load_t, load); in xc_kexec_load()
82 load = xc_hypercall_buffer_alloc(xch, load, sizeof(*load)); in xc_kexec_load()
83 if ( load == NULL ) in xc_kexec_load()
89 load->type = type; in xc_kexec_load()
90 load->arch = arch; in xc_kexec_load()
91 load->entry_maddr = entry_maddr; in xc_kexec_load()
92 load->nr_segments = nr_segments; in xc_kexec_load()
93 set_xen_guest_handle(load->segments.h, segments); in xc_kexec_load()
97 HYPERCALL_BUFFER_AS_ARG(load)); in xc_kexec_load()
100 xc_hypercall_buffer_free(xch, load); in xc_kexec_load()
A Dxc_flask.c76 op.u.load.size = size; in xc_flask_load()
77 set_xen_guest_handle(op.u.load.buffer, buf); in xc_flask_load()
/xen/xen/common/
A Dkexec.c1017 ret = kimage_alloc(&kimage, load->type, arch, load->image.start_address, in kexec_do_load_v1()
1067 xen_kexec_load_v1_t load; in kexec_load_v1() local
1072 return kexec_do_load_v1(&load, 0); in kexec_load_v1()
1079 xen_kexec_load_v1_t load; in kexec_load_v1_compat() local
1091 load.type = compat_load.type; in kexec_load_v1_compat()
1094 return kexec_do_load_v1(&load, 1); in kexec_load_v1_compat()
1102 xen_kexec_load_t load; in kexec_load() local
1117 if ( copy_from_guest(segments, load.segments.h, load.nr_segments) ) in kexec_load()
1123 ret = kimage_alloc(&kimage, load.type, load.arch, load.entry_maddr, in kexec_load()
1161 xen_kexec_load_v1_t load; in kexec_unload_v1() local
[all …]
/xen/m4/
A Dsystemd.m426 AC_ARG_WITH(systemd-modules-load,
27 AS_HELP_STRING([--with-systemd-modules-load=DIR],
28 [set directory for systemd modules load files [PREFIX/lib/modules-load.d/]]),
75 SYSTEMD_MODULES_LOAD="\$(prefix)/lib/modules-load.d/"
/xen/xen/arch/arm/
A Ddecode.c51 bool load = (hw1 & (1u << 4)); in decode_thumb2() local
66 if ( !load && sign ) in decode_thumb2()
A Dkernel.c199 __be32 load; /* Data Load Address */ in kernel_uimage_probe() member
228 info->load = kernel_zimage_load; in kernel_uimage_probe()
362 info->load = kernel_zimage_load; in kernel_zimage64_probe()
413 info->load = kernel_zimage_load; in kernel_zimage32_probe()
522 info->load(info); in kernel_load()
A DKconfig176 If the processor is executing a load and store exclusive sequence at
197 Affected Cortex-A57 parts might deadlock when exclusive load/store
217 fault as the result of a Stage 1 fault for load crossing a
/xen/xen/xsm/flask/
A Dflask_op.c455 static int flask_security_load(struct xen_flask_load *load) in flask_security_load() argument
465 if ( load->size > MAX_POLICY_SIZE ) in flask_security_load()
468 buf = xmalloc_bytes(load->size); in flask_security_load()
472 if ( _copy_from_guest(buf, load->buffer, load->size) ) in flask_security_load()
480 ret = security_load_policy(buf, load->size); in flask_security_load()
650 rv = flask_security_load(&op.u.load); in do_flask_op()
/xen/xen/test/livepatch/
A DMakefile88 --rename-section=.data=.modinfo,alloc,load,readonly,data,contents -S $@.bin $@
104 --rename-section=.data=.livepatch.depends,alloc,load,readonly,data,contents -S $@.bin $@
115 --rename-section=.data=.livepatch.xen_depends,alloc,load,readonly,data,contents -S $@.bin $@
126 --rename-section=.data=.livepatch.depends,alloc,load,readonly,data,contents -S $@.bin $@
/xen/xen/arch/x86/hvm/
A Dsave.c88 hvm_load_handler load; member
103 ASSERT(hvm_sr_handlers[typecode].load == NULL); in hvm_register_savevm()
105 hvm_sr_handlers[typecode].load = load_state; in hvm_register_savevm()
328 ((handler = hvm_sr_handlers[desc->typecode].load) == NULL) ) in hvm_load()
/xen/xen/include/asm-arm/
A Dkernel.h43 void (*load)(struct kernel_info *info); member
/xen/xen/drivers/cpufreq/
A Dcpufreq_ondemand.c126 uint64_t load, load_freq, freq_avg; in dbs_check_cpu() local
137 load = 100 * (total_ns - idle_ns) / total_ns; in dbs_check_cpu()
141 load_freq = load * freq_avg; in dbs_check_cpu()
/xen/docs/misc/
A Defi.pandoc84 Specifies a Linux-style initial RAM disk image to load.
95 Specifies an XSM module to load.
99 Specifies a CPU microcode blob to load. (x86 only)
103 Specifies a device tree file to load. The platform firmware may provide a
A Dpvh.pandoc5 builder how to load and jump into the kernel entry point:
12 The domain builder must load the kernel into the guest memory space and
A Dx86-xenpv-bootloader.pandoc16 bootloader to load and the protocol/format expected from the
/xen/xen/arch/x86/efi/
A Dmkreloc.c82 static unsigned int load(const char *name, int *handle, in load() function
299 nsec = load(argv[1], &in1, &sec1, &base1, &size1, &width1); in main()
300 if ( nsec != load(argv[2], &in2, &sec2, &base2, &size2, &width2) ) in main()
/xen/docs/hypervisor-guide/x86/
A Dhow-xen-boots.rst65 load section at 2MB, and ``gzip``-ing the result. Despite the ELF32 having a
66 fixed load address, its contents are relocatable.
/xen/xen/include/public/xsm/
A Dflask_op.h191 struct xen_flask_load load; member
/xen/docs/features/
A Ddom0less.pandoc32 U-Boot needs to load not just Xen, the device tree binary, the dom0 kernel and
33 ramdisk. It also needs to load the kernel and ramdisk of any additional domains
/xen/xen/common/sched/
A Dcredit2.c506 int load; /* Instantaneous load (num of non-idle units) */ member
1270 s_time_t delta, load = rqd->load; in update_runq_load() local
1298 rqd->avgload = load << P; in update_runq_load()
1299 rqd->b_avgload = load << P; in update_runq_load()
1323 ((delta * (load << P)) >> W) - in update_runq_load()
1326 ((delta * (load << P)) >> W) - in update_runq_load()
1329 rqd->load += change; in update_runq_load()
1342 d.rq_load = rqd->load; in update_runq_load()
3807 rqd->load, in csched2_dump()
/xen/tools/fuzz/
A DREADME.afl36 3a. use a tmpfs for findings_dir (Perf improvement and reduced disk load)
/xen/tools/tests/vhpet/
A Dmain.c85 hvm_load_handler load; member
172 hvm_sr_handlers[typecode].load = load_state; in hvm_register_savevm()
195 ret = hvm_sr_handlers[typecode].load(d, h); in do_load()
/xen/xen/tools/kconfig/
A Dconfdata.c367 goto load; in conf_read_simple()
382 goto load; in conf_read_simple()
389 load: in conf_read_simple()
/xen/
A DINSTALL80 The runlevel scripts load certain configuration files. They are
87 linker will either not find the required libraries or it will load them
165 --with-systemd-modules-load=DIR
/xen/tools/debugger/kdd/
A Dkdd.h309 kdd_stc_load load; member

Completed in 164 milliseconds

12