diff options
Diffstat (limited to 'src/basic/mount-util.h')
-rw-r--r-- | src/basic/mount-util.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/basic/mount-util.h b/src/basic/mount-util.h index b415d00e2f..c87ae93e55 100644 --- a/src/basic/mount-util.h +++ b/src/basic/mount-util.h @@ -21,8 +21,13 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include <stdbool.h> +#include <fcntl.h> #include <mntent.h> +#include <stdbool.h> +#include <sys/stat.h> +#include <sys/types.h> + +#include "missing.h" int fd_is_mount_point(int fd, const char *filename, int flags); int path_is_mount_point(const char *path, int flags); @@ -34,3 +39,12 @@ int mount_move_root(const char *path); DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, endmntent); #define _cleanup_endmntent_ _cleanup_(endmntentp) + +bool fstype_is_network(const char *fstype); + +union file_handle_union { + struct file_handle handle; + char padding[sizeof(struct file_handle) + MAX_HANDLE_SZ]; +}; + +#define FILE_HANDLE_INIT { .handle.handle_bytes = MAX_HANDLE_SZ } |