This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug translator/5608] New: Translator shouldn't allow using marker probe arguments as pointers


Assume a kernel marker with an integer argument.  The translator shouldn't allow
a script like the following:

  probe kernel.mark("foo") { print($arg1->i_ino) }

The translator should not allow this since the translator has no idea that $arg1
is a pointer or what type it points to.  Currently the translator treats the
above script as:

  probe kernel.mark("foo") { print($arg1) }

Instead, the translator should print an error message.

-- 
           Summary: Translator shouldn't allow using marker probe arguments
                    as pointers
           Product: systemtap
           Version: unspecified
            Status: NEW
          Severity: normal
          Priority: P2
         Component: translator
        AssignedTo: systemtap at sources dot redhat dot com
        ReportedBy: dsmith at redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=5608

------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]