Skip to content

Commit

Permalink
Merge #1539
Browse files Browse the repository at this point in the history
1539: fix(spdk): backport of SPDK fix for zero copy r=dsavitskiy a=dsavitskiy

SPDK change:
Fix sendmsg_idx rollover for zcopy.
If the idx gets to UINT32_MAX we need to ensure it doesn't wrap around before we check if we're done iterating.

This is a backport from SPDK v23.05.

Co-authored-by: Dmitry Savitskiy <[email protected]>
  • Loading branch information
mayastor-bors and dsavitskiy committed Nov 2, 2023
2 parents 3e10a3e + 49bcea0 commit 45b4141
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/pkgs/libspdk/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
let
# Derivation attributes for production version of libspdk
drvAttrs = rec {
version = "22.01-11c1aa03c";
version = "22.01-18cb979e5";

src = fetchFromGitHub {
owner = "openebs";
repo = "spdk";
rev = "11c1aa03c32158751694c7fed41612553f82a57d";
sha256 = "sha256-MIIH8HslQ1u9lTxX6MNxpclJ4bJ/HaMnCojeSmmNl5E=";
rev = "18cb979e595e171758565c03d21fc4bba7c917b9";
sha256 = "sha256-lm7oF/dhqxqex6jAibqopKl6er0rDsp/oTSwMxJs9OA=";
fetchSubmodules = true;
};

Expand Down

0 comments on commit 45b4141

Please sign in to comment.