summaryrefslogtreecommitdiff
path: root/src/basic
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-11-29 22:50:21 +0100
committerSven Eden <yamakuzure@gmx.net>2017-07-17 17:58:35 +0200
commitaa63b97173e12293234cce3b378912eb761778e1 (patch)
tree46717fc394dc5a404fb178fb841d2719ec119af7 /src/basic
parentb9dddf7b71c87ab4f58cd6087a6ad3d72867cf9b (diff)
core: rework logic to determine when we decide to add automatic deps for mounts
This adds a concept of "extrinsic" mounts. If mounts are extrinsic we consider them managed by something else and do not add automatic ordering against umount.target, local-fs.target, remote-fs.target. Extrinsic mounts are considered: - All mounts if we are running in --user mode - API mounts such as everything below /proc, /sys, /dev, which exist from earliest boot to latest shutdown. - All mounts marked as initrd mounts, if we run on the host - The initrd's private directory /run/initrams that should survive until last reboot. This primarily merges a couple of different exclusion lists into a single concept.
Diffstat (limited to 'src/basic')
-rw-r--r--src/basic/path-util.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/basic/path-util.h b/src/basic/path-util.h
index 4d284d23c..a4c80493c 100644
--- a/src/basic/path-util.h
+++ b/src/basic/path-util.h
@@ -74,6 +74,18 @@ static inline bool path_equal_ptr(const char *a, const char *b) {
})
#if 0 /// UNNEEDED by elogind
+#define PATH_STARTSWITH_SET(p, ...) \
+ ({ \
+ char **s; \
+ bool _found = false; \
+ STRV_FOREACH(s, STRV_MAKE(__VA_ARGS__)) \
+ if (path_startswith(p, *s)) { \
+ _found = true; \
+ break; \
+ } \
+ _found; \
+ })
+
int path_strv_make_absolute_cwd(char **l);
#endif // 0
char** path_strv_resolve(char **l, const char *root);