chiark / gitweb /
journal: systemd v38 fails to build on big-endians
[elogind.git] / src / mount.h
index 920a70dfabd73f25b6434419e7e3db10923ee18b..730c4c273fa6d8b8f7758c89188a75f8975b5375 100644 (file)
@@ -39,7 +39,7 @@ typedef enum MountState {
         MOUNT_REMOUNTING_SIGKILL,
         MOUNT_UNMOUNTING_SIGTERM,
         MOUNT_UNMOUNTING_SIGKILL,
-        MOUNT_MAINTENANCE,
+        MOUNT_FAILED,
         _MOUNT_STATE_MAX,
         _MOUNT_STATE_INVALID = -1
 } MountState;
@@ -56,10 +56,11 @@ typedef struct MountParameters {
         char *what;
         char *options;
         char *fstype;
+        int passno;
 } MountParameters;
 
 struct Mount {
-        Meta meta;
+        Unit meta;
 
         char *where;
 
@@ -78,6 +79,7 @@ struct Mount {
         bool just_changed:1;
 
         bool failure:1;
+        bool reload_failure:1;
 
         mode_t directory_mode;