Home
last modified time | relevance | path

Searched refs:xl (Results 1 – 25 of 60) sorted by relevance

123

/xen-4.10.0-shim-comet/tools/ocaml/test/
A DMakefile9 -I $(OCAML_TOPLEVEL)/libs/xl
17 -ccopt -L -ccopt $(OCAML_TOPLEVEL)/libs/xl $(OCAML_TOPLEVEL)/libs/xl/xenlight.cmxa
23 -ccopt -L -ccopt $(OCAML_TOPLEVEL)/libs/xl $(OCAML_TOPLEVEL)/libs/xl/xenlight.cmxa
29 -ccopt -L -ccopt $(OCAML_TOPLEVEL)/libs/xl $(OCAML_TOPLEVEL)/libs/xl/xenlight.cmxa
35 -ccopt -L -ccopt $(OCAML_TOPLEVEL)/libs/xl $(OCAML_TOPLEVEL)/libs/xl/xenlight.cmxa
41 -ccopt -L -ccopt $(OCAML_TOPLEVEL)/libs/xl $(OCAML_TOPLEVEL)/libs/xl/xenlight.cmxa
/xen-4.10.0-shim-comet/tools/xl/
A Dbash-completion1 # Copy this file to /etc/bash_completion.d/xl.sh
7 local cur opts xl
10 xl=xl
13 …opts=`${xl} help 2>/dev/null | sed '1,4d' | awk '/^ [^ ]/ {print $1}' | sed 's/$/ ,/g'` && COMPREP…
20 complete -F _xl -o nospace -o default xl
A DMakefile19 XL_OBJS = xl.o xl_cmdtable.o xl_sxp.o xl_utils.o $(XL_OBJS-y)
37 all: xl
39 xl: $(XL_OBJS) target
46 $(INSTALL_PROG) xl $(DESTDIR)$(sbindir)
47 $(INSTALL_DATA) bash-completion $(DESTDIR)$(BASH_COMPLETION_DIR)/xl.sh
51 rm -f $(DESTDIR)$(BASH_COMPLETION_DIR)/xl.sh
52 rm -f $(DESTDIR)$(sbindir)/xl
56 $(RM) -f *.o xl _paths.h $(DEPS_RM)
/xen-4.10.0-shim-comet/xen/arch/arm/arm32/lib/
A Ddiv64.S18 #define xl r1 macro
22 #define xl r0 macro
96 cmpeq xl, r4
97 movlo xh, xl
104 4: movs xl, xl, lsl #1
118 cmp xl, #0
127 mov xl, xl, lsl xh
132 7: movs xl, xl, lsl #1
178 mov yl, xl, lsr ip
183 mov xh, xl, lsl ip
[all …]
/xen-4.10.0-shim-comet/docs/misc/
A Dxl-psr.markdown24 ### xl interfaces
28 `xl psr-cmt-attach <domid>`
32 `xl psr-cmt-show cache-occupancy <domid>`
37 `xl psr-cmt-detach <domid>`
44 `xl psr-hwinfo --cmt`
102 ### xl interfaces
106 `xl psr-hwinfo --cat`
131 `xl psr-cat-show [OPTIONS] <domid>`
181 `xl psr-cat-set -c <domid> <cbm>`
184 `xl psr-cat-set -d <domid> <cbm>`
[all …]
A Dvtpm-platforms.txt18 xl from the command line on domain 0.
68 # xl create vtpmmgr.cfg
69 # xl create vtpm-guest1.cfg
70 # xl create guest1.cfg
104 # xl block-attach guest1 'backendtype=phy,backend=hardware,vdev=xvda,access=w,target=/dev/lvm/guest…
106 # xl vtpm-attach vtpm-hw uuid=062b6416-ed46-492a-9e65-a2f92dc07f7f backend=vtpmmgr
107 # xl vtpm-attach vtpm-g1 uuid=e9aa9d0f-ece5-4b84-b129-93004ba61a5f backend=vtpmmgr
108 # xl vtpm-attach vtpm-g2 uuid=3fb2caf0-d305-4516-96c7-420618d98efb backend=vtpmmgr
109 # xl vtpm-attach hardware uuid=062b6416-ed46-492a-9e65-a2f92dc07f7f backend=vtpm-hw
110 # xl vtpm-attach guest1 uuid=e9aa9d0f-ece5-4b84-b129-93004ba61a5f backend=vtpm-g1
[all …]
/xen-4.10.0-shim-comet/tools/libxl/
A Dcheck-xl-vcpupin-parse5 if [ -x ./xl ] ; then
7 XL=./xl
9 XL=xl
12 fprefix=tmp.check-xl-vcpupin-parse
13 outfile=check-xl-vcpupin-parse.data
141 nr_cpus=`xl info | grep nr_cpus | cut -f2 -d':'`
142 nr_nodes=`xl info | grep nr_nodes | cut -f2 -d':'`
143 nr_cpus_per_node=`xl info -n | sed '/cpu:/,/numa_info/!d' | head -n -1 | \
A Dcheck-xl-disk-parse5 if [ -x ./xl ] ; then
7 XL=./xl
9 XL=xl
12 fprefix=tmp.check-xl-disk-parse
A Dcheck-xl-vif-parse5 if [ -x ./xl ] ; then
7 XL=./xl
9 XL=xl
12 fprefix=tmp.check-xl-vif-parse
/xen-4.10.0-shim-comet/docs/man/
A Dxl.conf.pod.53 /etc/xen/xl.conf - XL Global/Host Configuration
7 The F<xl.conf> file allows configuration of hostwide C<xl> toolstack
11 L<xl.cfg(5)>.
50 If set to "on" then C<xl> will automatically reduce the amount of
53 If set to "off" then C<xl> will not automatically reduce the amount of
69 will be launched by xl directly.
75 Sets the path to the lock file used by xl to serialise certain
78 Default: C</var/lock/xl>
155 quickly and the amount of free memory (which C<xl info> can show) is
194 =item L<xl(1)>
[all …]
A Dxl.pod.1.in7 B<xl> I<subcommand> [I<args>]
55 =item run xl as B<root>
164 passed to xl, resulting in xl being unable to parse the value
176 xl create DebianLenny
772 xl vcpu-pin 0 3 - 6-9
777 xl vcpu-pin 0 3 3,4 6-9
1166 xl sched-rtds -v all
1180 xl sched-rtds
1208 xl sched-rtds -d vm1
1861 =item B<xl migrate --live>
[all …]
/xen-4.10.0-shim-comet/tools/tests/x86_emulator/
A Dblowfish.c332 static void Blowfish_Encrypt(BLOWFISH_CTX *ctx, uint32_t *xl, uint32_t *xr){ in Blowfish_Encrypt() argument
338 Xl = *xl; in Blowfish_Encrypt()
357 *xl = Xl; in Blowfish_Encrypt()
362 static void Blowfish_Decrypt(BLOWFISH_CTX *ctx, uint32_t *xl, uint32_t *xr){ in Blowfish_Decrypt() argument
368 Xl = *xl; in Blowfish_Decrypt()
389 *xl = Xl; in Blowfish_Decrypt()
/xen-4.10.0-shim-comet/docs/features/
A Dmigration.pandoc27 From the command line, `xl migrate/save/restore` are the top level
30 xl create my-vm.cfg
31 xl migrate my-vm localhost
35 xl create my-vm.cfg
36 xl save my-vm /path/to/save/file
37 xl restore /path/to/save/file
40 people using `xl`, although the `libxl` API has had an extension.
89 In general, testing can be done on a single host using `xl
90 save/restore` or `xl migrate $VM localhost`.
A Dsched_credit.pandoc29 `tools/examples/cpupool`), or use just `xl` directly:
31 xl cpupool-create name=\"pool1\" sched=\"credit\" cpus=[4,8]
36 * `xl sched-credit -s`
37 * `xl sched-credit -s -p pool1`
38 * `xl sched-credit -s -t 20`
40 * `xl sched-credit -d vm1`
41 * `xl sched-credit -d vm1 -w 512`
A Dsched_credit2.pandoc38 in `tools/examples/cpupool`), or use just `xl` directly:
40 xl cpupool-create name=\"pool1\" sched=\"credit2\" cpus=[1,2]
45 * `xl sched-credit2 -s`
46 * `xl sched-credit2 -s -p pool1`
47 * `xl sched-credit2 -s -r 100`
49 * `xl sched-credit2 -d vm1`
50 * `xl sched-credit2 -d vm1 -w 1024`
A Dsched_rtds.pandoc32 `tools/examples/cpupool`), or use just `xl` directly:
34 xl cpupool-create name=\"pool-rt\" sched=\"rtds\" cpus=[4,5,6,8]
36 For checking or changing a VM's scheduling parameters from xl, do
38 * `xl sched-rtds -d vm-rt -v all`
39 * `xl sched-rtds -d vm-rt -v all -p 10000 -b 2500`
43 * `xl sched-rtds -d vm-rt -v 0 -p 20000 -b 10000 -e 1 -v 1 -p 45000 -b 12000 -e 0`
92 `xl sched-rtds -d vm -v all -p 100000 -b 50000`,
/xen-4.10.0-shim-comet/tools/hotplug/Linux/init.d/
A Dxendriverdomain.in51 echo Starting xl devd...
52 ${sbindir}/xl devd --pidfile=$XLDEVD_PIDFILE $XLDEVD_ARGS
55 echo Stopping xl devd...
/xen-4.10.0-shim-comet/tools/hotplug/NetBSD/rc.d/
A Dxendriverdomain.in33 ${sbindir}/xl devd --pidfile=$XLDEVD_PIDFILE ${XLDEVD_ARGS}
42 rc_pid=$(check_pidfile ${XLDEVD_PIDFILE} ${sbindir}/xl)
/xen-4.10.0-shim-comet/tools/hotplug/FreeBSD/rc.d/
A Dxendriverdomain.in30 PATH="${bindir}:${sbindir}:$PATH" ${sbindir}/xl devd --pidfile ${XLDEVD_PIDFILE} ${XLDEVD_ARGS}
39 rc_pid=$(check_pidfile ${XLDEVD_PIDFILE} ${sbindir}/xl)
/xen-4.10.0-shim-comet/tools/examples/
A Dxlexample.pvhlinux6 # PVH Linux guest. For a more complete guide see xl.cfg(5)
36 # docs/misc/xl-network-configuration.markdown
41 # docs/misc/xl-disk-configuration.txt
A Dxlexample.pvlinux6 # Paravirtualised Linux guest. For a more complete guide see xl.cfg(5)
38 # docs/misc/xl-network-configuration.markdown
43 # docs/misc/xl-disk-configuration.txt
A Dxlexample.hvm6 # HVM guest. For a more complete guide see xl.cfg(5)
37 # docs/misc/xl-network-configuration.markdown
42 # docs/misc/xl-disk-configuration.txt
A Dcpupool2 # Configuration setup for 'xm cpupool-create' or 'xl cpupool-create'.
4 # 'xm cpupool-create' or 'xl cpupool-create'.
/xen-4.10.0-shim-comet/docs/
A Dconfigure.ac10 man/xl.cfg.pod.5
11 man/xl.pod.1
/xen-4.10.0-shim-comet/
A D.gitignore47 docs/man/xl.cfg.pod.5
48 docs/man/xl.pod.1
390 tools/ocaml/libs/xl/_libxl_types.inc
391 tools/ocaml/libs/xl/_libxl_types.ml.in
392 tools/ocaml/libs/xl/_libxl_types.mli.in
393 tools/ocaml/libs/xl/xenlight.ml
394 tools/ocaml/libs/xl/xenlight.mli
411 tools/python/xen/lowlevel/xl/_pyxl_types.c
412 tools/python/xen/lowlevel/xl/_pyxl_types.h
414 tools/xl/_paths.h
[all …]

Completed in 49 milliseconds

123