projects
/
platform
/
upstream
/
systemd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eeaedb7
)
service: fix handling of PID file inotify events
author
Lennart Poettering
<lennart@poettering.net>
Mon, 25 Nov 2013 21:20:57 +0000
(22:20 +0100)
committer
Lennart Poettering
<lennart@poettering.net>
Mon, 25 Nov 2013 21:20:57 +0000
(22:20 +0100)
src/core/service.c
patch
|
blob
|
history
diff --git
a/src/core/service.c
b/src/core/service.c
index
e408338
..
28b1465
100644
(file)
--- a/
src/core/service.c
+++ b/
src/core/service.c
@@
-2916,7
+2916,12
@@
static int service_demand_pid_file(Service *s) {
}
static int service_dispatch_io(sd_event_source *source, int fd, uint32_t events, void *userdata) {
- Service *s = SERVICE(userdata);
+ PathSpec *p = userdata;
+ Service *s;
+
+ assert(p);
+
+ s = SERVICE(p->unit);
assert(s);
assert(fd >= 0);
@@
-2926,7
+2931,7
@@
static int service_dispatch_io(sd_event_source *source, int fd, uint32_t events,
log_debug_unit(UNIT(s)->id, "inotify event for %s", UNIT(s)->id);
- if (path_spec_fd_event(
s->pid_file_pathspec
, events) < 0)
+ if (path_spec_fd_event(
p
, events) < 0)
goto fail;
if (service_retry_pid_file(s) == 0)