From b946b209b9c4d75af5b49b6187ecb70bd658728e Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Tue, 22 Jun 2021 15:46:33 +0200 Subject: memif: fix tx desc length for chained buffers in copy mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When enqueuing chained buffer, we must update the descriptor length for each fragment descriptor in addition to the last. Type: fix Change-Id: I9bc95fe557a049eeea4abd41c695153632d52a52 Signed-off-by: Benoît Ganne --- src/plugins/memif/device.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/plugins/memif') diff --git a/src/plugins/memif/device.c b/src/plugins/memif/device.c index 8e902feac08..fce4ab22004 100644 --- a/src/plugins/memif/device.c +++ b/src/plugins/memif/device.c @@ -177,6 +177,7 @@ retry: { slot++; free_slots--; + d0->length = dst_off; d0->flags = MEMIF_DESC_FLAG_NEXT; d0 = &ring->desc[slot & mask]; dst_off = 0; -- cgit 1.2.3-korg