svn commit: r210523 - stable/8/sys/sys

Alexander Motin mav at FreeBSD.org
Tue Jul 27 07:19:18 UTC 2010


Author: mav
Date: Tue Jul 27 07:19:17 2010
New Revision: 210523
URL: http://svn.freebsd.org/changeset/base/210523

Log:
  MFC r210443:
  Remove extra commas from KTR_EVENT4() macro to match number of CTR6() args.
  Comparing to other macros there should be strings concatenation, not a
  separate arguments.

Modified:
  stable/8/sys/sys/ktr.h
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/sys/ktr.h
==============================================================================
--- stable/8/sys/sys/ktr.h	Mon Jul 26 23:24:42 2010	(r210522)
+++ stable/8/sys/sys/ktr.h	Tue Jul 27 07:19:17 2010	(r210523)
@@ -201,7 +201,7 @@ void	ktr_tracepoint(u_int mask, const ch
 	    ident, edat, (v0), (v1), (v2))
 #define	KTR_EVENT4(m, egroup, ident, etype, edat,			\
 	    a0, v0, a1, v1, a2, v2, a3, v3)				\
-	CTR6(m,KTR_EFMT(egroup, ident, etype) a0 ", " a1 ", " a2, ", ", a3,\
+	CTR6(m,KTR_EFMT(egroup, ident, etype) a0 ", " a1 ", " a2 ", " a3,\
 	     ident, edat, (v0), (v1), (v2), (v3))
 
 /*


More information about the svn-src-all mailing list