comment fixme in state.c
[lttv.git] / ltt-control / facilities / mm.xml
CommitLineData
89521fdc 1<?xml version="1.0"?>
743ae0e0 2<facility name="mm">
31cbc5d3 3 <description>The memory facility has memory management events.</description>
4
50c19fd1 5 <event name="handle_fault_entry">
c537df36 6 <description>Entry in the page fault handler</description>
1d034c04 7 <field name="address"> <description>Pointer that caused the page fault</description> <ulong format="%#x"/> </field>
8 <field name="ip"> <description>Instruction at which the page fault occured</description> <ulong format="%#x"/> </field>
50c19fd1 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
d1795f42 25 <event name="page_alloc">
31cbc5d3 26 <description>Page allocation</description>
ec3d9b33 27 <field name="order"> <description>Order of the page to allocate</description> <uint/> </field>
c3e2873f 28 <field name="address"> <description>Assigned page address, or 0 if failed.</description> <pointer/> </field>
31cbc5d3 29 </event>
30
d1795f42 31 <event name="page_free">
31cbc5d3 32 <description>Page free</description>
ec3d9b33 33 <field name="order"> <description>Order of the page to free</description> <uint/> </field>
c3e2873f 34 <field name="address"> <description>Address of the page to free.</description> <pointer/> </field>
31cbc5d3 35 </event>
36
d1795f42 37 <event name="swap_in">
31cbc5d3 38 <description>Page swapped into memory</description>
1d034c04 39 <field name="address"> <description>Address of the page to swap in.</description> <ulong format="%#x"/> </field>
31cbc5d3 40 </event>
41
d1795f42 42 <event name="swap_out">
31cbc5d3 43 <description>Page swapped to disk</description>
c3e2873f 44 <field name="address"> <description>Address of the page to swap out.</description> <pointer/> </field>
31cbc5d3 45 </event>
46
31cbc5d3 47</facility>
This page took 0.039297 seconds and 4 git commands to generate.