1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 #pragma once 3 4 #include <stdbool.h> 5 6 int mount_setup_early(void); 7 int mount_setup(bool loaded_policy, bool leave_propagation); 8 9 int mount_cgroup_controllers(void); 10 11 bool mount_point_is_api(const char *path); 12 bool mount_point_ignore(const char *path); 13