svm: honor max requested bytes in fifo segments 23/30523/3
authorFlorin Coras <fcoras@cisco.com>
Mon, 21 Dec 2020 18:25:19 +0000 (10:25 -0800)
committerDave Barach <openvpp@barachs.net>
Mon, 21 Dec 2020 19:50:19 +0000 (19:50 +0000)
Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I00a6be53c4519937ac900560c669587921990821

src/svm/svm_fifo.c

index ff941a7..0c08dba 100644 (file)
@@ -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)