cec5ba28 | 23-Aug-2024 |
Alexey Marchuk <alexeymar@nvidia.com> |
nvme/rdma: Register UMR per IO request
If accel sequence is supported, append a copy task even if there is no accel sequence. NVME RDMA driver expects that accel framework registers UMR for the data
nvme/rdma: Register UMR per IO request
If accel sequence is supported, append a copy task even if there is no accel sequence. NVME RDMA driver expects that accel framework registers UMR for the data buffer. This UMR allows to represent fragmented payload as a virtually contig one.
Signed-off-by: Alexey Marchuk <alexeymar@nvidia.com> Change-Id: I410f991959b08eab033105a7dbb4a9aaba491567 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24709 Reviewed-by: Ben Walker <ben@nvidia.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Reviewed-by: Jim Harris <jim.harris@nvidia.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.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 ...
|
afdec00e | 06-Nov-2024 |
Shuhei Matsumoto <smatsumoto@nvidia.com> |
nvmf: Add hide_metadata option to nvmf_subsystem_add_ns
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: I518c3cc5fdcb16b41f1e3bda1debf5cb3cc9c47b Reviewed-on: https://review.spdk.
nvmf: Add hide_metadata option to nvmf_subsystem_add_ns
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: I518c3cc5fdcb16b41f1e3bda1debf5cb3cc9c47b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25413 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Jim Harris <jim.harris@nvidia.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
show more ...
|
e0d7428b | 23-Oct-2024 |
Atul Malakar <a.malakar@samsung.com> |
lvol: Add custom metadata page size to lvstore
Added new --md_page_size parameter to bdev_lvol_create_lvstore RPC. It facilitates user to pick a custom md_page_size, greater than phys_blocklen of th
lvol: Add custom metadata page size to lvstore
Added new --md_page_size parameter to bdev_lvol_create_lvstore RPC. It facilitates user to pick a custom md_page_size, greater than phys_blocklen of the underlying device.
This will allow functional testing of the large IU metadata changes on 4K IU NVMe SSDs.
Change-Id: Ib1bc68ba4d5b8a7db7f2befc1f616b342c01bc0f Signed-off-by: Atul Malakar <a.malakar@samsung.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25304 Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Jim Harris <jim.harris@nvidia.com>
show more ...
|
637d0d0b | 21-Oct-2024 |
Michal Berger <michal.berger@intel.com> |
scripts/rpc: Fix conserve_cpu arg in bdev_xnvme_create()
Currently, there's no way to actually change this arg while calling this particular rpc. So make sure it's possible, and keep it as an option
scripts/rpc: Fix conserve_cpu arg in bdev_xnvme_create()
Currently, there's no way to actually change this arg while calling this particular rpc. So make sure it's possible, and keep it as an optional arg with default still set to False (as per b99b00e595).
Change-Id: I889179bfa46a6261d2e30eeba4a5a14395e756a5 Signed-off-by: Michal Berger <michal.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25287 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Pawel Piatek <pawelx.piatek@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <jim.harris@nvidia.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Reviewed-by: Karl Bonde Torp <k.torp@samsung.com>
show more ...
|
c02c5e04 | 24-Oct-2024 |
Michal Berger <michal.berger@intel.com> |
scripts/bash-completion: Speed up rpc lookup
Do this by caching completions to avoid costly run through the help parser. We cache each completion since it's very unlikely that help for given RPC met
scripts/bash-completion: Speed up rpc lookup
Do this by caching completions to avoid costly run through the help parser. We cache each completion since it's very unlikely that help for given RPC method may suddenly change.
One exception here is a list of available RPCs methods which may change depending on if rpc.py "get"s it while connecting through an actual app socket. Here, we need to reset the cached list whenever sock changes or when actual list gets cleaned up.
The overall result should be better user experience with faster responsiveness while tab'ing through the available opts.
Change-Id: Ia2e10957558095e22adc57aaed300e121c682d40 Signed-off-by: Michal Berger <michal.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25362 Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Jim Harris <jim.harris@nvidia.com>
show more ...
|
008a6371 | 05-Jul-2024 |
Alexey Marchuk <alexeymar@nvidia.com> |
accel/mlx5: Initial implementation of mlx5 platform driver
Now we just execute all tasks one by one. The driver supports only limited scope of operations and disabled by default
Signed-off-by: Alex
accel/mlx5: Initial implementation of mlx5 platform driver
Now we just execute all tasks one by one. The driver supports only limited scope of operations and disabled by default
Signed-off-by: Alexey Marchuk <alexeymar@nvidia.com> Change-Id: I1478db685b1621a4610be1c80929d62d1106e908 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24698 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com> Community-CI: Mellanox Build Bot Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com>
show more ...
|
42d1bd28 | 12-Aug-2024 |
Jim Harris <jim.harris@samsung.com> |
thread: add enable_numa parameter to iobuf_set_options RPC
This parameter does not yet actually enable per-NUMA node iobuf buffer pools. It only checks that the application was built with support fo
thread: add enable_numa parameter to iobuf_set_options RPC
This parameter does not yet actually enable per-NUMA node iobuf buffer pools. It only checks that the application was built with support for the number of NUMA nodes reported by the system.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I1b9d11ccb8f6914280874a40754c51625d21645d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24539 Reviewed-by: Ben Walker <ben@nvidia.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Mellanox Build Bot
show more ...
|
1042d663 | 11-Oct-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
env_dpdk: align dpdk headers with upstream
A recent commit in dpdk, 719834a6849e ("use C linkage where appropriate in headers") changed the scope of the extern "C", such that it didn't include #incl
env_dpdk: align dpdk headers with upstream
A recent commit in dpdk, 719834a6849e ("use C linkage where appropriate in headers") changed the scope of the extern "C", such that it didn't include #include directives. Since we never pull those headers from c++ code, add patch files to make scripts/env_dpdk/check_dpdk_pci_api.sh happy.
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I3368a8355302cd772e835f9244fe6581163c04d3 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/25196 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Community CI Samsung <spdk.community.ci.samsung@gmail.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Michal Berger <michal.berger@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com>
show more ...
|
3a02df0b | 30-Aug-2024 |
Jim Harris <jim.harris@samsung.com> |
event: add new 'mappings' parameter to static scheduler
This is useful for testing purposes, to place specific spdk_threads on specific cores. Specified core must be in the thread's cpumask.
Usage:
event: add new 'mappings' parameter to static scheduler
This is useful for testing purposes, to place specific spdk_threads on specific cores. Specified core must be in the thread's cpumask.
Usage:
scripts/rpc.py framework_set_scheduler --mappings='2:0,5:1'
This will move thread 2 to core 0 and thread 5 to core 1.
Note: checking for failure when setting core-limit parameter on static scheduler has been removed. The whole mechanism for determine which optional parameters are accepted for different schedulers needs to be rethought, the current mechanism is not really working.
Signed-off-by: Jim Harris <jim.harris@samsung.com> Change-Id: I16000805b8e2512f7ec6d84ee812d32bfcb2fd6d Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24766 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Changpeng Liu <changpeliu@tencent.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Reviewed-by: Anisa Su <anisa.su@samsung.com> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
show more ...
|
92108e0a | 26-Jun-2024 |
Yoray Zack <yorayz@nvidia.com> |
fsdev/aio: add support for null IOs
This patch adds support for null IOs in the AIO fsdev by introducing a new RPC flag (--enable-skip-rw) during fsdev creation.
When enabled, the AIO fsdev will sk
fsdev/aio: add support for null IOs
This patch adds support for null IOs in the AIO fsdev by introducing a new RPC flag (--enable-skip-rw) during fsdev creation.
When enabled, the AIO fsdev will skip read/write operations, similar to how the null bdev operates in the bdev module.
This feature facilitates performance testing across the entire stack without actual data read/write operations. Implementing this within the fsdev/aio module, rather than creating a separate fsdev/null module, avoids unnecessary code duplication and keeps the AIO fsdev focused as a comprehensive example demonstrating various features, including null IO capability.
Change-Id: Id7e84711628f23e6faa9128f9e428f759e0032c9 Signed-off-by: Yoray Zack <yorayz@nvidia.com> Signed-off-by: Vishwanath Venkatesan <vvenkatesan@nvidia.com> Signed-off-by: Ben Walker <ben@nvidia.com> Signed-off-by: Anton Nayshtut <anayshtut@nvidia.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24563 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Reviewed-by: Changpeng Liu <changpeliu@tencent.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
63e0c25d | 12-Sep-2024 |
Vasilii Ivanov <iwanovvvasilij@gmail.com> |
bdev: add reset_mode to bdev_get_iostat
In current implementation of resetting stats explicit bdev_reset_iostat call is needed. It is not optimal for usecases when stat is obtained periodically and
bdev: add reset_mode to bdev_get_iostat
In current implementation of resetting stats explicit bdev_reset_iostat call is needed. It is not optimal for usecases when stat is obtained periodically and then resetted, because some stats may be lost in between of get and reset. Introduce new option for bdev_get_iostat that allows to reset stat right after obtaining it.
Fixes #3525
Change-Id: I77a5ea9310718c25e678336e2450a04fb582c050 Signed-off-by: Vasilii Ivanov <iwanovvvasilij@gmail.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24900 Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
4d0ed159 | 20-Sep-2024 |
Michal Berger <michal.berger@intel.com> |
scripts/pkgdep: Add lcov to freebsd dependencies
Since 5bba19516f removed lcov from pkgdep/git we need to make sure pkgdep can still provide it for all supported distro; since 11abc273db and 5994802
scripts/pkgdep: Add lcov to freebsd dependencies
Since 5bba19516f removed lcov from pkgdep/git we need to make sure pkgdep can still provide it for all supported distro; since 11abc273db and 599480221d lcov is mandatory for autotest to successfully complete.
Change-Id: I4d0ff032445f47e67339183e48ced7e8a3c8faf7 Signed-off-by: Michal Berger <michal.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24973 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.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 ...
|
6f4e195f | 19-Sep-2024 |
Michal Berger <michal.berger@intel.com> |
scripts/pkgdep: Add patchelf to ubuntu dependencies
This tool is unconditionally used by spdk.common.mk and is already part of fedora dependencies so make sure ubuntu is aligned.
Change-Id: I945abe
scripts/pkgdep: Add patchelf to ubuntu dependencies
This tool is unconditionally used by spdk.common.mk and is already part of fedora dependencies so make sure ubuntu is aligned.
Change-Id: I945abe077fb450e5a41448dfff3187849af04589 Signed-off-by: Michal Berger <michal.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24968 Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
show more ...
|
8d3f8fb8 | 01-Jul-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
bdev/nvme: add method for changing DH-HMAC-CHAP keys
This method will change the keys on all multipath controllers and force reauthentication on all qpairs. The high level flow looks like this:
1
bdev/nvme: add method for changing DH-HMAC-CHAP keys
This method will change the keys on all multipath controllers and force reauthentication on all qpairs. The high level flow looks like this:
1) Set the keys on the first multipath controller. 2) Authenticate admin qpair. 3) Go over all IO channels and authenticate IO qpairs on each one. 4) If there's no next multipath controller, we're done, otherwise set keys on that controller and go to 2).
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: Iec0de19f1a9326cf32c9b27acaab117100616770 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24236 Community-CI: Mellanox Build Bot 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> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com>
show more ...
|
cb645ed6 | 17-Jun-2024 |
Michal Berger <michal.berger@intel.com> |
scripts/perf: Dump cpu-temp data to stdout
This was missed and the actual output was being dumped only to a file upon termination. As with any other perf/pm/ tool, make sure each reading is dumped t
scripts/perf: Dump cpu-temp data to stdout
This was missed and the actual output was being dumped only to a file upon termination. As with any other perf/pm/ tool, make sure each reading is dumped to stdout by default as well.
Change-Id: I3ec6199ca7c998573cdec07d1d5b344f2b00e4d6 Signed-off-by: Michal Berger <michal.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23743 Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
04d51ba0 | 02-Sep-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
test/keyring: ensure session keyring is available
The keyring_linux tests require the session keyring to be available. Usually, it's created on login and destroyed on logout, so it is always availab
test/keyring: ensure session keyring is available
The keyring_linux tests require the session keyring to be available. Usually, it's created on login and destroyed on logout, so it is always available, but it's possible to revoke it (keyctl revoke @s), causing the tests to fail.
So, to avoid relying on system configuration, always run these tests under a new session.
Fixes: #3492
Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: Ie30ef624f6f14a634beb7d8a49b1e3e3e334e92f Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24774 Reviewed-by: Michal Berger <michal.berger@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz@tzawadzki.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com>
show more ...
|
fe7bb7bd | 10-May-2024 |
Alexey Marchuk <alexeymar@nvidia.com> |
accel/mlx5: Add statistics
Collect statistics per accel opcode, per mlx5 operation, polling and nomem statistics The statistics can be retrieved per channel, per device per channel and accumulated p
accel/mlx5: Add statistics
Collect statistics per accel opcode, per mlx5 operation, polling and nomem statistics The statistics can be retrieved per channel, per device per channel and accumulated per module
Signed-off-by: Alexey Marchuk <alexeymar@nvidia.com> Change-Id: I082e1556295071d0243037fd810bb6ade752c352 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23141 Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|
ddd4603c | 06-Aug-2024 |
Yankun Li <845245370@qq.com> |
bdev/compress: Supports the specified compression algorithm
compress bdev Indicates that compression uses the synchronization mechanism and only deflate is supported. However, for some business scen
bdev/compress: Supports the specified compression algorithm
compress bdev Indicates that compression uses the synchronization mechanism and only deflate is supported. However, for some business scenarios, it is more concerned with compression performance than compression rate. So we provide extensions that support multiple compression algorithms
Change-Id: I36b93875eed3069aa0c74843d98e4a0c90412b9e Signed-off-by: Yankun Li <845245370@qq.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24452 Reviewed-by: GangCao <gang.cao@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> 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 ...
|
698b2423 | 05-Jul-2024 |
Shuhei Matsumoto <smatsumoto@nvidia.com> |
rpc: Add nvmf_subsystem_set_ns_ana_group RPC
Add nvmf_subsystem_set_ana_group RPC to change ANA group ID of a namespace in a subsystem dynamically.
Probably, we can change ANA group ID safely witho
rpc: Add nvmf_subsystem_set_ns_ana_group RPC
Add nvmf_subsystem_set_ana_group RPC to change ANA group ID of a namespace in a subsystem dynamically.
Probably, we can change ANA group ID safely without pausing subsystem. However, we pause subsystem as same as other configuration changes for now.
Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Suggested-by: Leonid Chernin <leonidc@il.ibm.com> Tested-by: Leonid Chernin <leonidc@il.ibm.com> Change-Id: I6fa4a9560ef75cdf3abb9428849ee2ffcea85136 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24060 Community-CI: Mellanox Build Bot Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
show more ...
|
6fac5aab | 13-Aug-2024 |
Yankun Li <845245370@qq.com> |
script/pkgdep: add the lz4 library for accel compression
lz4 is a very fast compression package, it will be added to accel, here you need to update the CI image to install lz4 development kit.
Base
script/pkgdep: add the lz4 library for accel compression
lz4 is a very fast compression package, it will be added to accel, here you need to update the CI image to install lz4 development kit.
Based on this patch, functions supporting lz4 compression and decompression will be developed in accel sw.
Change-Id: I320ee06fd709c9cf59eb43affb44d3aab5ea3de3 Signed-off-by: Yankun Li <845245370@qq.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24550 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 ...
|
2186fc03 | 11-Sep-2024 |
Zhangfei Gao <zhangfei.gao@linaro.org> |
accel/dpdk_compressdev: Support uadk compress pmd
Add support of UADK Compress Poll Mode Driver to accel/dpdk_compressdev.
build: ./configure --with-dpdk-uadk --with-dpdk-compressdev make
./build
accel/dpdk_compressdev: Support uadk compress pmd
Add support of UADK Compress Poll Mode Driver to accel/dpdk_compressdev.
build: ./configure --with-dpdk-uadk --with-dpdk-compressdev make
./build/bin/spdk_tgt -m 0xf0 --wait-for-rpc
./scripts/rpc.py compressdev_scan_accel_module -p 3 ./scripts/rpc.py accel_assign_opc -o compress -m dpdk_compressdev ./scripts/rpc.py accel_assign_opc -o decompress -m dpdk_compressdev ./scripts/rpc.py framework_start_init ./scripts/rpc.py accel_get_opc_assignments
Change-Id: I202c17c3a936208901a3bdc6bb2a11ddc88875f7 Signed-off-by: Zhangfei Gao <zhangfei.gao@linaro.org> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23738 Reviewed-by: Changpeng Liu <changpeliu@tencent.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: Jim Harris <jim.harris@samsung.com>
show more ...
|
8a4b7226 | 12-Jun-2024 |
Konrad Sztyber <konrad.sztyber@intel.com> |
nvmf/auth: add method for changing keys
This allows users to change the DH-HMAC-CHAP keys without removing/re-adding hosts to a subsystem. That means that keys can be changed without terminating ex
nvmf/auth: add method for changing keys
This allows users to change the DH-HMAC-CHAP keys without removing/re-adding hosts to a subsystem. That means that keys can be changed without terminating existing connections.
Once the keys are changed, new connections, as well as reauthentication requests on the already established connections, will be required to use the new keys.
Change-Id: I09e112ae73e4afebd452a3ebd19264cc8217d1f8 Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/23822 Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <ben@nvidia.com> Community-CI: Mellanox Build Bot
show more ...
|
9dab033a | 15-Dec-2023 |
Michal Berger <michal.berger@intel.com> |
scripts/perf: Remove vhost/common.sh source from run_vhost_test.sh
It's slurped only to get default $VM_IMAGE which is already parametrized and quite dependent on user's input.
Change-Id: If98698e1
scripts/perf: Remove vhost/common.sh source from run_vhost_test.sh
It's slurped only to get default $VM_IMAGE which is already parametrized and quite dependent on user's input.
Change-Id: If98698e1d32244711c594316d4d6a2076d978524 Signed-off-by: Michal Berger <michal.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/21060 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com>
show more ...
|
0616beb5 | 17-Jul-2024 |
Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
scripts/check_format: further limit astyle versions
Only allow astyle versions between 3.0.1 and 3.1. Other versions cause formatting changes in existing code.
Signed-off-by: Artur Paszkiewicz <art
scripts/check_format: further limit astyle versions
Only allow astyle versions between 3.0.1 and 3.1. Other versions cause formatting changes in existing code.
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Change-Id: I998f083749374e4d7061c522108f33a82a3869f2 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/24217 Reviewed-by: Michal Berger <michal.berger@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <jim.harris@samsung.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
show more ...
|