/openbmc/qemu/tests/avocado/ |
H A D | kvm_xen_guest.py | 84 self.ssh_command('cat /proc/cmdline') 85 self.ssh_command('dmesg | grep -e "Grant table initialized"') 97 self.ssh_command('grep xen-pirq.*msi /proc/interrupts') 109 self.ssh_command('grep xen-pirq.* /proc/interrupts') 121 self.ssh_command('grep xen-pirq /proc/interrupts') 133 self.ssh_command('grep xen-pirq /proc/interrupts') 134 self.ssh_command('grep PCI-MSI /proc/interrupts') 146 self.ssh_command('grep xen-platform-pci /proc/interrupts') 159 self.ssh_command('grep xen-platform-pci /proc/interrupts') 171 self.ssh_command('grep xen-platform-pci /proc/interrupts')
|
H A D | hotplug_cpu.py | 28 self.ssh_command('test -e /sys/devices/system/cpu/cpu0') 30 self.ssh_command('test -e /sys/devices/system/cpu/cpu1') 37 self.ssh_command('test -e /sys/devices/system/cpu/cpu1')
|
H A D | intel_iommu.py | 70 self.ssh_command('cat /proc/cmdline') 71 self.ssh_command('dmesg | grep -e DMAR -e IOMMU') 72 self.ssh_command('find /sys/kernel/iommu_groups/ -type l') 73 self.ssh_command('dnf -y install numactl-devel')
|
H A D | smmu.py | 70 self.ssh_command('cat /proc/cmdline') 71 self.ssh_command('dnf -y install numactl-devel')
|
H A D | linux_ssh_mips_malta.py | 100 self.ssh_command('poweroff') 167 stdout, _ = self.ssh_command('uname -a')
|
H A D | hotplug_blk.py | 24 self.ssh_command('test -e /sys/block/vda')
|
/openbmc/linux/drivers/platform/surface/aggregator/ |
H A D | ssh_parser.c | 207 struct ssh_command **command, in sshp_parse_command() 211 if (unlikely(source->len < sizeof(struct ssh_command))) { in sshp_parse_command() 220 *command = (struct ssh_command *)source->ptr; in sshp_parse_command() 221 command_data->ptr = source->ptr + sizeof(struct ssh_command); in sshp_parse_command() 222 command_data->len = source->len - sizeof(struct ssh_command); in sshp_parse_command()
|
H A D | ssh_msgb.h | 182 msgb_push_frame(msgb, type, sizeof(struct ssh_command) + rqst->length, seq); in msgb_push_cmd() 185 if (WARN_ON(msgb->ptr + sizeof(struct ssh_command) > msgb->end)) in msgb_push_cmd()
|
H A D | ssh_request_layer.c | 184 const struct ssh_command *cmd, in ssh_rtl_complete_with_rsp() 468 const struct ssh_command *command, in ssh_rtl_complete() 898 static void ssh_rtl_rx_event(struct ssh_rtl *rtl, const struct ssh_command *cmd, in ssh_rtl_rx_event() 913 struct ssh_command *command; in ssh_rtl_rx_command() 1103 const struct ssh_command *cmd, in ssh_rtl_flush_request_complete()
|
H A D | ssh_parser.h | 151 struct ssh_command **command,
|
H A D | ssh_request_layer.h | 41 void (*handle_event)(struct ssh_rtl *rtl, const struct ssh_command *cmd,
|
H A D | trace.h | 352 TP_PROTO(const struct ssh_command *cmd, u16 len), 389 TP_PROTO(const struct ssh_command *cmd, u16 len), \
|
H A D | controller.c | 985 const struct ssh_command *cmd, in ssam_handle_event() 1493 const struct ssh_command *cmd, in ssam_request_sync_complete()
|
/openbmc/linux/include/linux/surface_aggregator/ |
H A D | serial_hub.h | 96 struct ssh_command { struct 106 static_assert(sizeof(struct ssh_command) == 8); argument 115 (SSH_FRAME_MAX_PAYLOAD_SIZE - sizeof(struct ssh_command)) 149 SSH_MESSAGE_LENGTH(sizeof(struct ssh_command) + (payload_size)) 174 + offsetof(struct ssh_command, field)) 599 const struct ssh_command *cmd,
|
/openbmc/qemu/tests/avocado/avocado_qemu/ |
H A D | __init__.py | 402 def ssh_command(self, command): member in LinuxSSHMixIn 419 stdout, _ = self.ssh_command(cmd)
|
/openbmc/linux/Documentation/driver-api/surface_aggregator/ |
H A D | ssh.rst | 200 The command-type payload (:c:type:`struct ssh_command <ssh_command>`) 204 ``frame.len - sizeof(struct ssh_command)``. The command struct contains the
|
H A D | internal.rst | 20 .. |ssh_command| replace:: :c:type:`struct ssh_command <ssh_command>` substdef 293 by the host containing a |ssh_command| as frame payload. This layer 295 via a |ssh_command| payload. While responses are handled in this layer,
|
/openbmc/qemu/docs/devel/testing/ |
H A D | avocado.rst | 260 self.ssh_command('some_command_to_be_run_in_the_guest')
|