| a3a12390 | 21-Sep-2023 |
Tomasz Zawadzki <tomasz.zawadzki@intel.com> |
version: 24.01-pre
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: Id21991a62bd7e70821098b6e4118917caa250e1d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/20018 Test
version: 24.01-pre
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Change-Id: Id21991a62bd7e70821098b6e4118917caa250e1d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/20018 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Wojciech Panfil <wojciech.panfil@intel.com>
show more ...
|
| a5ea50e7 | 09-Aug-2023 |
Maciej Mis <maciej.mis@intel.com> |
go/rpc: Integration of Go client as shared library with rpc.py
Change-Id: Ifbfa93ad71c6b3ec4e302c1d541affed6b92c794 Signed-off-by: Maciej Mis <maciej.mis@intel.com> Reviewed-on: https://review.spdk.
go/rpc: Integration of Go client as shared library with rpc.py
Change-Id: Ifbfa93ad71c6b3ec4e302c1d541affed6b92c794 Signed-off-by: Maciej Mis <maciej.mis@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19395 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 ...
|
| 6ecf0442 | 21-Sep-2023 |
Konrad Sztyber <konrad.sztyber@intel.com> |
bdev/nvme: add option to control accel sequence support
There are still some limitiations to the way IOs with an accel sequence are handled: mainly, they'll never be retried by bdev_nvme, because it
bdev/nvme: add option to control accel sequence support
There are still some limitiations to the way IOs with an accel sequence are handled: mainly, they'll never be retried by bdev_nvme, because it cannot re-execute an accel sequence (and it doesn't even know whether that sequence was executed or not).
We plan to address this issue in the future, but, in the interim, a new option, allow_accel_sequence, was added to allow users to control whether NVMe bdevs report support for accel sequences (of course the underlying controller must also support them).
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I560419c605b1f6e2f825a33411e06d120c4d5629 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/20014 Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
| 912597d2 | 15-Sep-2023 |
Sebastian Brzezinka <sebastian.brzezinka@intel.com> |
python/Makefile: remove `spdk.egg-info` after installation
spdk.egg-info is generated in the same directory as `setup.py`, can't find any options to specify alternative location, remove directory af
python/Makefile: remove `spdk.egg-info` after installation
spdk.egg-info is generated in the same directory as `setup.py`, can't find any options to specify alternative location, remove directory after install is done.
Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> Change-Id: Ie365491ac67f913205f2254dd5a365dc6493883d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19880 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Michal Berger <michal.berger@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
| 71185ac7 | 13-Sep-2023 |
Konrad Sztyber <konrad.sztyber@intel.com> |
rpc: remove mutable default argument
Using mutable objects (e.g. a dict) as default arguments to a function can lead to unexpected behavior, as the same object will be used for each call to that fun
rpc: remove mutable default argument
Using mutable objects (e.g. a dict) as default arguments to a function can lead to unexpected behavior, as the same object will be used for each call to that function. For example:
def foo(bar, baz=[]): baz.append(bar) return baz
>>> foo(1) [1] >>> foo(2) [1, 2]
We don't want params to be remembered between function calls, so they're now default initialized to None and set to an empty dict in the body of the function.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I63c71b5424286658759f09aed2d30c529c2d1081 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19807 Reviewed-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@gmail.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
show more ...
|
| 91c64673 | 16-Feb-2023 |
Sebastian Brzezinka <sebastian.brzezinka@intel.com> |
build: install python modules using setup.py
Add Makefile to install Python spdk modules, since python module path depend on distribution, add `pydir` variable to allow specify custom path.
Signed-
build: install python modules using setup.py
Add Makefile to install Python spdk modules, since python module path depend on distribution, add `pydir` variable to allow specify custom path.
Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> Change-Id: I2a2ba50142d2804eb56a98fe092098e7f3a53fdc Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16950 Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
| 7809cb41 | 01-Dec-2022 |
Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
module/passthru: add uuid option for creating passthru bdev
Change-Id: I1a298161018553feea00248568f2ea786a08ff64 Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://r
module/passthru: add uuid option for creating passthru bdev
Change-Id: I1a298161018553feea00248568f2ea786a08ff64 Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16157 Reviewed-by: Ben Walker <ben@nvidia.com> Community-CI: Mellanox Build Bot Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
| 71ae046a | 18-Jul-2023 |
Changpeng Liu <changpeng.liu@intel.com> |
lib/vhost_blk: remove `packed_ring_recovery` flag
No matter inflight fd is supported or not in QEMU, QEMU will not restore `last_used_idx` and `last_used_idx`, so it's always safe for the two cases,
lib/vhost_blk: remove `packed_ring_recovery` flag
No matter inflight fd is supported or not in QEMU, QEMU will not restore `last_used_idx` and `last_used_idx`, so it's always safe for the two cases, here we just remove this flag.
Fix issue #3070.
Change-Id: I739fe222e98a9e34ee24c3238906c6ff6a3cc44d Signed-off-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19130 Reviewed-by: Jim Harris <jim.harris@gmail.com> Community-CI: Mellanox Build Bot Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
| 4dacace1 | 01-Aug-2023 |
Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
bdev/error: add queue_depth option for error injection
Change-Id: If0805475eea4b3d160ee4a39d617683df9375971 Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://review
bdev/error: add queue_depth option for error injection
Change-Id: If0805475eea4b3d160ee4a39d617683df9375971 Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19316 Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
show more ...
|
| 408a2155 | 27-Jul-2023 |
Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
bdev/error: add nomem error type
Change-Id: Ib957ce29bd02e385ddfc137c0015878362dd8faa Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk
bdev/error: add nomem error type
Change-Id: Ib957ce29bd02e385ddfc137c0015878362dd8faa Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19315 Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
| bef7abee | 23-May-2023 |
Shuhei Matsumoto <smatsumoto@nvidia.com> |
bdev/nvme: Add bdev_nvme_enable/disable_controller RPC
Based on preparation, simply add bdev_nvme_enable_controller and bdev_nvme_disable_controller RPCs.
Signed-off-by: Shuhei Matsumoto <smatsumot
bdev/nvme: Add bdev_nvme_enable/disable_controller RPC
Based on preparation, simply add bdev_nvme_enable_controller and bdev_nvme_disable_controller RPCs.
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: Ic70413a678ce6bb889dcbe7122d5283e03e94a0f Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/18268 Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Richael <richael.zhuang@arm.com>
show more ...
|
| 23850b03 | 14-Oct-2022 |
Krzysztof Smolinski <krzysztof.smolinski@intel.com> |
module/raid: bdev_raid_remove_base_bdev rpc
Change-Id: I4829f6cd0c10bfcd2c6893cf9412fc974c4b338c Signed-off-by: Krzysztof Smolinski <krzysztof.smolinski@intel.com> Signed-off-by: Artur Paszkiewicz <
module/raid: bdev_raid_remove_base_bdev rpc
Change-Id: I4829f6cd0c10bfcd2c6893cf9412fc974c4b338c Signed-off-by: Krzysztof Smolinski <krzysztof.smolinski@intel.com> Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15267 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
show more ...
|
| 6f2e8fa5 | 23-May-2023 |
Shuhei Matsumoto <smatsumoto@nvidia.com> |
bdev/nvme: Add nvme_bdev_ctrlr_op_rpc() to operate all ctrlrs in a nbdev_ctrlr
The bdev_nvme_reset_controller RPC was convenient but did not support multipath configuration. Support multipath config
bdev/nvme: Add nvme_bdev_ctrlr_op_rpc() to operate all ctrlrs in a nbdev_ctrlr
The bdev_nvme_reset_controller RPC was convenient but did not support multipath configuration. Support multipath configuration in this patch.
Add nvme_bdev_ctrlr_op_rpc() to operate all ctrlrs in a nbdev_ctrlr.
Add a new parameter cntlid to the bdev_nvme_reset_controller RPC.
The bdev_nvme_reset_controller RPC calls nvme_ctrlr_op_rpc() if cntlid is omitted or nvme_bdev_ctrlr_op_rpc() otherwise.
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: I9e71db79ad395428bb07c4bbf64d615fda711420 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16744 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Richael <richael.zhuang@arm.com> Community-CI: Mellanox Build Bot Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
show more ...
|
| 606c4a83 | 20-Mar-2023 |
Xin Yang <Xin.Yang@arm.com> |
sma: raise an error if the device handle is invalid for DetachVolume()
Throw a DeviceException to maintain consistency with the implementation of other RPC interfaces.
Signed-off-by: Xin Yang <Xin.
sma: raise an error if the device handle is invalid for DetachVolume()
Throw a DeviceException to maintain consistency with the implementation of other RPC interfaces.
Signed-off-by: Xin Yang <Xin.Yang@arm.com> Change-Id: I0eb7cfefbb6405da7c68f42a4a22c3016308023a Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17300 Reviewed-by: Ziye Yang <ziye.yang@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Yibo Cai <yibo.cai@arm.com> Reviewed-by: Artek Koltun <artsiom.koltun@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
| 2d355b3a | 17-May-2023 |
Konrad Sztyber <konrad.sztyber@intel.com> |
version: 23.09-pre
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I44ad322311a41e2e7582723ebe8beb50ac070237 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/18164 Review
version: 23.09-pre
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I44ad322311a41e2e7582723ebe8beb50ac070237 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/18164 Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
| 03b6183a | 04-May-2023 |
Krzysztof Karas <krzysztof.karas@intel.com> |
tcp: change the way we pass PSKs
Read PSKs from a file, instead of passing them around as command line arguments. Rename arguments and fields "psk" and "psk_key" to "psk_path".
Change-Id: I78bc1850
tcp: change the way we pass PSKs
Read PSKs from a file, instead of passing them around as command line arguments. Rename arguments and fields "psk" and "psk_key" to "psk_path".
Change-Id: I78bc18503879697c21e5650226ccc34d917111ae Signed-off-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/18005 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
| 1df4f4bb | 17-Apr-2023 |
Krzysztof Karas <krzysztof.karas@intel.com> |
sock: remove global PSK related code
We will no longer support setting global PSK and PSK identity via sock_impl_set_options RPC - PSK related operations are now handled by TCP transport.
Change-Id
sock: remove global PSK related code
We will no longer support setting global PSK and PSK identity via sock_impl_set_options RPC - PSK related operations are now handled by TCP transport.
Change-Id: I41d28dafc25696f98fd68239675bb1ce85629045 Signed-off-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17603 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
| 663243cb | 14-Nov-2022 |
Krzysztof Karas <krzysztof.karas@intel.com> |
nvmf: add implementation of subsystem_add/remove_host()
Add implementation of previously introduced subsystem_add_host() and subsystem_remove_host() callback in TCP transport.
nvmf_subystem_add_hos
nvmf: add implementation of subsystem_add/remove_host()
Add implementation of previously introduced subsystem_add_host() and subsystem_remove_host() callback in TCP transport.
nvmf_subystem_add_host() generates PSK identity based on hostnqn and subnqn and stores it in a list inside nvmf TCP transport.
nvmf_subsystem_remove_host() searches for a pair (subnqn, hostnqn) in the list and removes that entry.
Change-Id: I244dd1b3eca7dd58896e1ee463e04865810c3916 Signed-off-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15448 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Community-CI: Mellanox Build Bot
show more ...
|
| 92595a58 | 16-May-2023 |
Konrad Sztyber <konrad.sztyber@intel.com> |
bdev: remove {small,large}_buf_pool_size from spdk_bdev_opts
These options were marked as deprecated and to be removed in v23.05. Users should use iobuf_set_options instead.
Signed-off-by: Konrad S
bdev: remove {small,large}_buf_pool_size from spdk_bdev_opts
These options were marked as deprecated and to be removed in v23.05. Users should use iobuf_set_options instead.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: Iaba5796c81f8bae89a1c779da9c3944539d9b658 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/18123 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
| 3b8b12cd | 07-Apr-2023 |
Jacek Kalwas <jacek.kalwas@intel.com> |
accel: add tweak mode support
It was already done on SMA layer before, that is just an alignment.
Signed-off-by: Jacek Kalwas <jacek.kalwas@intel.com> Change-Id: I247b7973335745153a2371680d5d405068
accel: add tweak mode support
It was already done on SMA layer before, that is just an alignment.
Signed-off-by: Jacek Kalwas <jacek.kalwas@intel.com> Change-Id: I247b7973335745153a2371680d5d405068880426 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17528 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
| b618f056 | 24-Jan-2023 |
Yue-Zhu <yue.zhu@ibm.com> |
rbd_bdev: add core mask for librbd/librados threads
Add core_mask option to allow specify core mask for librbd/librados threads (non-spdk threads), when registering rbd cluster via bdev_rbd_register
rbd_bdev: add core mask for librbd/librados threads
Add core_mask option to allow specify core mask for librbd/librados threads (non-spdk threads), when registering rbd cluster via bdev_rbd_register_cluster. Also, update bdev_rbd_get_clusters_info to get librbd/librados core mask.
Signed-off-by: Yue-Zhu <yue.zhu@ibm.com> Change-Id: Iedeb508bbcf2ec97c3fdd81a6564bbddb4fc660a Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16451 Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
| 508531e1 | 04-May-2023 |
Konrad Sztyber <konrad.sztyber@intel.com> |
python: add setup script
It allows people to install our python scripts as a regular python package via pip. For now the script is very basic, but we can extend it in the future (e.g. list dependen
python: add setup script
It allows people to install our python scripts as a regular python package via pip. For now the script is very basic, but we can extend it in the future (e.g. list dependencies).
Also, python uses a different version format than we do (see PEP 440), so the version reported by the python scripts will be a little different: the leading zero in the minor part is removed and "-pre" is replaced with "rc0". For instance, "23.05-pre" will be reported as "23.5rc0".
Additionally, a simple test was added that will make sure that the version in the scripts is consistent with the version in the .c code.
Fixes #2997.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I86b70adb121bf824ccabb6968103b7f6ffc3150d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17935 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Michal Berger <michal.berger@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
show more ...
|
| b419ad2c | 04-May-2023 |
Konrad Sztyber <konrad.sztyber@intel.com> |
python: add __init__.py in protobuf directory
Once we have setup.py for our python scripts, that __init__.py will be required to include this directory in the resulting archive.
Also, changed .giti
python: add __init__.py in protobuf directory
Once we have setup.py for our python scripts, that __init__.py will be required to include this directory in the resulting archive.
Also, changed .gitignore order to make sure that __init__.py isn't ignored.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: Ie00e04e131059c8c968983ab44249ca6b6a296f7 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17934 Reviewed-by: Pawel Piatek <pawelx.piatek@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Michal Berger <michal.berger@intel.com> Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
show more ...
|
| 6b79f767 | 01-May-2023 |
Amir Haroush <amir.haroush@huawei.com> |
bdev/ocf: add bdev_ocf_reset_stats RPC
Signed-off-by: Amir Haroush <amir.haroush@huawei.com> Signed-off-by: Shai Fultheim <shai.fultheim@huawei.com> Change-Id: Ife91df62099e14d328a767b1bbb3ddd3ded57
bdev/ocf: add bdev_ocf_reset_stats RPC
Signed-off-by: Amir Haroush <amir.haroush@huawei.com> Signed-off-by: Shai Fultheim <shai.fultheim@huawei.com> Change-Id: Ife91df62099e14d328a767b1bbb3ddd3ded57264 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17916 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
show more ...
|
| f3c14b8d | 10-Apr-2023 |
Mike Gerdts <mgerdts@nvidia.com> |
vbdev_lvol: add bdev_lvol_get_lvols RPC
This provides information about logical volumes without providing information about the bdevs. It is useful for listing the lvols associated with specific lvo
vbdev_lvol: add bdev_lvol_get_lvols RPC
This provides information about logical volumes without providing information about the bdevs. It is useful for listing the lvols associated with specific lvol stores and for listing lvols that are degraded and have no associated bdev.
Signed-off-by: Mike Gerdts <mgerdts@nvidia.com> Change-Id: I795161ac88d9707831d9fcd2079635c7e46ecc42 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17547 Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|