core: nicer message when inotify watches are exhausted

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
(cherry picked from commit 18abe7bd3e)
(cherry picked from commit fe85271fb6)
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2014-07-19 17:24:15 -04:00
parent 78c27a998f
commit 7f70164f5c
+2 -1
View File
@@ -95,7 +95,8 @@ int path_spec_watch(PathSpec *s, Unit *u) {
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;