svn commit: r222709 - head/sys/sys

Robert Watson rwatson at FreeBSD.org
Sun Jun 5 10:07:13 UTC 2011


Author: rwatson
Date: Sun Jun  5 10:07:12 2011
New Revision: 222709
URL: http://svn.freebsd.org/changeset/base/222709

Log:
  Correct a last minute merge error for new M_HASHTYPE macros.  This didn't
  turn up as a build problem because the macros aren't used (yet).
  
  MFC after:	3 days
  Sponsored by:	Juniper Networks, Inc.

Modified:
  head/sys/sys/mbuf.h

Modified: head/sys/sys/mbuf.h
==============================================================================
--- head/sys/sys/mbuf.h	Sun Jun  5 07:55:51 2011	(r222708)
+++ head/sys/sys/mbuf.h	Sun Jun  5 10:07:12 2011	(r222709)
@@ -247,7 +247,7 @@ struct mbuf {
 #define	M_HASHTYPE_SET(m, v)	do {					\
 	(m)->m_flags &= ~M_HASHTYPEBITS;				\
 	(m)->m_flags |= ((v) << M_HASHTYPE_SHIFT);			\
-while (0)
+} while (0)
 #define	M_HASHTYPE_TEST(m, v)	(M_HASHTYPE_GET(m) == (v))
 
 /*


More information about the svn-src-head mailing list