aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@suse.de>2006-09-08 11:30:00 +0200
committerKay Sievers <kay.sievers@suse.de>2006-09-08 11:30:00 +0200
commitc7c00276f6f26ff7f38e99d887137bc1f172a978 (patch)
treead57d9b9661012e4340e6e5e2f1997315a5c5f15
parent9e8fe79b8e84177fc9479d6c6af039b7402d52d3 (diff)
downloadudev-c7c00276f6f26ff7f38e99d887137bc1f172a978.tar.gz
udevd: add --debug-trace option
-rw-r--r--udevd.85
-rw-r--r--udevd.c18
-rw-r--r--udevd.xml10
3 files changed, 31 insertions, 2 deletions
diff --git a/udevd.8 b/udevd.8
index aef20902..cc724dce 100644
--- a/udevd.8
+++ b/udevd.8
@@ -14,7 +14,7 @@
udevd \- event managing daemon
.SH "SYNOPSIS"
.HP 6
-\fBudevd\fR [\fB\-\-daemon\fR] [\fB\-\-verbose\fR] [\fB\-\-help\fR]
+\fBudevd\fR [\fB\-\-daemon\fR] [\fB\-\-debug\-trace\fR] [\fB\-\-verbose\fR] [\fB\-\-help\fR]
.HP 20
\fBudevcontrol \fR\fB\fIcommand\fR\fR
.SH "DESCRIPTION"
@@ -25,6 +25,9 @@ udevd listens to kernel uevents and passes the incoming events to udev. It ensur
\fB\-\-daemon\fR
Detach and run in the background.
.TP 3n
+\fB\-\-debug\-trace\fR
+Run all events completely serialized. This may be useful if udev triggers actions or loads kernel modules which cause problems and a slow but continiuous operation is needed, where no events are processed in parallel.
+.TP 3n
\fB\-\-verbose\fR
Print log messages to stdout.
.TP 3n
diff --git a/udevd.c b/udevd.c
index eb632bd8..3adedac0 100644
--- a/udevd.c
+++ b/udevd.c
@@ -45,6 +45,7 @@
#include "udevd.h"
#include "udev_selinux.h"
+static int debug_trace;
static int verbose;
static struct udev_rules rules;
@@ -307,6 +308,15 @@ static void msg_queue_insert(struct udevd_uevent_msg *msg)
export_event_state(msg, EVENT_QUEUED);
+ /* run one event after the other in debug mode */
+ if (debug_trace) {
+ list_add_tail(&msg->node, &running_list);
+ udev_event_run(msg);
+ waitpid(msg->pid, NULL, 0);
+ msg_queue_delete(msg);
+ return;
+ }
+
/* run all events with a timeout set immediately */
if (msg->timeout != 0) {
list_add_tail(&msg->node, &running_list);
@@ -930,6 +940,7 @@ int main(int argc, char *argv[], char *envp[])
int option;
static const struct option options[] = {
{ "daemon", 0, NULL, 'd' },
+ { "debug-trace", 0, NULL, 't' },
{ "verbose", 0, NULL, 'v' },
{ "help", 0, NULL, 'h' },
{}
@@ -952,13 +963,16 @@ int main(int argc, char *argv[], char *envp[])
case 'd':
daemonize = 1;
break;
+ case 't':
+ debug_trace = 1;
+ break;
case 'v':
verbose = 1;
if (udev_log_priority < LOG_INFO)
udev_log_priority = LOG_INFO;
break;
case 'h':
- printf("Usage: udevd [--help] [--daemon] [--verbose]\n");
+ printf("Usage: udevd [--help] [--daemon] [--debug-trace] [--verbose]\n");
goto exit;
default:
goto exit;
@@ -1128,6 +1142,8 @@ int main(int argc, char *argv[], char *envp[])
/* export log_priority , as called programs may want to follow that setting */
sprintf(udev_log, "UDEV_LOG=%i", udev_log_priority);
putenv(udev_log);
+ if (debug_trace)
+ putenv("DEBUG=1");
maxfd = udevd_sock;
maxfd = UDEV_MAX(maxfd, uevent_netlink_sock);
diff --git a/udevd.xml b/udevd.xml
index cc2a1bcd..938707be 100644
--- a/udevd.xml
+++ b/udevd.xml
@@ -26,6 +26,7 @@
<cmdsynopsis>
<command>udevd</command>
<arg><option>--daemon</option></arg>
+ <arg><option>--debug-trace</option></arg>
<arg><option>--verbose</option></arg>
<arg><option>--help</option></arg>
</cmdsynopsis>
@@ -49,6 +50,15 @@
</listitem>
</varlistentry>
<varlistentry>
+ <term><option>--debug-trace</option></term>
+ <listitem>
+ <para>Run all events completely serialized. This may be useful if udev triggers
+ actions or loads kernel modules which cause problems and a slow but continiuous
+ operation is needed, where no events are processed in parallel.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
<term><option>--verbose</option></term>
<listitem>
<para>Print log messages to stdout.</para>