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:
8c275ee
)
core: nicer message when inotify watches are exhausted
author
Zbigniew Jędrzejewski-Szmek
<zbyszek@in.waw.pl>
Thu, 17 Jul 2014 02:52:53 +0000
(22:52 -0400)
committer
Zbigniew Jędrzejewski-Szmek
<zbyszek@in.waw.pl>
Thu, 17 Jul 2014 02:53:07 +0000
(22:53 -0400)
inotify_add_watch returns ENOSPC, which translates to
"No space left on device", which is misleading.
https://bugs.freedesktop.org/show_bug.cgi?id=73628
src/core/path.c
patch
|
blob
|
history
diff --git
a/src/core/path.c
b/src/core/path.c
index
20e454d
..
f54c77f
100644
(file)
--- a/
src/core/path.c
+++ b/
src/core/path.c
@@
-99,7
+99,8
@@
int path_spec_watch(PathSpec *s, sd_event_io_handler_t handler) {
break;
}
- log_warning("Failed to add watch on %s: %m", s->path);
+ log_warning("Failed to add watch on %s: %s", s->path,
+ errno == ENOSPC ? "too many watches" : strerror(-r));
r = -errno;
if (cut)
*cut = tmp;