summaryrefslogtreecommitdiff
path: root/src/basic/mount-util.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2015-10-27 13:45:00 +0100
committerLennart Poettering <lennart@poettering.net>2015-10-27 13:45:53 +0100
commit4e036b7a96b7a72461bdb68ded304041e892b8eb (patch)
tree8b1b79bb8e1ca4e715f1fd6ec3e643567e690996 /src/basic/mount-util.h
parent5e524b404b7b319aa6a24bf21132b1074b206996 (diff)
mount-util: move fstype_is_network() and name_to_handle_at() definitions over
Diffstat (limited to 'src/basic/mount-util.h')
-rw-r--r--src/basic/mount-util.h16
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 }