update fac
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 Mar 2007 04:59:11 +0000 (04:59 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 29 Mar 2007 04:59:11 +0000 (04:59 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2455 04897980-b3bd-0310-b5e0-8ef037075253

ltt-control/facilities/kernel.xml
ltt-control/facilities/kernel_process.xml [new file with mode: 0644]
ltt-control/facilities/process.xml [deleted file]
ltt-control/facilities/timer.xml

index 7a406f6e771258d7cb392abc09deeccf19e5f85e..b314ad3fb9835ee3a92c2529e76e693d3b2f4bf2 100644 (file)
     </enum>
   </type>
 
-  <event name="soft_irq_entry">
-    <description>Soft IRQ entry</description>
-    <field name="softirq_id"> <description>Soft IRQ number</description> <ulong/> </field>
+  <type name="signal_name">
+    <enum>
+      <label name="SIGHUP" value="1"/> <description>Hangup (POSIX).</description>
+      <label name="SIGINT" value="2"/> <description>Interrupt (ANSI).</description>
+      <label name="SIGQUIT" value="3"/> <description>Quit (POSIX).</description>
+      <label name="SIGILL" value="4"/> <description>Illegal instruction (ANSI).</description>
+      <label name="SIGTRAP" value="5"/> <description>Trace trap (POSIX).</description>
+      <label name="SIGABRT" value="6"/> <description>Abort (ANSI).</description>
+      <label name="SIGBUS" value="7"/> <description>BUS error (4.2 BSD).</description>
+      <label name="SIGFPE" value="8"/> <description>Floating-point exception (ANSI).</description>
+      <label name="SIGKILL" value="9"/> <description>Kill, unblockable (POSIX).</description>
+      <label name="SIGUSR1" value="10"/> <description>User-defined signal 1 (POSIX).</description>
+      <label name="SIGSEGV" value="11"/> <description>Segmentation violation (ANSI).</description>
+      <label name="SIGUSR2" value="12"/> <description>User-defined signal 2 (POSIX).</description>
+      <label name="SIGPIPE" value="13"/> <description>Broken pipe (POSIX).</description>
+      <label name="SIGALRM" value="14"/> <description>Alarm clock (POSIX).</description>
+      <label name="SIGTERM" value="15"/> <description>Termination (ANSI).</description>
+      <label name="SIGSTKFLT" value="16"/> <description>Stack fault.</description>
+  
+      <label name="SIGCHLD" value="17"/> <description>Child status has changed (POSIX).</description>
+      <label name="SIGCONT" value="18"/> <description>Continue (POSIX).</description>
+      <label name="SIGSTOP" value="19"/> <description>Stop, unblockable (POSIX).</description>
+      <label name="SIGTSTP" value="20"/> <description>Keyboard stop (POSIX).</description>
+      <label name="SIGTTIN" value="21"/> <description>Background read from tty (POSIX).</description>
+      <label name="SIGTTOU" value="22"/> <description>Background write to tty (POSIX).</description>
+      <label name="SIGURG" value="23"/> <description>Urgent condition on socket (4.2 BSD).</description>
+      <label name="SIGXCPU" value="24"/> <description>CPU limit exceeded (4.2 BSD).</description>
+      <label name="SIGXFSZ" value="25"/> <description>File size limit exceeded (4.2 BSD).</description>
+      <label name="SIGVTALRM" value="26"/> <description>Virtual alarm clock (4.2 BSD).</description>
+      <label name="SIGPROF" value="27"/> <description>Profiling alarm clock (4.2 BSD).</description>
+      <label name="SIGWINCH" value="28"/> <description>Window size change (4.3 BSD, Sun).</description>
+      <label name="SIGIO" value="29"/> <description>I/O now possible (4.2 BSD). (aka SIGPOLL)</description>
+      <label name="SIGPWR" value="30"/> <description>Power failure restart (System V).</description>
+      <label name="SIGSYS" value="31"/> <description>Bad system call.</description>
+    </enum>
+  </type>
+
+  <type name="itimer_kind">
+    <enum>
+      <label name="ITIMER_REAL" value="0"/> <description>decrements in real time,
+      and delivers SIGALRM upon expiration.</description>
+      <label name="ITIMER_VIRTUAL" value="1"/> <description>decrements only when the
+      process is executing, and delivers SIGVTALRM upon expiration.</description>
+      <label name="ITIMER_PROF" value="2"/> <description>decrements both when the
+      process executes and when the system is executing on behalf of the
+      process. Coupled with ITIMER_VIRTUAL, this timer is usually used to
+      profile the time spent by the application in user and kernel space.
+      SIGPROF is delivered upon expiration.</description>
+    </enum>
+  </type>
+
+  <event name="process_fork">
+    <description>Process fork</description>
+    <field name="parent_pid"> <description>PID of the parent process</description> <int/> </field>
+    <field name="child_pid"> <description>PID of the child process</description> <int/> </field>
+    <field name="child_tgid"> <description>Thread group ID of the child process (POSIX PID)</description> <int/> </field>
   </event>
 
-  <event name="soft_irq_exit">
-    <description>Soft IRQ exit</description>
-    <field name="softirq_id"> <description>Soft IRQ number</description> <ulong/> </field>
+  <event name="process_exit">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process</description> <int/> </field>
   </event>
 
-  <event name="tasklet_entry">
-    <description>Tasklet entry</description>
-    <field name="priority"> <description>Tasklet priority</description> <typeref name="tasklet_priority"/> </field>
-    <field name="address"> <description>Tasklet function address</description> <pointer/> </field>
-    <field name="data"> <description>Tasklet data address</description> <ulong/> </field>
+  <event name="process_free">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process</description> <int/> </field>
   </event>
 
-  <event name="tasklet_exit">
-    <description>Tasklet exit</description>
-    <field name="priority"> <description>Tasklet priority</description> <typeref name="tasklet_priority"/> </field>
-    <field name="address"> <description>Tasklet function address</description> <pointer/> </field>
-    <field name="data"> <description>Tasklet data address</description> <ulong/> </field>
+  <event name="process_wait">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process we are waiting for</description> <int/> </field>
   </event>
 
-  <event name="irq_entry">
-    <description>Entry in an irq</description>
-    <field name="irq_id"> <description>IRQ number</description> <uint size="4"/> </field>
-    <field name="mode"> <description>Are we executing kernel code</description><typeref name="irq_mode"/> </field>
+  <event name="process_signal">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process we are signaling</description> <int/> </field>
+    <field name="signal"> <description></description> <typeref name="signal_name"/> </field>
   </event>
 
-  <event name="irq_exit">
-    <description>Exit from an IRQ</description>
+  <event name="kernel_sched_wait_task">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process we are waiting for</description> <int/> </field>
+    <field name="state"> <description>State of the process we are waiting for : -1 unrunnable, 0 runnable, >0 stopped</description> <long/> </field>
+  </event>
+
+  <event name="kernel_sched_try_wakeup">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process we are waiting for</description> <int/> </field>
+    <field name="state"> <description>State of the process we are waiting for : -1 unrunnable, 0 runnable, >0 stopped</description> <long/> </field>
+  </event>
+
+  <event name="kernel_sched_wakeup_new_task">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process we are waiting for</description> <int/> </field>
+    <field name="state"> <description>State of the process we are waiting for : -1 unrunnable, 0 runnable, >0 stopped</description> <long/> </field>
+  </event>
+
+  <event name="kernel_sched_migrate_task">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the process we are waiting for</description> <int/> </field>
+    <field name="state"> <description>State of the process we are waiting for : -1 unrunnable, 0 runnable, >0 stopped</description> <long/> </field>
+    <field name="dest_cpu"> <description>Destination CPU</description> <int/> </field>
+  </event>
+
+  <event name="kernel_sched_schedule">
+    <description>Process exit</description>
+    <field name="prev_pid"> <description>Previously scheduled PID</description> <int/> </field>
+    <field name="next_pid"> <description>Next PID to be scheduled</description> <int/> </field>
+    <field name="state"> <description>State of the process we are waiting for : -1 unrunnable, 0 runnable, >0 stopped</description> <long/> </field>
   </event>
 
   <event name="printk">
     </field>
   </event>
 
-  <event name="module_free">
-    <description>Unload module</description>
-    <field name="name"> <description>Module name</description>
-      <string/>
+  <event name="timer_itimer_expired">
+    <description>An itimer has expired.</description>
+    <field name="pid">
+      <description>PID of the process to wake up.</description>
+      <int/>
+    </field>
+  </event>
+
+  <event name="timer_itimer_set">
+    <description>An interval timer is set.</description>
+    <field name="which"> <description>kind of interval timer.</description>
+           <typeref name="itimer_kind"/>
+    </field>
+    <field name="interval_seconds"><long/></field>
+    <field name="interval_microseconds"><long/></field>
+    <field name="value_seconds"><long/></field>
+    <field name="value_microseconds"><long/></field>
+  </event>
+
+  <event name="timer_set">
+    <description>A timer is added/modified/migrated.</description>
+    <field name="expires"><ulong/></field>
+    <field name="function"><pointer/></field>
+    <field name="data"><ulong/></field>
+  </event>
+
+  <event name="update_time">
+    <description>The time is updated (timer interrupt).</description>
+    <field name="jiffies"><uint_fixed size="8"/></field>
+    <field name="wall_tv_sec"><long/></field>
+    <field name="wall_tv_nsec"><long/></field>
+    <field name="wall_to_monotonic_tv_sec"><long/></field>
+    <field name="wall_to_monotonic_tv_nsec"><long/></field>
+  </event>
+
+  <event name="softirq">
+    <description>The timer softirq is currently runned.</description>
+  </event>
+
+  <event name="timer_timeout">
+    <description>A timer has expired.</description>
+    <field name="pid">
+      <description>PID of the process to wake up.</description>
+      <int/>
     </field>
   </event>
 
+  <event name="soft_irq_entry">
+    <description>Soft IRQ entry</description>
+    <field name="softirq_id"> <description>Soft IRQ number</description> <ulong/> </field>
+  </event>
+
+  <event name="soft_irq_exit">
+    <description>Soft IRQ exit</description>
+    <field name="softirq_id"> <description>Soft IRQ number</description> <ulong/> </field>
+  </event>
+
+  <event name="tasklet_low_entry">
+    <description>Low priority tasklet entry</description>
+    <field name="address"> <description>Tasklet function address</description> <pointer/> </field>
+    <field name="data"> <description>Tasklet data address</description> <ulong/> </field>
+  </event>
+
+  <event name="tasklet_low_exit">
+    <description>Low priority tasklet exit</description>
+    <field name="address"> <description>Tasklet function address</description> <pointer/> </field>
+    <field name="data"> <description>Tasklet data address</description> <ulong/> </field>
+  </event>
+
+  <event name="tasklet_high_entry">
+    <description>High priority tasklet entry</description>
+    <field name="address"> <description>Tasklet function address</description> <pointer/> </field>
+    <field name="data"> <description>Tasklet data address</description> <ulong/> </field>
+  </event>
+
+  <event name="tasklet_high_exit">
+    <description>High priority tasklet exit</description>
+    <field name="address"> <description>Tasklet function address</description> <pointer/> </field>
+    <field name="data"> <description>Tasklet data address</description> <ulong/> </field>
+  </event>
+
+  <event name="kernel_kthread_stop">
+    <description>Process exit</description>
+    <field name="pid"> <description>PID of the kthread we stop</description> <int/> </field>
+  </event>
+
+  <event name="kernel_kthread_stop_ret">
+    <description>Process exit</description>
+    <field name="retval"> <description>Return value of the kthread_stop call</description> <int/> </field>
+  </event>
+
   <event name="module_load">
     <description>Load module</description>
     <field name="name"> <description>Module name</description>
     </field>
   </event>
 
+  <event name="module_free">
+    <description>Unload module</description>
+    <field name="name"> <description>Module name</description>
+      <string/>
+    </field>
+  </event>
+
+
+  <event name="irq_entry">
+    <description>Entry in an irq</description>
+    <field name="irq_id"> <description>IRQ number</description> <uint size="4"/> </field>
+    <field name="mode"> <description>Are we executing kernel code</description><typeref name="irq_mode"/> </field>
+  </event>
+
+  <event name="irq_exit">
+    <description>Exit from an IRQ</description>
+  </event>
+
 </facility>
diff --git a/ltt-control/facilities/kernel_process.xml b/ltt-control/facilities/kernel_process.xml
new file mode 100644 (file)
index 0000000..604d374
--- /dev/null
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<facility name="process">
+  <description>The process facility has events related to process handling in the kernel.</description>
+</facility>
diff --git a/ltt-control/facilities/process.xml b/ltt-control/facilities/process.xml
deleted file mode 100644 (file)
index 7d609a6..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-<?xml version="1.0"?>
-<facility name="process">
-  <description>The process facility has events related to process handling in the kernel.</description>
-
-  <type name="signal_name">
-    <enum>
-      <label name="SIGHUP" value="1"/> <description>Hangup (POSIX).</description>
-      <label name="SIGINT" value="2"/> <description>Interrupt (ANSI).</description>
-      <label name="SIGQUIT" value="3"/> <description>Quit (POSIX).</description>
-      <label name="SIGILL" value="4"/> <description>Illegal instruction (ANSI).</description>
-      <label name="SIGTRAP" value="5"/> <description>Trace trap (POSIX).</description>
-      <label name="SIGABRT" value="6"/> <description>Abort (ANSI).</description>
-      <label name="SIGBUS" value="7"/> <description>BUS error (4.2 BSD).</description>
-      <label name="SIGFPE" value="8"/> <description>Floating-point exception (ANSI).</description>
-      <label name="SIGKILL" value="9"/> <description>Kill, unblockable (POSIX).</description>
-      <label name="SIGUSR1" value="10"/> <description>User-defined signal 1 (POSIX).</description>
-      <label name="SIGSEGV" value="11"/> <description>Segmentation violation (ANSI).</description>
-      <label name="SIGUSR2" value="12"/> <description>User-defined signal 2 (POSIX).</description>
-      <label name="SIGPIPE" value="13"/> <description>Broken pipe (POSIX).</description>
-      <label name="SIGALRM" value="14"/> <description>Alarm clock (POSIX).</description>
-      <label name="SIGTERM" value="15"/> <description>Termination (ANSI).</description>
-      <label name="SIGSTKFLT" value="16"/> <description>Stack fault.</description>
-  
-      <label name="SIGCHLD" value="17"/> <description>Child status has changed (POSIX).</description>
-      <label name="SIGCONT" value="18"/> <description>Continue (POSIX).</description>
-      <label name="SIGSTOP" value="19"/> <description>Stop, unblockable (POSIX).</description>
-      <label name="SIGTSTP" value="20"/> <description>Keyboard stop (POSIX).</description>
-      <label name="SIGTTIN" value="21"/> <description>Background read from tty (POSIX).</description>
-      <label name="SIGTTOU" value="22"/> <description>Background write to tty (POSIX).</description>
-      <label name="SIGURG" value="23"/> <description>Urgent condition on socket (4.2 BSD).</description>
-      <label name="SIGXCPU" value="24"/> <description>CPU limit exceeded (4.2 BSD).</description>
-      <label name="SIGXFSZ" value="25"/> <description>File size limit exceeded (4.2 BSD).</description>
-      <label name="SIGVTALRM" value="26"/> <description>Virtual alarm clock (4.2 BSD).</description>
-      <label name="SIGPROF" value="27"/> <description>Profiling alarm clock (4.2 BSD).</description>
-      <label name="SIGWINCH" value="28"/> <description>Window size change (4.3 BSD, Sun).</description>
-      <label name="SIGIO" value="29"/> <description>I/O now possible (4.2 BSD). (aka SIGPOLL)</description>
-      <label name="SIGPWR" value="30"/> <description>Power failure restart (System V).</description>
-      <label name="SIGSYS" value="31"/> <description>Bad system call.</description>
-    </enum>
-  </type>
-
-  <event name="fork">
-    <description>Process fork</description>
-    <field name="parent_pid"> <description>PID of the parent process</description> <uint/> </field>
-    <field name="child_pid"> <description>PID of the child process</description> <uint/> </field>
-    <field name="child_tgid"> <description>Thread group ID of the child process (POSIX PID)</description> <uint/> </field>
-  </event>
-
-  <event name="exit">
-    <description>Process exit</description>
-    <field name="pid"> <description>PID of the process</description> <uint/> </field>
-  </event>
-
-  <event name="wait">
-    <description>Process wait</description>
-    <field name="parent_pid"> <description>PID of the waiting process</description> <uint/> </field>
-    <field name="child_pid"> <description>PID of the process waited for</description> <uint/> </field>
-  </event>
-
-  <event name="free">
-    <description>Process kernel data structure free (end of life of a zombie)</description>
-    <field name="pid"> <description>PID of the freed process</description> <uint/> </field>
-  </event>
-
-  <event name="kill">
-    <description>Process kill system call</description>
-    <field name="pid"> <description>PID of the process</description> <uint/> </field>
-    <field name="target_pid"> <description>PID of the process to kill</description> <uint/> </field>
-    <field name="signal"> <description>Signal number</description> <typeref name="signal_name"/> </field>
-  </event>
-
-  <event name="signal">
-    <description>Process signal reception</description>
-    <field name="pid"> <description>PID of the receiving process</description> <uint/> </field>
-    <field name="signal"> <description>Signal number</description> <typeref name="signal_name"/> </field>
-  </event>
-
-  <event name="wakeup">
-    <description>Process wakeup</description>
-    <field name="pid"> <description>PID of the receiving process</description> <uint/> </field>
-    <field name="state"> <description>State of the awakened process. -1 unrunnable, 0 runnable, >0 stopped.</description> <int/> </field>
-  </event>
-
-  <event name="schedchange">
-    <description>Scheduling change</description>
-    <field name="out"> <description>Outgoing process</description> <uint/> </field>
-    <field name="in"> <description>Incoming process</description> <uint/> </field>
-    <field name="out_state"> <description>Outgoing process' state. -1 unrunnable, 0 runnable, >0 stopped.</description> <int/> </field>
-  </event>
-
-</facility>
index 3152d3d499b8833a37819db6cd457a668a608b21..63fb9d6a0572b063779717b76a74775d92414782 100644 (file)
@@ -2,57 +2,4 @@
 <facility name="timer">
   <description>The timer facility has events related to timer events in the kernel.</description>
 
-  <type name="itimer_kind">
-    <enum>
-      <label name="ITIMER_REAL" value="0"/> <description>decrements in real time,
-      and delivers SIGALRM upon expiration.</description>
-      <label name="ITIMER_VIRTUAL" value="1"/> <description>decrements only when the
-      process is executing, and delivers SIGVTALRM upon expiration.</description>
-      <label name="ITIMER_PROF" value="2"/> <description>decrements both when the
-      process executes and when the system is executing on behalf of the
-      process. Coupled with ITIMER_VIRTUAL, this timer is usually used to
-      profile the time spent by the application in user and kernel space.
-      SIGPROF is delivered upon expiration.</description>
-    </enum>
-  </type>
-
-  <event name="expired">
-    <description>A timer or itimer has expired.</description>
-    <field name="pid">
-                       <description>PID of the process to wake up.</description>
-                       <uint size="4"/>
-               </field>
-  </event>
-
-  <event name="softirq">
-    <description>The timer softirq is currently runned.</description>
-  </event>
-
-  <event name="set_itimer">
-    <description>An interval timer is set.</description>
-    <field name="which"> <description>kind of interval timer.</description>
-           <typeref name="itimer_kind"/>
-    </field>
-    <field name="interval_seconds"><uint size="4"/></field>
-    <field name="interval_microseconds"><uint size="4"/></field>
-    <field name="value_seconds"><uint size="4"/></field>
-    <field name="value_microseconds"><uint size="4"/></field>
-  </event>
-
-  <event name="set_timer">
-    <description>A timer is added/modified/migrated.</description>
-    <field name="expires"><ulong/></field>
-    <field name="function"><pointer/></field>
-    <field name="data"><ulong/></field>
-  </event>
-
-  <event name="update_time">
-    <description>The time is updated (timer interrupt).</description>
-    <field name="jiffies"><uint_fixed size="8"/></field>
-    <field name="wall_tv_sec"><long/></field>
-    <field name="wall_tv_nsec"><long/></field>
-    <field name="wall_to_monotonic_tv_sec"><long/></field>
-    <field name="wall_to_monotonic_tv_nsec"><long/></field>
-  </event>
-
 </facility>
This page took 0.028282 seconds and 4 git commands to generate.