Author: markj
Date: Thu Mar 17 18:49:37 2016
New Revision: 296989
URL: https://svnweb.freebsd.org/changeset/base/296989

Log:
  6734 dtrace_canstore_statvar() fails for some valid static variables
  
  Reviewed by: Dan McDonald <[email protected]>
  Approved by: Richard Lowe <[email protected]>
  Author: Bryan Cantrill <[email protected]>
  
  illumos/illumos-gate@d65f2bb4e50559c6c375a2aa9f728cbc34379015

Added:
  vendor/illumos/dist/cmd/dtrace/test/tst/common/scalars/tst.16kglobal.d   
(contents, props changed)
  vendor/illumos/dist/cmd/dtrace/test/tst/common/scalars/tst.16klocal.d   
(contents, props changed)

Changes in other areas also in this revision:
Modified:
  vendor-sys/illumos/dist/uts/common/dtrace/dtrace.c

Added: vendor/illumos/dist/cmd/dtrace/test/tst/common/scalars/tst.16kglobal.d
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ vendor/illumos/dist/cmd/dtrace/test/tst/common/scalars/tst.16kglobal.d      
Thu Mar 17 18:49:37 2016        (r296989)
@@ -0,0 +1,32 @@
+/*
+ * This file and its contents are supplied under the terms of the
+ * Common Development and Distribution License ("CDDL"), version 1.0.
+ * You may only use this file in accordance with the terms of version
+ * 1.0 of the CDDL.
+ *
+ * A full copy of the text of the CDDL should have accompanied this
+ * source.  A copy of the CDDL is also available via the Internet at
+ * http://www.illumos.org/license/CDDL.
+ */
+
+/*
+ * Copyright (c) 2016, Joyent, Inc. All rights reserved.
+ */
+
+#pragma D option strsize=16k
+
+char *k;
+
+BEGIN
+{
+       j = probeprov;
+       k = j;
+       k[0] = 'D';
+       k[1] = 'T';
+}
+
+BEGIN
+{
+       trace(stringof(k));
+       exit(k == "DTrace" ? 0 : 1);
+}

Added: vendor/illumos/dist/cmd/dtrace/test/tst/common/scalars/tst.16klocal.d
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ vendor/illumos/dist/cmd/dtrace/test/tst/common/scalars/tst.16klocal.d       
Thu Mar 17 18:49:37 2016        (r296989)
@@ -0,0 +1,29 @@
+/*
+ * This file and its contents are supplied under the terms of the
+ * Common Development and Distribution License ("CDDL"), version 1.0.
+ * You may only use this file in accordance with the terms of version
+ * 1.0 of the CDDL.
+ *
+ * A full copy of the text of the CDDL should have accompanied this
+ * source.  A copy of the CDDL is also available via the Internet at
+ * http://www.illumos.org/license/CDDL.
+ */
+
+/*
+ * Copyright (c) 2016, Joyent, Inc. All rights reserved.
+ */
+
+#pragma D option strsize=16k
+
+BEGIN
+{
+       this->j = probeprov;
+       this->j[0] = 'D';
+       this->j[1] = 'T';
+}
+
+BEGIN
+{
+       trace(this->j);
+       exit(this->j == "DTrace" ? 0 : 1);
+}
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to