Date: Tue, 27 Jul 2010 07:19:17 +0000 (UTC) From: Alexander Motin <mav@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r210523 - stable/8/sys/sys Message-ID: <201007270719.o6R7JHn1020791@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)) /*
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201007270719.o6R7JHn1020791>