projects
/
systemd
/
.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2cd636c
)
path: stop watching path specs once we triggered the target unit
author
Michal Sekletar
<msekleta@redhat.com>
Mon, 9 Sep 2019 12:38:35 +0000
(14:38 +0200)
committer
Zbigniew Jędrzejewski-Szmek
<zbyszek@in.waw.pl>
Sat, 21 Sep 2019 21:06:58 +0000
(23:06 +0200)
We start watching them again once we get a notification that triggered
unit entered inactive or failed state.
Fixes: #10503
(cherry picked from commit
8fca6944c2ee20c63d62154c8badddc77170b176
)
src/core/path.c
patch
|
blob
|
history
diff --git
a/src/core/path.c
b/src/core/path.c
index 562cd352a3e57b933501c3d8e13cf31975e09f51..ac1289a658c5242171d24485058b0e83b19a2c57 100644
(file)
--- a/
src/core/path.c
+++ b/
src/core/path.c
@@
-480,11
+480,9
@@
static void path_enter_running(Path *p) {
p->inotify_triggered = false;
- r = path_watch(p);
- if (r < 0)
- goto fail;
-
path_set_state(p, PATH_RUNNING);
+ path_unwatch(p);
+
return;
fail: