Author: markj
Date: Wed Aug  5 17:26:20 2020
New Revision: 363925
URL: https://svnweb.freebsd.org/changeset/base/363925

Log:
  Fix the smrstress build after r358400.
  
  Reported by:  pho

Modified:
  head/tools/uma/smrstress/smrstress.c

Modified: head/tools/uma/smrstress/smrstress.c
==============================================================================
--- head/tools/uma/smrstress/smrstress.c        Wed Aug  5 17:14:37 2020        
(r363924)
+++ head/tools/uma/smrstress/smrstress.c        Wed Aug  5 17:26:20 2020        
(r363925)
@@ -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);
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to