update
[ltt-control.git] / ltt-control / facilities / mm.xml
index a128376a37b3317f2e20b4965aa1a21bf2200ea3..1b2fff2ac8462afb70d02f1f309f6d3e4c7fa675 100644 (file)
@@ -1,11 +1,11 @@
 <?xml version="1.0"?>
-<facility name="memory">
+<facility name="mm">
   <description>The memory facility has memory management events.</description>
 
   <event name="handle_fault_entry">
-    <description>Entry in a trap</description>
-    <field name="trap_id"> <description>Trap number</description> <long/> </field>
-    <field name="address"> <description>Address where trap occured</description> <long/> </field>
+    <description>Entry in the page fault handler</description>
+    <field name="address"> <description>Pointer that caused the page fault</description> <ulong format="%#x"/> </field>
+    <field name="ip"> <description>Instruction at which the page fault occured</description> <ulong format="%#x"/> </field>
   </event>
 
   <event name="handle_fault_exit">
 
   <event name="page_alloc">
     <description>Page allocation</description>
-    <field name="order"> <description>Order of the page to allocate</description> <uint size="4"/> </field>
+    <field name="order"> <description>Order of the page to allocate</description> <uint/> </field>
     <field name="address"> <description>Assigned page address, or 0 if failed.</description> <pointer/> </field>
   </event>
 
   <event name="page_free">
     <description>Page free</description>
-    <field name="order"> <description>Order of the page to free</description> <uint size="4"/> </field>
+    <field name="order"> <description>Order of the page to free</description> <uint/> </field>
     <field name="address"> <description>Address of the page to free.</description> <pointer/> </field>
   </event>
 
   <event name="swap_in">
     <description>Page swapped into memory</description>
-    <field name="address"> <description>Address of the page to swap in.</description> <ulong/> </field>
+    <field name="address"> <description>Address of the page to swap in.</description> <ulong format="%#x"/> </field>
   </event>
 
   <event name="swap_out">
This page took 0.02356 seconds and 4 git commands to generate.