From 4dfd56e3524a61c34ff9ca8df4bc81961316ad41 Mon Sep 17 00:00:00 2001 From: markj Date: Wed, 5 Aug 2020 17:26:20 +0000 Subject: [PATCH] Fix the smrstress build after r358400. Reported by: pho --- tools/uma/smrstress/smrstress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/uma/smrstress/smrstress.c b/tools/uma/smrstress/smrstress.c index 0e4dcfeddf47..7e7ee4ea065c 100644 --- a/tools/uma/smrstress/smrstress.c +++ b/tools/uma/smrstress/smrstress.c @@ -68,7 +68,7 @@ smrs_error(struct smrs *smrs, const char *fmt, ...) atomic_add_int(&smrs_failures, 1); printf("SMR ERROR: wr_seq %d, rd_seq %d, c_seq %d, generation %d, count %d ", - smrs_smr->c_shared->s_wr_seq, smrs_smr->c_shared->s_rd_seq, + smrs_smr->c_shared->s_wr.seq, smrs_smr->c_shared->s_rd_seq, zpcpu_get(smrs_smr)->c_seq, smrs->generation, smrs->count); va_start(ap, fmt); (void)vprintf(fmt, ap);