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"
\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
#include "udevd.h"
#include "udev_selinux.h"
+static int debug_trace;
static int verbose;
static struct udev_rules rules;
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);
int option;
static const struct option options[] = {
{ "daemon", 0, NULL, 'd' },
+ { "debug-trace", 0, NULL, 't' },
{ "verbose", 0, NULL, 'v' },
{ "help", 0, NULL, 'h' },
{}
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;
/* 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);
<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>
</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>