FYI: hotspot tapset object_alloc size fixlet.

Mark Wielaard mark at klomp.org
Tue Jul 13 02:48:44 PDT 2010


Hi,

Will Cohen noticed that the size variable of the hotspot object_alloc
probe was grabbing the wrong argument. Fixed as follows:

diff -r 83395fabed02 -r bd9b46091cd7 ChangeLog
--- a/ChangeLog	Mon Jul 12 18:41:55 2010 -0400
+++ b/ChangeLog	Tue Jul 13 11:46:10 2010 +0200
@@ -1,3 +1,8 @@
+2010-07-13  Mark Wielaard  <mjw at redhat.com>
+
+	Reported by William Cohen <wcohen at redhat.com>
+	* tapset/hotspot.stp.in (object_alloc): size is arg4, not arg3.
+
 2010-06-14  Deepak Bhole <dbhole at redhat.com>
 
 	* plugin/icedteanp/IcedTeaJavaRequestProcessor.cc: Use variadic macro
diff -r 83395fabed02 -r bd9b46091cd7 tapset/hotspot.stp.in
--- a/tapset/hotspot.stp.in	Mon Jul 12 18:41:55 2010 -0400
+++ b/tapset/hotspot.stp.in	Tue Jul 13 11:46:10 2010 +0200
@@ -120,7 +120,7 @@
   name = "object_alloc";
   thread_id = $arg1;
   class = user_string_n($arg2, $arg3);
-  size = $arg3;
+  size = $arg4;
   probestr = sprintf("%s(thread_id=%d,class='%s',size=0x%x)",
                      name, thread_id, class, size);
 }

Committed and pushed.

Thanks Will.




More information about the distro-pkg-dev mailing list