From dfd1caf24e94fc825edea6f669a4b1fbd687ed44 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 21 Dec 2020 10:25:19 -0800 Subject: svm: honor max requested bytes in fifo segments Type: fix Signed-off-by: Florin Coras Change-Id: I00a6be53c4519937ac900560c669587921990821 --- src/svm/svm_fifo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/svm') diff --git a/src/svm/svm_fifo.c b/src/svm/svm_fifo.c index ff941a7a6dd..0c08dba7aa2 100644 --- a/src/svm/svm_fifo.c +++ b/src/svm/svm_fifo.c @@ -1289,7 +1289,7 @@ svm_fifo_segments (svm_fifo_t * f, u32 offset, svm_fifo_seg_t * fs, head_pos = start - c->start_byte; fs[0].data = c->data + head_pos; - fs[0].len = clib_min (c->length - head_pos, cursize - offset); + fs[0].len = clib_min (c->length - head_pos, to_read); n_bytes = fs[0].len; while (n_bytes < to_read && fs_index < n_segs) -- cgit 1.2.3-korg