svn commit: r246391 - vendor-sys/illumos/dist/uts/common/dtrace vendor/illumos/dist/cmd/dtrace/test/tst/common/pointers

Martin Matuska mm at FreeBSD.org
Wed Feb 6 08:17:30 UTC 2013


Author: mm
Date: Wed Feb  6 08:17:29 2013
New Revision: 246391
URL: http://svnweb.freebsd.org/changeset/base/246391

Log:
  Update vendor/illumos/dist and vendor-sys/illumos/dist
  to illumos-gate 13939:20e4d8d8da6d
  
  illumos dtrace issues:
    3511 dtrace.c erroneously checks for memory alignment on amd64

Modified:
  vendor-sys/illumos/dist/uts/common/dtrace/dtrace.c

Changes in other areas also in this revision:
Modified:
  vendor/illumos/dist/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress5.d

Modified: vendor-sys/illumos/dist/uts/common/dtrace/dtrace.c
==============================================================================
--- vendor-sys/illumos/dist/uts/common/dtrace/dtrace.c	Wed Feb  6 08:14:58 2013	(r246390)
+++ vendor-sys/illumos/dist/uts/common/dtrace/dtrace.c	Wed Feb  6 08:17:29 2013	(r246391)
@@ -355,7 +355,7 @@ static kmutex_t dtrace_errlock;
 #define	DTRACE_STORE(type, tomax, offset, what) \
 	*((type *)((uintptr_t)(tomax) + (uintptr_t)offset)) = (type)(what);
 
-#ifndef __i386
+#ifndef __x86
 #define	DTRACE_ALIGNCHECK(addr, size, flags)				\
 	if (addr & (size - 1)) {					\
 		*flags |= CPU_DTRACE_BADALIGN;				\


More information about the svn-src-all mailing list