Home
last modified time | relevance | path

Searched refs:e (Results 1 – 25 of 59) sorted by relevance

123

/spdk/doc/
H A Dtwo.min.js34 …0,a=0);f=f||1;c=Math.max(Math.ceil((c-a)/f),0);for(var e=Array(c),d=0;d<c;d++,a+=f)e[d]=a;return e
35e=x.call(arguments,2);return function(){a.apply(c,e)}},extend:function(a){for(var c=x.call(argumen…
36e=0;e<c.length;e++)f.push(a[c[e]]);return f},each:function(a,c,f){f=f||this;for(var e=!q(a)&&d.key…
37e=Math.sin,a=Math.cos,g=Math.atan2,n=Math.sqrt,f=Math.PI,t=f/2,v=Math.pow,B=Math.min,z=Math.max,A=… argument
38e):a.attachEvent("on"+c,f);return w},unbind:function(a,c,f,e){w.hasEventListeners?a.removeEventLis… argument
49 …ltaTransformPoint(a,1,0),c=180/Math.PI*Math.atan2(c.y,c.x)-90;return{translateX:a.e,translateY:a.f,
50e={},g;if(getComputedStyle){var n=getComputedStyle(a);for(g=n.length;g--;){var t=n[g];var y=n[t];v…
51 e.display)||d.isUndefined(e.visibility)&&"hidden"===e.visibility;for(t in e)switch(y=e[t],t){case "…
53e=a.childNodes.length;f<e;f++){var d=a.childNodes[f],g=d.nodeName;if(!g)return;g=g.replace(/svg\:/… argument
54e,g,n=!1,t=!1,y=c.match(/[a-df-z][^a-df-z]*/ig),h=y.length-1;d.each(y.slice(0),function(a,c){var f…
[all …]
H A Dsma.md5 users to create and manage various types of devices (e.g. NVMe, virtio-blk,
18 files (e.g. `nvme.proto` for NVMe).
39 created device. This field may be optional for some device types (e.g. NVMe),
40 while it may be required for others (e.g. virtio-blk). Extending parameters with
68 unsupported by some types of devices (e.g. virtio-blk).
73 structure determines the method to create it (e.g. direct NVMe-oF connection,
84 It may be unsupported by some types of devices (e.g. virtio-blk).
126 service, as well as several other options (e.g. listen address, SPDK-RPC socket,
178 (e.g. "nvme", "virtio_blk", etc.), as it'll be used to select the DeviceManager
H A Dvagrant.md127 00:0e.0 Non-Volatile memory controller: InnoTek Systemberatung GmbH Device 4e56
148 0000:00:0e.0 (80ee 4e56): nvme -> uio_pci_generic
159 EAL: PCI device 0000:00:0e.0 on NUMA socket 0
161 Attaching to 0000:00:0e.0
162 Attached to 0000:00:0e.0
/spdk/python/spdk/sma/
H A Dqmp.py84 except OSError as e:
85 raise QMPSocketError('Create: exception while creating') from e
120 except SocketError as e:
121 raise QMPSocketError('Connect: could not connect') from e
159 except SocketError as e:
160 raise QMPSocketError('Receive: socket read failed') from e
161 except EOFError as e:
162 raise QMPSocketError('Receive: socket read got unexpected EOF') from e
163 except json.JSONDecodeError as e:
164 raise QMPError('Receive: QMP message decode failed, JSONDecodeError') from e
[all...]
/spdk/app/trace/
H A Dtrace.cpp135 struct spdk_trace_entry *e = entry->entry; in print_event() local
141 d = &g_file->tpoint[e->tpoint_id]; in print_event()
142 us = get_us_from_tsc(e->tsc - tsc_offset, tsc_rate); in print_event()
147 printf("(%9ju) ", e->tsc - tsc_offset); in print_event()
149 owner = spdk_get_trace_owner(g_file, e->owner_id); in print_event()
151 if (e->owner_id > 0 && owner->tsc < e->tsc) { in print_event()
158 print_size(e->size); in print_event()
164 us = get_us_from_tsc(e->tsc - entry->object_start, tsc_rate); in print_event()
170 } else if (e->object_id != 0) { in print_event()
171 print_ptr("object", e->object_id); in print_event()
[all …]
/spdk/include/spdk/
H A Dgpt_spec.h69 #define SPDK_GPT_GUID(a, b, c, d, e) \ argument
76 (uint8_t)(((uint64_t)e) >> 40), (uint8_t)(((uint64_t)e) >> 32), (uint8_t)(((uint64_t)e) >> 24), \
77 (uint8_t)(((uint64_t)e) >> 16), (uint8_t)(((uint64_t)e) >> 8), (uint8_t)(e) \
/spdk/scripts/
H A Dspdkcli.py59 except JSONRPCException as e:
60 spdk_shell.log.error("%s. SPDK not running?" % e)
75 except Exception as e:
76 sys.stderr.write("%s\n" % e)
86 except (JSONRPCException, ExecutionError) as e:
87 spdk_shell.log.error("%s" % e)
88 except BrokenPipeError as e:
89 spdk_shell.log.error("Lost connection with SPDK: %s" % e)
H A Dgdb_macros.py133 except RuntimeError as e:
134 print("Cannot load IO devices: " + str(e))
158 except RuntimeError as e:
159 print("Cannot load bdevs: " + str(e))
225 except RuntimeError as e:
226 print("Cannot load nvmf target subsystems: " + str(e))
328 except AttributeError as e:
H A Dspdk-gpt.py73 except Exception as e:
74 print("Failed to read GPT data from %s (%s)" % (args.block, e))
/spdk/lib/trace_parser/
H A Dtrace.cpp230 spdk_trace_entry *e; in populate_events()
234 e = history->entries; in populate_events()
237 while (e[num_entries_filled - 1].tsc == 0) { in populate_events()
244 if (e[i].tsc < e[first].tsc) { in populate_events()
247 if (e[i].tsc > e[last].tsc) { in populate_events()
263 if (e[first].tsc > _tsc_offset && overflowed) { in populate_events()
264 _tsc_offset = e[first].tsc; in populate_events()
269 if (e[ in populate_events()
229 spdk_trace_entry *e; populate_events() local
[all...]
/spdk/scripts/bpf/
H A Dtrace.py103 entries.sort(key=lambda e: e.args['tsc'])
465 for e in self._provider.entries():
466 offset = e.tsc if offset is None else offset
467 timestamp = get_us(e.tsc, offset)
468 diff = get_us(e.time, 0) if e.time is not None else None
469 args = ', '.join(self._format_args(e))
470 related = ' (' + e.related + ')' if e.related is not None else ''
473 e.lcore, timestamp, e.owner if e.owner is not None else '',
474 e.tpoint.name, f'size: {e.size}' if e.size else '') +
475 (f'id: {e.object_id + related:12} ' if e.object_id is not None else '') +
/spdk/python/spdk/spdkcli/
H A Dui_node_iscsi.py137 except JSONRPCException as e:
138 rpc_messages += e.message
335 except JSONRPCException as e:
336 rpc_messages += e.message
346 except JSONRPCException as e:
347 self.shell.log.error(e.message)
413 except JSONRPCException as e:
414 rpc_messages += e.message
566 except JSONRPCException as e:
567 rpc_messages += e.message
[all …]
H A Dui_node_nvmf.py114 except JSONRPCException as e:
115 rpc_messages += e.message
221 except JSONRPCException as e:
222 rpc_messages += e.message
284 except JSONRPCException as e:
285 rpc_messages += e.message
352 except JSONRPCException as e:
353 rpc_messages += e.message
H A Dui_node.py46 except Exception as e:
47 raise e
132 except JSONRPCException as e:
133 rpc_messages += e.message
161 except JSONRPCException as e:
162 rpc_messages += e.message
312 except JSONRPCException as e:
313 rpc_messages += e.messages
/spdk/test/common/config/
H A DREADME.md4 to either limited selection of packages and/or hw-related requirements (e.g.
6 not covered here (e.g. calsoft, vhost's testing VM, etc). That said, the latest
/spdk/proto/
H A Dsma.proto73 // optional for some device types (e.g. NVMe), while it may be required for
74 // others (e.g. virtio-blk).
192 // volumes (e.g. an NVMeoF subsystem).
197 // AttachVolume (e.g. virtio-blk). In other cases, it is forbidden and
202 // device (e.g. for NVMeoF this results in adding a namespace to an NVMeoF
204 // (e.g. it's perfectly fine to attach an NVMe/TCP volume to a virtio-blk
/spdk/python/spdk/rpc/
H A Dclient.py26 except Exception as e:
31 except Exception as e:
63 except Exception as e:
192 except JSONRPCException as e:
198 raise e
/spdk/test/unit/lib/bdev/raid/
H A Dcommon.c60 #define ARRAY_FOR_EACH(a, e) \ argument
61 for (e = a; e < a + SPDK_COUNTOF(a); e++)
/spdk/
H A Dautorun_post.py82 except subprocess.CalledProcessError as e:
84 print(e)
98 except subprocess.CalledProcessError as e:
100 print(e)
/spdk/test/iscsi_tgt/calsoft/
H A Dcalsoft.py51 except subprocess.CalledProcessError as e:
53 case_log = e.output.decode('utf-8')
/spdk/scripts/bash-completion/
H A Dspdk15 # Fetch all the positional parameters, i.e. get first word prefixed
19 # TODO: separate completion for such arguments, e.g., get all bdevs
116 if [[ -e /sys/bus/pci/devices ]]; then
125 if [[ -e /sys/devices/system/cpu ]]; then
134 --tpoint-group | -e)
/spdk/test/iscsi_tgt/rpc_config/
H A Drpc_config.py415 except RpcException as e:
416 print("{}. Exiting with status {}".format(e.message, e.retval))
417 raise e
418 except Exception as e:
419 raise e
/spdk/scripts/perf/nvmf/
H A Drun_nvmf.py108 # (e.g. '0xffff') or list containing:
109 # - individual cores (e.g. '1, 2, 3')
110 # - core ranges (e.g. '0-3')
111 # - mix of both (e.g. '0, 1-4, 9, 11-13')
167 numa_cpu_json_obj = json.loads(self.exec_cmd(["lscpu", "-b", "-e=NODE,CPU", "-J"]))
196 except CalledProcessError as e:
198 self.log.error("%s resulted in error: %s" % (e.cmd, e.output))
271 except CalledProcessError as e:
273 self.log.error("%s resulted in error: %s" % (e
[all...]
/spdk/test/scheduler/
H A Drdmsr.pl19 unless ( -e $cpu_path ) {
/spdk/test/common/config/pkgdep/
H A Dgit10 if [[ -e /proc/kallsyms ]]; then
12 elif [[ -e /boot/System.map-$kernel_ver ]]; then
21 if [[ -e /sys/module/qat_c62x ]]; then
159 # branches change quite often (e.g. vfio-user's).
193 if [[ -e /usr/local/src/nvme-cli/.build/nvme ]]; then
216 if [[ -e /usr/local/src/nvme-cli-plugin/.build/nvme ]]; then
355 [[ -e $GIT_REPOS/irdma-$IRDMA_VERSION/build.sh ]]
366 [[ -e $GIT_REPOS/irdma-$IRDMA_VERSION/libirdma-$RDMA_CORE_VERSION.patch ]]
373 [[ -e $GIT_REPOS/rdma-core-$RDMA_CORE_VERSION/redhat/rdma-core.spec ]]
394 [[ -e
[all...]

123