blob: 4d52b8b2f191bc5fffcd198260a885c78353b91e (
plain) (
blame)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>SystemTap Page</title> <style type="text/css"> body { font-family : Helvetica, Arial, sans-serif ; margin : 0em; } a { color : #000000; } a:hover { text-decoration : underline; background : #eeeeee;} h1 { font-size: 18px; } pre { margin-left: 20px; } div#footer {position: absolute; width: 100%; top: 0; left: 0; top: auto; bottom: 0; font-size: 10pt; background: #eee; color: #111; text-align: center; line-height:150%;} td#angry {text-align: center; background: #e00;} td#sad {text-align: center; background: #48e;} td#happy {text-align: center; background: #0e0;} td#busy {text-align: center; background: #f60;} </style> </head> <body> <div style="background-color:#cc0000; color: #f5f5f5; width: 100%; font-size: 25px; padding: 10px 0px 10px 0px; font-weight: bold; ">kprobes status </div> <div style="margin: 10px;"> <table border="1"> <tr><th>feature</th> <th>x86</th> <th>x86-64</th> <th>ia64</th> <th>ppc64</th> <!-- If adding new architectures, check/update colspan= attributes below --> </tr> <!-- In each cell, put something like "in 2.6.12rc44mm3721ac824" a link to a bugzilla show_bug.cgi page a link into a mailing list archive For architecture-independent features, use <td colspan="4">....</td> For done items, use <td id="happy"> ... </td> For missing items, use <td id="sad"> ... </td> For sorely missing items <td id="angry"> ... </td> --> <tr><td>kprobes/jprobes</td> <td id="happy">in 2.6.10</td> <td></td> <td></td> <td id="happy">in 2.6.11</td> </tr> <tr><td>return probes</td> <td id="happy"><a href="/bugzilla/show_bug.cgi?id=891">bz 891</a></td> <td id="happy"><a href="/bugzilla/show_bug.cgi?id=928">bz 928</a></td> <td id="angry">???</td> <td id="happy"><a href="/bugzilla/show_bug.cgi?id=1011">bz 1011</a></td> </tr> <tr><td>reentrancy</td> <td colspan="4" id="happy"><a href="/bugzilla/show_bug.cgi?id=929">bz 929</a></td> </tr> <tr><td>colocated (multiple)</td> <td colspan="4" id="happy"><a href="/bugzilla/show_bug.cgi?id=892">bz 892</a></td> </tr> <tr><td>scalability (unlocked)</td> <td colspan="4" id="busy"><a href="/bugzilla/show_bug.cgi?id=893">bz 893</a></td> </tr> <tr><td>user level</td> <td colspan="4" id="sad">deferred</td> </tr> <tr><td>separate stacks</td> <td colspan="4" id="sad">???</td> </tr> </table> <br clear="all"> <div id="footer"><a href="http://sources.redhat.com/systemtap/">systemtap</a> </div> </body> </html>
|