fix small copy/paste error
[ltt-control.git] / ltt-control / facilities / mm.xml
CommitLineData
2727692a 1<?xml version="1.0"?>
2197ff80 2<facility name="mm">
2727692a 3 <description>The memory facility has memory management events.</description>
4
b21482e7 5 <event name="handle_fault_entry">
dcd23b4e 6 <description>Entry in the page fault handler</description>
7 <field name="address"> <description>Pointer that caused the page fault</description> <ulong/> </field>
8 <field name="ip"> <description>Instruction at which the page fault occured</description> <long/> </field>
b21482e7 9 </event>
10
11 <event name="handle_fault_exit">
12 <description>Exit from the fault handler</description>
13 </event>
14
15 <event name="filemap_wait_start">
16 <description>Staring to wait for a page</description>
17 <field name="address"> <description>Address of the page we wait for.</description> <pointer/> </field>
18 </event>
19
20 <event name="filemap_wait_end">
21 <description>Ending wait for a page</description>
22 <field name="address"> <description>Address of the page we wait for.</description> <pointer/> </field>
23 </event>
24
2727692a 25 <event name="page_alloc">
26 <description>Page allocation</description>
4576b8aa 27 <field name="order"> <description>Order of the page to allocate</description> <uint/> </field>
a949a860 28 <field name="address"> <description>Assigned page address, or 0 if failed.</description> <pointer/> </field>
2727692a 29 </event>
30
31 <event name="page_free">
32 <description>Page free</description>
4576b8aa 33 <field name="order"> <description>Order of the page to free</description> <uint/> </field>
a949a860 34 <field name="address"> <description>Address of the page to free.</description> <pointer/> </field>
2727692a 35 </event>
36
37 <event name="swap_in">
38 <description>Page swapped into memory</description>
b21482e7 39 <field name="address"> <description>Address of the page to swap in.</description> <ulong/> </field>
2727692a 40 </event>
41
42 <event name="swap_out">
43 <description>Page swapped to disk</description>
a949a860 44 <field name="address"> <description>Address of the page to swap out.</description> <pointer/> </field>
2727692a 45 </event>
46
2727692a 47</facility>
This page took 0.023683 seconds and 4 git commands to generate.