fix XML
[ltt-control.git] / ltt-control / facilities / locking.xml
CommitLineData
2727692a 1<?xml version="1.0"?>
2<facility name="locking">
3 <description>The locking facility instruments the kernel locking.</description>
4 <event name="spin_lock_wait">
5 <description>Takes a spinlock</description>
a949a860 6 <field name="spinlock"> <description>Spinlock address</description> <pointer/> </field>
2727692a 7 </event>
8
9 <event name="spin_lock_try">
10 <description>Tries a spinlock</description>
a949a860 11 <field name="spinlock"> <description>Spinlock address</description> <pointer/> </field>
2727692a 12 </event>
13
14 <event name="spin_lock_entry">
15 <description>Get a spinlock</description>
a949a860 16 <field name="spinlock"> <description>Spinlock address</description> <pointer/> </field>
2727692a 17 </event>
18
19 <event name="spin_lock_exit">
20 <description>Releases a spinlock</description>
a949a860 21 <field name="spinlock"> <description>Spinlock address</description> <pointer/> </field>
2727692a 22 </event>
23
e61747d3 24 <event name="irq_save">
25 <description>Disable IRQ, saving state</description>
26 <field name="EIP">
27 <description>Instruction pointer where the irq_save is located.</description>
a949a860 28 <pointer/>
e61747d3 29 </field>
30 <field name="flags">
31 <description>Saved IRQ state.</description>
a949a860 32 <ulong/>
e61747d3 33 </field>
34 </event>
35
36 <event name="irq_restore">
37 <description>Disable IRQ, saving state</description>
38 <field name="EIP">
39 <description>Instruction pointer where the irq_restore is located.</description>
a949a860 40 <pointer/>
e61747d3 41 </field>
42 <field name="flags">
43 <description>Restored IRQ state.</description>
a949a860 44 <ulong/>
e61747d3 45 </field>
46 </event>
47
48 <event name="irq_disable">
49 <description>Disable IRQ</description>
50 <field name="EIP">
51 <description>Instruction pointer where the irq_disable is located.</description>
a949a860 52 <pointer/>
e61747d3 53 </field>
54 </event>
55
56 <event name="irq_enable">
57 <description>Disable IRQ</description>
58 <field name="EIP">
59 <description>Instruction pointer where the irq_enable is located.</description>
a949a860 60 <pointer/>
e61747d3 61 </field>
62 </event>
2727692a 63
64</facility>
This page took 0.025332 seconds and 4 git commands to generate.