]> git.ipfire.org Git - people/ms/systemd.git/commitdiff
mount-setup: introduce mount_point_is_api() call
authorLennart Poettering <lennart@poettering.net>
Sat, 10 Apr 2010 15:42:00 +0000 (17:42 +0200)
committerLennart Poettering <lennart@poettering.net>
Sat, 10 Apr 2010 16:00:33 +0000 (18:00 +0200)
mount-setup.c
mount-setup.h

index f3041941ac4326d070b1325a6a159c9f7da83cb2..8cb77669f36740a359011daa6c031b894d81b8a5 100644 (file)
@@ -48,9 +48,21 @@ static const char *table[] = {
         "devpts",  "/dev/pts",          "devpts",   NULL,
         "cgroup",  "/cgroup/debug",     "cgroup",   "debug",
         "debugfs", "/sys/kernel/debug", "debugfs",  NULL,
-        NULL
 };
 
+bool mount_point_is_api(const char *path) {
+        unsigned i;
+
+        /* Checks if this mount point is considered "API", and hence
+         * should be ignored */
+
+        for (i = 0; i < ELEMENTSOF(table); i += MOUNT_SKIP)
+                if (path_startswith(path, table[i+MOUNT_WHERE]))
+                        return true;
+
+        return false;
+}
+
 static int is_mount_point(const char *t) {
         struct stat a, b;
         char *copy;
@@ -112,10 +124,10 @@ static int mount_one(const char *t[]) {
 
 int mount_setup(void) {
         int r;
-        const char **t;
+        unsigned i;
 
-        for (t = table; *t; t += MOUNT_SKIP)
-                if ((r = mount_one(t)) < 0)
+        for (i = 0; i < ELEMENTSOF(table); i += MOUNT_SKIP)
+                if ((r = mount_one(table + i)) < 0)
                         return r;
 
         return 0;
index df768de94f8313f6e66202746258c8d2fc6ba456..bb13e0184e865611c457da072d28d94f1baf4e76 100644 (file)
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 ***/
 
+#include <stdbool.h>
+
 int mount_setup(void);
 
+bool mount_point_is_api(const char *path);
+
 #endif