Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Feb 2020 00:47:58 +0000 (UTC)
From:      Ryan Libby <rlibby@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357644 - head/sys/sys
Message-ID:  <202002070047.0170lw0p039543@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rlibby
Date: Fri Feb  7 00:47:58 2020
New Revision: 357644
URL: https://svnweb.freebsd.org/changeset/base/357644

Log:
  smr.h: fix build after r357641
  
  r357641 missed committing the change to sys/sys/smr.h.
  
  Reported by:	jkim
  Submitted by:	jeff
  Reviewed by:	rlibby
  Differential Revision:	https://reviews.freebsd.org/D23464

Modified:
  head/sys/sys/smr.h

Modified: head/sys/sys/smr.h
==============================================================================
--- head/sys/sys/smr.h	Thu Feb  6 21:46:15 2020	(r357643)
+++ head/sys/sys/smr.h	Fri Feb  7 00:47:58 2020	(r357644)
@@ -49,6 +49,7 @@
 #define	SMR_SEQ_LEQ(a, b)	((int32_t)((a)-(b)) <= 0)
 #define	SMR_SEQ_GT(a, b)	((int32_t)((a)-(b)) > 0)
 #define	SMR_SEQ_GEQ(a, b)	((int32_t)((a)-(b)) >= 0)
+#define	SMR_SEQ_DELTA(a, b)	((int32_t)((a)-(b)))
 
 #define	SMR_SEQ_INVALID		0
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002070047.0170lw0p039543>