From a445e45fa8312d1e86f1e19971ecccd2eabec823 Mon Sep 17 00:00:00 2001 From: Ziye Yang Date: Wed, 15 Jul 2020 08:02:48 +0800 Subject: [PATCH] sock/uring: Add the uring support in 20.07 release. We added the uring socket implemenation in 20.04, but we did not announce anything since uring is experimental and there is no test in our CI. Now, the uring socket implementation can be announced because we added the related test in our CI pool. Signed-off-by: Ziye Yang Change-Id: I1c4fbf84d46f8632e7468bc9833050ba30f90649 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/3336 Tested-by: SPDK CI Jenkins Community-CI: Mellanox Build Bot Reviewed-by: Paul Luse Reviewed-by: Shuhei Matsumoto Reviewed-by: Tomasz Zawadzki --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c77facdd..e9d5a0795 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -75,6 +75,10 @@ options. Options can be set independently for each implementation. Added `recv_buf_size` and 'send_buf_size' socket layer options. They are used only in posix implementation. +Added `uring` based socket implementation, the code is located in module/sock/uring. This feature is only +available in Linux which requires kernel version is greater than 5.4.3. Currently, our CI pool added the uring +based socket tests for iSCSI target and also the tests for SPDK NVMe-oF tcp transport. + ### vhost The function `spdk_vhost_blk_get_dev` has been removed.