From 3db2b0d5ffd6725ee461250fcda9024ea69b9925 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Tue, 14 Jul 2020 15:05:24 +0000 Subject: [PATCH] safexcel(4): Fix the INVARIANTS build after a last-second change. Reported by: Jenkins MFC with: r363180 --- sys/dev/safexcel/safexcel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/safexcel/safexcel.c b/sys/dev/safexcel/safexcel.c index d7fee9b42a29..e59a82e01195 100644 --- a/sys/dev/safexcel/safexcel.c +++ b/sys/dev/safexcel/safexcel.c @@ -1896,8 +1896,8 @@ safexcel_cmd_descr_add(struct safexcel_ring *ring, bool first, bool last, struct safexcel_cmd_descr *cdesc; struct safexcel_cmd_descr_ring *cring; - KASSERT(full_data_len <= SAFEXCEL_MAX_REQUEST_SIZE, - ("%s: request length %u too long", __func__, full_data_len)); + KASSERT(reqlen <= SAFEXCEL_MAX_REQUEST_SIZE, + ("%s: request length %u too long", __func__, reqlen)); mtx_assert(&ring->mtx, MA_OWNED); cring = &ring->cdr;