From 6f5adb1b414533db7346fcc5e00e41089164ea62 Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Tue, 17 Jun 2025 16:32:48 -0700 Subject: [PATCH] eth: Reset pack_seq even if the header is not marked as valid Signed-off-by: Alex Forencich --- src/eth/tb/baser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/eth/tb/baser.py b/src/eth/tb/baser.py index 855597d..2a8d01c 100644 --- a/src/eth/tb/baser.py +++ b/src/eth/tb/baser.py @@ -732,6 +732,8 @@ class BaseRSerdesSink: if self.pack_seq < self.pack_cnt: continue + + self.pack_seq = 0 else: data = data_in hdr = hdr_in