<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in wakeup-latency-report</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>765532c8 - perf script: Finish the rename from trace to script</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report#765532c8</link>
        <description>perf script: Finish the rename from trace to scriptThe scripts have calls to &apos;perf trace&apos; that need to be converted to &apos;perf script&apos;, do it.This problem was introduced in 133dc4c.Reported-by: Torok Edwin &lt;edwintorok@gmail.com&gt;Cc: Frederic Weisbecker &lt;fweisbec@gmail.com&gt;Cc: Ingo Molnar &lt;mingo@elte.hu&gt;Cc: Mike Galbraith &lt;efault@gmx.de&gt;Cc: Paul Mackerras &lt;paulus@samba.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tom Zanussi &lt;tzanussi@gmail.com&gt;Cc: Torok Edwin &lt;edwintorok@gmail.com&gt;LKML-Reference: &lt;new-submission&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report</description>
        <pubDate>Thu, 23 Dec 2010 15:10:22 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>44e668c6 - perf trace: Use $PERF_EXEC_PATH in canned report scripts</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report#44e668c6</link>
        <description>perf trace: Use $PERF_EXEC_PATH in canned report scriptsSet $PERF_EXEC_PATH before starting the record and report scripts, andmake them use it where necessary.Cc: Ingo Molnar &lt;mingo@elte.hu&gt;Cc: Paul Mackerras &lt;paulus@samba.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;LKML-Reference: &lt;1286723403.2955.205.camel@localhost&gt;Signed-off-by: Ben Hutchings &lt;ben@decadent.org.uk&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report</description>
        <pubDate>Sun, 10 Oct 2010 15:10:03 +0000</pubDate>
        <dc:creator>Ben Hutchings &lt;ben@decadent.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>00b21a01 - perf trace/scripting: Enable scripting shell scripts for live mode</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report#00b21a01</link>
        <description>perf trace/scripting: Enable scripting shell scripts for live modeIt should be possible to run any perf trace script in &apos;livemode&apos;. This requires being able to pass in e.g. &apos;-i -&apos; or otherargs, which the current shell scripts aren&apos;t equipped to handle. In a few cases, there are required or optional args that alsoneed special handling. This patch makes changes the current setof shell scripts as necessary.Signed-off-by: Tom Zanussi &lt;tzanussi@gmail.com&gt;Acked-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: fweisbec@gmail.comCc: rostedt@goodmis.orgCc: k-keiichi@bx.jp.nec.comCc: acme@ghostprotocols.netLKML-Reference: &lt;1270184365-8281-11-git-send-email-tzanussi@gmail.com&gt;Signed-off-by: Ingo Molnar &lt;mingo@elte.hu&gt;

            List of files:
            /linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report</description>
        <pubDate>Fri, 02 Apr 2010 04:59:24 +0000</pubDate>
        <dc:creator>Tom Zanussi &lt;tzanussi@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4b9c0c59 - perf trace/scripting: List available scripts</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report#4b9c0c59</link>
        <description>perf trace/scripting: List available scriptsLists the available perf trace scripts, one per line e.g.:root@tropicana:~# perf trace -lList of available trace scripts:  workqueue-stats                      workqueue stats (ins/exe/create/destroy)  wakeup-latency                       system-wide min/max/avg wakeup latency  rw-by-file &lt;comm&gt;                    r/w activity for a program, by file  check-perf-trace                     useless but exhaustive test script  rw-by-pid                            system-wide r/w activityTo be consistent with the other listing options in perf, thecurrent latency trace option was changed to &apos;-L&apos;, and &apos;-l&apos; isnow used to access the script listing as:To create the list, it searches each scripts/*/bin directory forfiles ending with &quot;-report&quot; and reads information found incertain comment lines contained in those shell scripts:  - if the comment line starts with &quot;description:&quot;, the rest of the    line is used as a &apos;half-line&apos; description.  To keep each line in    the list to a single line, the description should be limited to 40    characters (the rest of the line contains the script name and    args)  - if the comment line starts with &quot;args:&quot;, the rest of the line    names the args the script supports.  Required args should be    surrounded by &lt;&gt; brackets, optional args by [] brackets.The current scripts in scripts/perl/bin have also been updatedwith description: and args: comments.Signed-off-by: Tom Zanussi &lt;tzanussi@gmail.com&gt;Cc: fweisbec@gmail.comCc: rostedt@goodmis.orgLKML-Reference: &lt;1260867220-15699-5-git-send-email-tzanussi@gmail.com&gt;Signed-off-by: Ingo Molnar &lt;mingo@elte.hu&gt;

            List of files:
            /linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report</description>
        <pubDate>Tue, 15 Dec 2009 08:53:38 +0000</pubDate>
        <dc:creator>Tom Zanussi &lt;tzanussi@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>1ae4a971 - perf trace: Add a scripts/perl/bin for perf trace shell scripts</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report#1ae4a971</link>
        <description>perf trace: Add a scripts/perl/bin for perf trace shell scriptsTo capture the relevant events for a given Perl script and toavoid having to continually remember and type in longcommand-lines, add a scripts/perl/bin directory containing twosimple shell scripts for each Perl script, one for recording andone for processing/display. For example, to record perf data forthe rw-by-pid.pl script, run scripts/perl/bin/rw-by-pid-recordand to actually run the script and display the output runscripts/perl/bin/rw-by-pid-report.Signed-off-by: Tom Zanussi &lt;tzanussi@gmail.com&gt;Cc: fweisbec@gmail.comCc: rostedt@goodmis.orgCc: anton@samba.orgCc: hch@infradead.orgLKML-Reference: &lt;1259133352-23685-8-git-send-email-tzanussi@gmail.com&gt;Signed-off-by: Ingo Molnar &lt;mingo@elte.hu&gt;

            List of files:
            /linux-6.15/tools/perf/scripts/perl/bin/wakeup-latency-report</description>
        <pubDate>Wed, 25 Nov 2009 07:15:52 +0000</pubDate>
        <dc:creator>Tom Zanussi &lt;tzanussi@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
