| /xen/tools/hotplug/Linux/ |
| A D | vif-common.sh | 24 if [ "$command" != "online" ] && 25 [ "$command" != "offline" ] && 26 [ "$command" != "add" ] && 27 [ "$command" != "remove" ] 29 log err "Invalid command: $command" 58 case "$command" in 90 if [ "$command" == "online" ] 112 if [ "$command" == "add" ] 157 if [ "$command" == "online" -o "$command" == "add" ] 169 if [ \( "$command" == "online" -o "$command" == "add" \) -a $? -ne 0 ]
|
| A D | remus-netbuf-setup | 82 if [ "$command" != "setup" -a "$command" != "teardown" ] 84 echo "Invalid command: $command" 85 log err "Invalid command: $command" 212 case "$command" in 230 log debug "Successful remus-netbuf-setup $command for $vifname, ifb $REMUS_IFB."
|
| A D | vif-route | 24 case "${command}" in 60 log debug "Successful vif-route ${command} for ${dev}." 61 if [ "${command}" = "online" ]
|
| A D | colo-proxy-setup | 9 if [ "$command" != "setup" -a "$command" != "teardown" ] 11 echo "Invalid command: $command" 12 log err "Invalid command: $command" 120 case "$command" in 143 log debug "Successful colo-proxy-setup $command for $vifname." \ 146 log debug "Successful colo-proxy-setup $command for $vifname." \
|
| A D | vif-bridge | 79 case "$command" in 94 log debug "Successful vif-bridge $command for $dev, bridge $bridge." 95 if [ "$type_if" = vif -a "$command" = "online" ]
|
| A D | block-common.sh | 23 if [ "$command" != "add" ] && 24 [ "$command" != "remove" ] 26 log err "Invalid command: $command"
|
| A D | vif-openvswitch | 88 case "$command" in 106 log debug "Successful vif-openvswitch $command for $dev." 107 if [ "$type_if" = vif -a "$command" = "online" ]; then
|
| A D | vif-nat | 159 case "$command" in 184 log debug "Successful vif-nat $command for ${dev}." 185 if [ "$command" = "online" ]
|
| A D | vscsi | 12 case "$command" in
|
| A D | block-enbd | 13 case "$command" in
|
| A D | block-nbd | 13 case "$command" in
|
| /xen/xen/scripts/ |
| A D | Kconfig.include | 14 # $(if-success,<command>,<then>,<else>) 15 # Return <then> if <command> exits with 0, <else> otherwise. 18 # $(success,<command>) 19 # Return y if <command> exits with 0, n otherwise 22 # $(failure,<command>) 23 # Return n if <command> exits with 0, y otherwise 39 $(error-if,$(failure,command -v $(CC)),compiler '$(CC)' not found) 40 $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found)
|
| A D | Kbuild.include | 76 # $(call if-success,<command>,<then>,<else>) 77 # Return <then> if <command> exits with 0, <else> otherwise. 80 # $(call success,<command>) 81 # Return y if <command> exits with 0, n otherwise 111 # echo command. 121 # target, or command line has changed 147 # Execute command if command has changed or prerequisite(s) are updated. 172 # (4) - due to command line change 178 # (4) The command line stored in the file named dir/.target.cmd 179 # differed from actual command line. This happens when compiler [all …]
|
| /xen/docs/misc/ |
| A D | kexec_and_kdump.txt | 47 need to have kexec-tools installed. This provides the kexec command. 54 the kexec command. 62 XEN_ARGS: command line arguments to the xen hypervisor 64 DOM0_ARGS: command line arguments to the dom0 kernel 67 KEXEC_ARGS: additional kexec-tools command line arguments 79 LINUX_ARGS: command line arguments to the second linux kernel 80 KEXEC_ARGS: additional kexec-tools command line arguments 108 installed. This provides the kexec command. 117 command line parameter to the Xen hypervisor. It has two forms: 169 CRASH_KERNEL_ARGS: command line arguments to the crash kernel [all …]
|
| A D | stubdom.txt | 43 - QEMU command line (space separated arguments) is stored in 59 Toolstack can issue command through xenstore. The sequence is (from toolstack POV): 61 2. Write command to /local/domain/<stubdom-id>/device-model/<target-id>/command. 62 3. Wait for command result in /local/domain/<stubdom-id>/device-model/<target-id>/state (command sp… 74 …me domain execution, after loading state from console 2 (require -loadvm command argument), result… 95 - QEMU command line is stored in 106 Environment exposed by stubdomain to qemu (needed to construct appropriate qemu command line and la… 108 - console 2 (incoming domain state) must be connected to an FD and the command 117 3. stubdomain starts qemu with requested command line, plus few stubdomain specific ones - includin…
|
| A D | efi.pandoc | 37 order.) One can override this with a command line option (`-cfg=<filename>`). 59 kernel=vmlinuz-3.0.31-0.4-xen [domain 0 command line options] 76 Line Options](xen-command-line.html). 97 `-basevideo` command line option can be used to skip altering video modes. 123 Extra options to be passed to Xen can also be specified on the command line, 188 bootargs = "[domain 0 command line options]"; 271 xen,xen-bootargs = "<Xen command line>" 313 options=<Xen command line> 371 options=<Xen command line> 372 kernel=vmlinuz-3.0.31-0.4-xen [domain 0 command line options] [all …]
|
| /xen/xen/arch/arm/ |
| A D | vgic-v3-its.c | 887 static void dump_its_command(uint64_t *command) in dump_its_command() argument 890 its_cmd_get_command(command), in dump_its_command() 891 command[0], command[1], command[2], command[3]); in dump_its_command() 902 uint64_t command[4]; in vgic_its_handle_cmds() local 914 command, sizeof(command), false); in vgic_its_handle_cmds() 918 switch ( its_cmd_get_command(command) ) in vgic_its_handle_cmds() 927 ret = its_handle_int(its, command); in vgic_its_handle_cmds() 930 ret = its_handle_inv(its, command); in vgic_its_handle_cmds() 936 ret = its_handle_mapc(its, command); in vgic_its_handle_cmds() 956 dump_its_command(command); in vgic_its_handle_cmds() [all …]
|
| /xen/docs/misc/xen-makefiles/ |
| A D | makefiles.rst | 108 need an update, or the command line has changed since the last 112 otherwise the command line check will fail, and the target will 128 It stores the executed command in a corresponding .cmd file 163 a shorthand of a command is normally displayed. 167 quiet_cmd_<command> - what shall be echoed 168 cmd_<command> - the command to execute
|
| /xen/xen/scripts/xen_analysis/ |
| A D | utils.py | 40 def invoke_command(command, needs_output, exeption_type = Exception, argument 44 output = subprocess.run(command, shell=True, check=True,
|
| /xen/xen/tools/kconfig/tests/ |
| A D | conftest.py | 51 command = [CONF_PATH, mode, 'Kconfig'] 65 ps = subprocess.Popen(command, 100 print("[command]\n{}\n".format(' '.join(command)))
|
| /xen/docs/misc/arm/ |
| A D | big.LITTLE.txt | 24 to the Xen command line [1]. Given the lack of big.LITTLE support in the 29 In the case of dom0, dom0_vcpus_pin needs to be added to the Xen command 45 [1] docs/misc/xen-command-line.pandoc
|
| /xen/tools/xl/ |
| A D | xl.c | 480 void help(const char *command) in help() argument 485 if (!command || !strcmp(command, "help")) { in help() 495 cmd = cmdtable_lookup(command); in help() 507 printf("command \"%s\" not implemented\n", command); in help()
|
| /xen/tools/hotplug/NetBSD/rc.d/ |
| A D | xen-watchdog | 20 start_cmd="echo Starting ${name}. && PATH=${PATH}:${sbindir} ${command} 30 15"
|
| /xen/stubdom/ |
| A D | vtpm-command-duration.patch | 4 Subject: [PATCH 2/2] Increase command durations 20 They might be excessive, but I'd rather have a command succeed than
|
| /xen/xen/drivers/char/ |
| A D | ehci-dbgp.c | 64 u32 command; member 418 u32 cmd = readl(&dbgp->ehci_regs->command); in dbgp_issue_command() 430 writel(cmd, &dbgp->ehci_regs->command); in dbgp_issue_command() 501 &dbgp->ehci_regs->command); in dbgp_check_for_completion() 748 cmd = readl(&dbgp->ehci_regs->command); in ehci_dbgp_startup() 751 writel(cmd, &dbgp->ehci_regs->command); in ehci_dbgp_startup() 781 cmd = readl(&dbgp->ehci_regs->command); in ehci_dbgp_controller_reset() 783 writel(cmd, &dbgp->ehci_regs->command); in ehci_dbgp_controller_reset() 785 cmd = readl(&dbgp->ehci_regs->command); in ehci_dbgp_controller_reset() 895 cmd = readl(&dbgp->ehci_regs->command); in ehci_dbgp_external_startup() [all …]
|