8d394797 | 29-Nov-2024 |
Changpeng Liu <changpeliu@tencent.com> |
spdk_dd: simplify `io_uring_peek_cqe` return code processing
`io_uring_peek_cqe` will only return `-EAGAIN` as an error, or there is a valid CQE entry, then we can check `cqe->res` for further proce
spdk_dd: simplify `io_uring_peek_cqe` return code processing
`io_uring_peek_cqe` will only return `-EAGAIN` as an error, or there is a valid CQE entry, then we can check `cqe->res` for further processing. Also return correct value for pollers.
Change-Id: If82744291b1b0bf42cb1cf2d9ab1524732ff8b40 Signed-off-by: Changpeng Liu <changpeliu@tencent.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25486 Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <jim.harris@nvidia.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: GangCao <gang.cao@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com>
show more ...
|
b37db069 | 03-Dec-2024 |
XuQi <1530865185@qq.com> |
replace strtok with strtok_r
The strtok function is not reentrant. To address this issue in a multithreaded environment, the strtok_r function should be used, which is the reentrant version of strto
replace strtok with strtok_r
The strtok function is not reentrant. To address this issue in a multithreaded environment, the strtok_r function should be used, which is the reentrant version of strtok.
Signed-off-by: XuQi <1530865185@qq.com> Change-Id: I35c07c7cf4e20bacb7b1e7c7adaedfcd1a81f86e Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25492 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Changpeng Liu <changpeliu@tencent.com> Reviewed-by: Jim Harris <jim.harris@nvidia.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Community-CI: Mellanox Build Bot
show more ...
|
318515b4 | 08-Aug-2024 |
Ankit Kumar <ankit.kumar@samsung.com> |
nvme/perf: interrupt mode support for pcie controller
Added interrupt mode tests, which can be enabled for pcie nvme devices by passing '-E'
Example: ./build/bin/spdk_nvme_perf -q 1 -o 4096 -w read
nvme/perf: interrupt mode support for pcie controller
Added interrupt mode tests, which can be enabled for pcie nvme devices by passing '-E'
Example: ./build/bin/spdk_nvme_perf -q 1 -o 4096 -w read -t 30 -P 1 -E
Events are registered for the fds of all the I/O qpairs during its creation. During nvme_check_io() spdk_nvme_poll_group_wait() is called, which processes any queue pair with interrupt events.
Change-Id: I5cb4e551a14062fe0203f165f28e4e97a3634108 Signed-off-by: Ankit Kumar <ankit.kumar@samsung.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24908 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
83ba9086 | 15-Oct-2024 |
Ankit Kumar <ankit.kumar@samsung.com> |
fio/bdev: fix typo in README
Change-Id: Ib0d9e22a1aefca1470c45eb3de53497ece74d2e3 Signed-off-by: Ankit Kumar <ankit.kumar@samsung.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25221
fio/bdev: fix typo in README
Change-Id: Ib0d9e22a1aefca1470c45eb3de53497ece74d2e3 Signed-off-by: Ankit Kumar <ankit.kumar@samsung.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25221 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Reviewed-by: Changpeng Liu <changpeliu@tencent.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com>
show more ...
|
44970291 | 05-Sep-2024 |
Jim Harris <jim.harris@samsung.com> |
fio/nvme, fio/bdev: use specific NUMA ID when possible
Currently if any namespace or bdev reports NUMA_ID_ANY, we allocate the buffer using NUMA_ID_ANY. This basically keeps original behavior, unles
fio/nvme, fio/bdev: use specific NUMA ID when possible
Currently if any namespace or bdev reports NUMA_ID_ANY, we allocate the buffer using NUMA_ID_ANY. This basically keeps original behavior, unless all namespaces and bdevs reports a NUMA ID.
But it is OK to just use a specific NUMA ID as long as none of the other namespaces or bdevs in that job have a conflicting NUMA ID. If the other namespaces or bdevs report NUMA_ID_ANY we can just ignore them.
Suggested-by: Konrad Sztyber <konrad.sztyber@intel.com> Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I18743a5e26d1098804b7783c592b89bfe9286423 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24815 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
cfa0a248 | 05-Sep-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
nvme/perf: use keyring to pass TLS PSKs
Passing the key directly in spdk_nvme_ctrlr_opts is deprecated and will be removed in the next patch. This one preps the perf app for that.
Signed-off-by: K
nvme/perf: use keyring to pass TLS PSKs
Passing the key directly in spdk_nvme_ctrlr_opts is deprecated and will be removed in the next patch. This one preps the perf app for that.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I8b5acc1b606bf51cb34e7bf1a608ce074115707e Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24809 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <jim.harris@samsung.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
show more ...
|
c2c1a767 | 11-Jul-2024 |
Jim Harris <jim.harris@samsung.com> |
fio/bdev: use numa_id when allocating io buffers
fio does the io buffer allocations on a per-thread basis, so if a thread/job is associated with multiple bdevs, and those bdevs don't share the same
fio/bdev: use numa_id when allocating io buffers
fio does the io buffer allocations on a per-thread basis, so if a thread/job is associated with multiple bdevs, and those bdevs don't share the same numa_id, we will just revert to SPDK_ENV_NUMA_ID_ANY.
Also, if any of the bdevs report SPDK_ENV_NUMA_ID_ANY, revert to SPDK_ENV_NUMA_ID_ANY for that case too.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I92caf0dadc15af3196ae9e0f5ae410ad4cee28f3 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24155 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
a8048042 | 11-Jul-2024 |
Jim Harris <jim.harris@samsung.com> |
fio/nvme: use numa_id when allocating io buffers
fio does the io buffer allocations on a per-thread basis, so if a thread/job is associated with multiple controllers, and those controllers don't sha
fio/nvme: use numa_id when allocating io buffers
fio does the io buffer allocations on a per-thread basis, so if a thread/job is associated with multiple controllers, and those controllers don't share the same numa_id, we will just revert to SPDK_ENV_NUMA_ID_ANY.
Also, if any of the ctrlrs report SPDK_ENV_NUMA_ID_ANY, revert to SPDK_ENV_NUMA_ID_ANY for that case too.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I2ce39eda613b59e716c1e95c214cce844c507dbc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24151 Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com>
show more ...
|
f062f928 | 11-Jul-2024 |
Jim Harris <jim.harris@samsung.com> |
spdk_nvme_perf: allocate buffers from numa_id reported by ctrlr
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I915494ca245818c650cfb8110b5d854611dad2db Reviewed-on: https://review.sp
spdk_nvme_perf: allocate buffers from numa_id reported by ctrlr
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I915494ca245818c650cfb8110b5d854611dad2db Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24150 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
show more ...
|
31e3adba | 21-Aug-2024 |
Jim Harris <jim.harris@samsung.com> |
spdk_nvme_perf: use rand_r() twice when choosing random I/O offset
Fixes issue #3494.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I5b86c1ab7e532730e365fccb96b5964051f07b76 Reviewe
spdk_nvme_perf: use rand_r() twice when choosing random I/O offset
Fixes issue #3494.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I5b86c1ab7e532730e365fccb96b5964051f07b76 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24622 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Community-CI: Mellanox Build Bot
show more ...
|
4586880f | 23-Aug-2024 |
Jim Harris <jim.harris@samsung.com> |
app/fio/bdev: remove use of spdk_subsystem_init_from_json_config
This function is deprecated, use spdk_subsystem_load_config instead.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I
app/fio/bdev: remove use of spdk_subsystem_init_from_json_config
This function is deprecated, use spdk_subsystem_load_config instead.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I0eb189550706b6f76df5263b3ad9a62f5fe11be9 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24663 Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
b69e3ff2 | 10-Jan-2024 |
Anton Nayshtut <anayshtut@nvidia.com> |
app/spdk_tgt: link with fsdev libs
Change-Id: Ieee0aa83e0ab722e4f1f188cdb26fbc74c731a35 Signed-off-by: Anton Nayshtut <anayshtut@nvidia.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/
app/spdk_tgt: link with fsdev libs
Change-Id: Ieee0aa83e0ab722e4f1f188cdb26fbc74c731a35 Signed-off-by: Anton Nayshtut <anayshtut@nvidia.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24083 Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com>
show more ...
|
57fd99b9 | 28-Jun-2024 |
Jim Harris <jim.harris@samsung.com> |
env: add opts_size to spdk_env_opts
This will help with ABI compatibility as new fields get added to this structure.
User is responsible for setting opts_size. Major version has been bumped, so use
env: add opts_size to spdk_env_opts
This will help with ABI compatibility as new fields get added to this structure.
User is responsible for setting opts_size. Major version has been bumped, so users will need to rebuild against latest code, if they do not set opts_size we will just treat that as if the structure ends right before opts_size. We will also print an ERRLOG to warn user to set opts_size appropriately.
As part of this patch, update all in-tree callers of spdk_env_opts_init() to set the opts_size.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: If2611eccc8b3c43e1dc1654028d000a8a12a544e Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23940 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz@tzawadzki.com>
show more ...
|
33712560 | 21-Jun-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
perf: allow unit suffix for queue depth/size
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I5b68517af1019814e516d8d623c179930503c2bc Reviewed-on: https://review.spdk.io/gerrit/
perf: allow unit suffix for queue depth/size
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I5b68517af1019814e516d8d623c179930503c2bc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23796 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Reviewed-by: Wojciech Panfil <wojciech.panfil@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz@tzawadzki.com>
show more ...
|
25a9ccb9 | 17-Jul-2024 |
Ankit Kumar <ankit.kumar@samsung.com> |
nvme/fio_plugin: update the way ruhs descriptors are fetched
For FIO_IOOPS_VERSION >= 35 the fdp backend of fio has removed the limitation of 128 ruhs descriptors. This way users can specifiy upto 1
nvme/fio_plugin: update the way ruhs descriptors are fetched
For FIO_IOOPS_VERSION >= 35 the fdp backend of fio has removed the limitation of 128 ruhs descriptors. This way users can specifiy upto 128 placement ID indicies in the range of 0 <= index < max ruhs descriptor reported by the device.
The is done by allowing FIO to fetch ruhs in two steps. As fio is unaware of the number of reorted ruhs descriptors, the first call from fio to the ioengine hook fdp_fetch_ruhs is to figure that out. The second call from fio is to get all the actual ruhs descriptors.
Change-Id: I1026315e14c539f397e9c3d4a3bc6addf53b04c1 Signed-off-by: Ankit Kumar <ankit.kumar@samsung.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24238 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
show more ...
|
8b5c4be8 | 13-Jun-2024 |
Vincent Fu <vincent.fu@samsung.com> |
nvme/fio_plugin: add support for the disable_pcie_sgl_merge option
Add support for the disable_pcie_sgl_merge option to the fio nvme plugin. This allows users to disable merging of physically contig
nvme/fio_plugin: add support for the disable_pcie_sgl_merge option
Add support for the disable_pcie_sgl_merge option to the fio nvme plugin. This allows users to disable merging of physically contiguous SGL elements for the PCIe transport.
Change-Id: Ib4fda74f0ffc18b83d71cdb154534fccfeda487b Signed-off-by: Vincent Fu <vincent.fu@samsung.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24195 Reviewed-by: Jim Harris <jim.harris@samsung.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
c65983c9 | 04-Jan-2024 |
Anton Nayshtut <anayshtut@nvidia.com> |
app/spdk_tgt: -S fixed for vfio-user
Change-Id: I9b45f8c14f61cd743cccafec9bad4456bc3a2ca7 Signed-off-by: Anton Nayshtut <anayshtut@nvidia.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/
app/spdk_tgt: -S fixed for vfio-user
Change-Id: I9b45f8c14f61cd743cccafec9bad4456bc3a2ca7 Signed-off-by: Anton Nayshtut <anayshtut@nvidia.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24082 Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com>
show more ...
|
968224f4 | 05-Jul-2024 |
xupeng-mingtu <jingmamour@gmail.com> |
app/trace_record: add a optional option '-t'
Use '-t' option to specify the duration of the trace record in seconds, When the specified time is exceeded, spdk_trace_record will automatically exit
C
app/trace_record: add a optional option '-t'
Use '-t' option to specify the duration of the trace record in seconds, When the specified time is exceeded, spdk_trace_record will automatically exit
Change-Id: I8319d90790868bd5081107be9cae8d37c9c23343 Signed-off-by: xupeng-mingtu <jingmamour@gmail.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24087 Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
15c68d55 | 02-Jul-2024 |
Michael Piszczek <mpiszczek@ddn.com> |
spdk-top: Increase number of CPU cores supported to 1024
This patch increases the number of cores supported by spdk-top to 1024 to support systems with more lcores.
Not using SPDK_CONFIG_MAX_LCORES
spdk-top: Increase number of CPU cores supported to 1024
This patch increases the number of cores supported by spdk-top to 1024 to support systems with more lcores.
Not using SPDK_CONFIG_MAX_LCORES so spdk-top can be used independently on a different system and connect over network instead of RPC.
Fixes: #3425
Change-Id: I00b4412301447ae539012263e9323dbf63e5bc6a Signed-off-by: Michael Piszczek <mpiszczek@ddn.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24006 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Mellanox Build Bot Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
show more ...
|
3c8b6782 | 13-Jun-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
nvme: check hostnqn when attaching controllers
This ensures that a new controller will be attached when a controller with the same transport id, but a different hostnqn already exists. It can be us
nvme: check hostnqn when attaching controllers
This ensures that a new controller will be attached when a controller with the same transport id, but a different hostnqn already exists. It can be useful in cases where the target returns different namespace configuration based on the NQN of the host.
Additionally, because hostnqns are now always checked and the default hostnqn is built from nvme_driver.default_extended_host_id, unit tests had to be changed to ensure that this field is initialized.
Suggested-by: Jim Harris <jim.harris@samsung.com> Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: Ibb660d7f99ad67ff7c29658a7a7da7d8328b19d6 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23718 Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
23b5ae4c | 24-May-2024 |
Jim Harris <jim.harris@samsung.com> |
spdk_top: shorten Frequency column name
The numbers in this column are never more than 4 digits (until we have a 10GHz processor), so shorten this column name to "Freq [MHz]".
Signed-off-by: Jim Ha
spdk_top: shorten Frequency column name
The numbers in this column are never more than 4 digits (until we have a 10GHz processor), so shorten this column name to "Freq [MHz]".
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I5032e3920c207bbed4bb2fc8027822102ffb8903 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23387 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
show more ...
|
e5526eea | 24-May-2024 |
Jim Harris <jim.harris@samsung.com> |
spdk_top: add POLLER_TYPE_COUNT_STR_LEN
We previously had just POLLER_COUNT_STR_LEN, which was used both for the threads tab, which has columns "Active Pollers", "Timed Pollers" and "Paused Pollers"
spdk_top: add POLLER_TYPE_COUNT_STR_LEN
We previously had just POLLER_COUNT_STR_LEN, which was used both for the threads tab, which has columns "Active Pollers", "Timed Pollers" and "Paused Pollers", as well as the cores tab which just has "Pollers".
The cores tab suffers here, because it doesn't need the larger width since the column name is much shorter.
So add a new POLLER_TYPE_COUNT_STR_LEN which the threads tab will use, with the existing length. And change POLLER_COUNT_STR_LEN to better match the column name width.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: Ic29031ad41847250978ce48dc1f1b3af611d7839 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23386 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
show more ...
|
7ff7ec0e | 24-May-2024 |
Jim Harris <jim.harris@samsung.com> |
spdk_top: decrease cores tab threads width from 14 to 10
The number of threads is a relatively small number, we really only need width to match the "Threads" column name.
Signed-off-by: Jim Harris
spdk_top: decrease cores tab threads width from 14 to 10
The number of threads is a relatively small number, we really only need width to match the "Threads" column name.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: Iad92a6e470b6bf7055cd2fa9eb811e005afcd9d9 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23385 Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
860de8c3 | 10-Jun-2024 |
Shuhei Matsumoto <smatsumoto@nvidia.com> |
app/nvme_identify: Print NVM Identify Namespace Data for ELBA Format
Print NVM identify namespace data to test if it is retrieved correctly.
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
app/nvme_identify: Print NVM Identify Namespace Data for ELBA Format
Print NVM identify namespace data to test if it is retrieved correctly.
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: I4ab3baf15eb8533cee98ea00a9340c81aaeca8fb Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23623 Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
c0501887 | 10-Jun-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
perf: allow "=" in ns/hostnqn trid specification
The other trid components can be specified using "foo=" or "foo:", so this makes the other two work in the same way.
Signed-off-by: Konrad Sztyber <
perf: allow "=" in ns/hostnqn trid specification
The other trid components can be specified using "foo=" or "foo:", so this makes the other two work in the same way.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I502343d8a594d09b63471db46ce4868dd4462e43 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23590 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
show more ...
|