summaryrefslogtreecommitdiff
path: root/udevd.h
diff options
context:
space:
mode:
authorkay.sievers@vrfy.org <kay.sievers@vrfy.org>2004-03-31 23:03:46 -0800
committerGreg KH <gregkh@suse.de>2005-04-26 21:35:13 -0700
commite5a2989efbae81f40b60885a8f92ea1f87df7ea9 (patch)
treee23fdb064f57cdaa9a48527c30ac5d877d32d924 /udevd.h
parentf27125f98f6487e881a957726da895aebd799f0d (diff)
[PATCH] udevd race conditions and performance, assorted cleanups - take 2
here is a patch on top of your nice improvements. I fixed the whitespace and it hopefully fixes the stupid timestamp bug in udevd. Some stupid OS sets the hwclock to localtime and linux changes it to UTC while starting. If any events are pending they may be delayed by the users time distance from UTC :) So we use the uptime seconds now.
Diffstat (limited to 'udevd.h')
-rw-r--r--udevd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/udevd.h b/udevd.h
index 8b82ff9a70..96f179ad44 100644
--- a/udevd.h
+++ b/udevd.h
@@ -34,7 +34,7 @@ struct hotplug_msg {
struct list_head list;
pid_t pid;
int seqnum;
- time_t queue_time;
+ long queue_time;
char action[ACTION_SIZE];
char devpath[DEVPATH_SIZE];
char subsystem[SUBSYSTEM_SIZE];