From: Kay Sievers Date: Mon, 22 Aug 2005 22:57:46 +0000 (+0200) Subject: udevd: keep the right order for messages without SEQNUM X-Git-Tag: 174~2607 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=e7f247503c63764e4ffb255acb3e99faf91f2214;ds=sidebyside udevd: keep the right order for messages without SEQNUM Signed-off-by: Kay Sievers --- diff --git a/udevd.c b/udevd.c index ffd2b1ff3..e4880c981 100644 --- a/udevd.c +++ b/udevd.c @@ -113,7 +113,7 @@ static void msg_queue_insert(struct uevent_msg *msg) if (msg->seqnum == 0) { dbg("no SEQNUM, move straight to the exec queue"); - list_add(&msg->node, &exec_list); + list_add_tail(&msg->node, &exec_list); run_exec_q = 1; return; }