Home
last modified time | relevance | path

Searched refs:message (Results 1 – 25 of 44) sorted by relevance

12

/spdk/test/iscsi_tgt/sock/
H A Dsock.sh69 message="**MESSAGE:This is a test message from the client**"
70 response=$(echo "$message" | $HELLO_SOCK_APP -H $INITIATOR_IP -P $ISCSI_PORT -N "posix")
72 if ! echo "$response" | grep -q "$message"; then
77 message="**MESSAGE:This is a test message from the client with zero copy disabled**"
78 response=$(echo "$message" | $HELLO_SOCK_APP -H $INITIATOR_IP -P $ISCSI_PORT -N "posix" -z)
80 if ! echo "$response" | grep -q "$message"; then
85 message="**MESSAGE:This is a test message from the client with zero copy enabled**"
86 response=$(echo "$message" | $HELLO_SOCK_APP -H $INITIATOR_IP -P $ISCSI_PORT -N "posix" -Z)
88 if ! echo "$response" | grep -q "$message"; then
111 message="**MESSAGE:This is a test message from the hello_sock client with ssl**"
[all …]
/spdk/proto/
H A Dsma.proto25 message VolumeCryptoParameters {
59 message VolumeParameters {
71 message CreateDeviceRequest {
88 message CreateDeviceResponse {
95 message DeleteDeviceRequest {
101 message DeleteDeviceResponse {}
104 message AttachVolumeRequest {
112 message AttachVolumeResponse {}
115 message DetachVolumeRequest {
123 message DetachVolumeResponse {}
[all …]
H A Dnvmf.proto8 message Address {
17 message VolumeDiscoveryParameters {
23 message VolumeConnectionParameters {
H A Dvirtio_blk.proto7 message DeviceParameters {
H A Dnvme.proto7 message DeviceParameters {
H A Dnvmf_tcp.proto8 message DeviceParameters {
/spdk/python/spdk/sma/device/
H A Ddevice.py9 def __init__(self, code, message): argument
11 self.message = message
/spdk/python/spdk/sma/
H A Dqos.py16 def __init__(self, code, message): argument
18 self.message = message
H A Dsma.py84 context.set_details(ex.message)
108 context.set_details(ex.message)
131 context.set_details(ex.message)
149 context.set_details(ex.message)
162 context.set_details(ex.message)
188 context.set_details(ex.message)
H A Dqmp.py35 def __init__(self, message, code='internal'): argument
37 self.message = repr(message)
38 self.description = f'QMP Error ({self.code}): {self.message}'
48 def __init__(self, message, code='socket'): argument
49 super().__init__(message, code)
108 raise QMPError('NegotiateCap: protocol error, wrong message')
164 raise QMPError('Receive: QMP message decode failed, JSONDecodeError') from e
175 raise QMPError('Receive: QMP unexpected message type')
192 Execute QMP cmd and read result. Returns resulting message, erro
[all...]
/spdk/python/spdk/sma/volume/
H A Dcrypto.py13 def __init__(self, code, message): argument
15 self.message = message
H A Dvolume.py21 def __init__(self, code, message): argument
23 self.message = message
186 raise VolumeException(ex.code, ex.message)
199 raise VolumeException(ex.code, ex.message)
/spdk/doc/
H A Dconcurrency.md36 they pass a message to the owning thread to perform the operation on their
40 concurrency mechanism in [Go](https://tour.golang.org/concurrency/2). A message
49 message to the next core when done.
51 In more extreme cases where even message passing may be too costly, each thread
53 copy. To mutate the data, threads will send a message to each other thread
61 SPDK provides several layers of message passing infrastructure. The most
62 fundamental libraries in SPDK, for instance, don't do any message passing on
67 basic message passing framework and defines a few key primitives.
88 message passing strategy, the code would describe some object with global state
101 The threading abstraction provides functions to send a message to any other
[all …]
H A Dbackporting.md30 Additionally, during `preparation` commit message must be changed:
35 * if the code was modified heavily, then the body of the message should match that.
37 What should remain unchanged in commit message:
48 backporting should be performed. The script will carry out most of commit message changes and try
H A Devent.md11 message passing is often much faster than traditional locking. For a
35 overhead, the framework provides message passing in the form of events. The
/spdk/python/spdk/spdkcli/
H A Dui_node_iscsi.py138 rpc_messages += e.message
336 rpc_messages += e.message
347 self.shell.log.error(e.message)
414 rpc_messages += e.message
567 rpc_messages += e.message
612 rpc_messages += e.message
H A Dui_node_nvmf.py115 rpc_messages += e.message
222 rpc_messages += e.message
285 rpc_messages += e.message
353 rpc_messages += e.message
/spdk/python/spdk/rpc/
H A Dclient.py39 def __init__(self, message): argument
40 self.message = message
/spdk/test/json_config/
H A Dclear_config.py170 print((ex.message))
217 print((ex.message))
/spdk/scripts/perf/pm/
H A Dcollect-cpu-load18 -h - Print this message.
H A Dcollect-vmstat18 -h - Print this message.
/spdk/test/bdev/bdevio/
H A Dtests.py73 print(ex.message)
/spdk/test/vhost/
H A Dcommon.sh59 function message() { function
76 message "FAIL" "$@" >&2
83 message "ERROR" "$@" >&2
90 message "WARN" "$@" >&2
94 message "INFO" "$@"
/spdk/test/app/fuzz/common/
H A Dfuzz_rpc.py90 print(ex.message)
/spdk/test/nvmf/target/
H A Dmultitarget_rpc.py68 print(ex.message)

12