]> Zhao Yanbai Git Server - minix.git/commitdiff
- Moved (u)mount prototypes from unistd.h to sys/mount.h.
authorThomas Veerman <thomas@minix3.org>
Wed, 12 Aug 2009 19:57:37 +0000 (19:57 +0000)
committerThomas Veerman <thomas@minix3.org>
Wed, 12 Aug 2009 19:57:37 +0000 (19:57 +0000)
 - Prepared mount system call to accept multiple mount flags
   instead of just read_only (however, it remains backwards
   compatible).
 - Updated the man mount(2) to reflect new header file usage.
 - Updated badblocks, newroot, mount, and umount commands to use the
   new header file.

commands/simple/badblocks.c
commands/simple/mount.c
commands/simple/newroot.c
commands/simple/umount.c
include/sys/mount.h [new file with mode: 0755]
include/unistd.h
lib/posix/_mount.c
man/man2/mount.2

index e5d59e9ca527db669803a98008f31a62de07f31f..1ff6802009d5d6a3a750352336e976d4b142aba6 100755 (executable)
@@ -25,6 +25,7 @@
 #include <minix/type.h>
 #include <fcntl.h>
 #include <unistd.h>
+#include <sys/mount.h>
 #include <dirent.h>
 #include <stdlib.h>
 
index 3ee188eafebac5d2f5eba917bab8e004f5fbd500..7f0aef6b2d29b821c70520e4d3c6bb94149e9da2 100755 (executable)
@@ -6,7 +6,7 @@
 #include <stdlib.h>
 #include <dirent.h>
 #include <string.h>
-#include <unistd.h>
+#include <sys/mount.h>
 #include <fcntl.h>
 #include <minix/config.h>
 #include <minix/const.h>
index f979dabe050b549314ae406aafb1bab6551d74f5..0fa1fd77e3c936fc307d3aaebbd6b339706e2fbf 100644 (file)
@@ -8,7 +8,7 @@ Replace the current root with a new one
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <unistd.h>
+#include <sys/mount.h>
 
 int main(int argc, char *argv[])
 {
index 8904ae1bf078dfbde0a43e819ab167172f66e5fc..893a4c4eb855e33b03e1ce4331f5199ce220be7b 100755 (executable)
@@ -13,6 +13,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
+#include <sys/mount.h>
 #include <stdio.h>
 
 _PROTOTYPE(int main, (int argc, char **argv));
diff --git a/include/sys/mount.h b/include/sys/mount.h
new file mode 100755 (executable)
index 0000000..10d48c6
--- /dev/null
@@ -0,0 +1,21 @@
+/* <sys/mount.h>
+ * definitions for mount(2) 
+ */
+
+#ifndef _MOUNT_H
+#define _MOUNT_H
+
+#define MS_RDONLY      0x001   /* Mount device read only */
+#define MS_REUSE       0x002   /* Tell RS to try reusing binary from memory */
+
+
+/* Function Prototypes. */
+#ifndef _ANSI_H
+#include <ansi.h>
+#endif
+
+_PROTOTYPE( int mount, (char *_spec, char *_name, int _mountflags,
+                                                char *type, char *args) );
+_PROTOTYPE( int umount, (const char *_name)                             );
+
+#endif /* _MOUNT_H */
index 0e52d10f2bdf8d6cfc17d61bb660a2beb13c0ab5..01346a0ce8fc6f49d6defc018c945bd27bcfa65a 100755 (executable)
@@ -171,13 +171,10 @@ _PROTOTYPE( int mknod, (const char *_name, _mnx_Mode_t _mode, Dev_t _addr)        );
 _PROTOTYPE( int mknod4, (const char *_name, _mnx_Mode_t _mode, Dev_t _addr,
            long _size)                                                 );
 _PROTOTYPE( char *mktemp, (char *_template)                            );
-_PROTOTYPE( int mount, (char *_spec, char *_name, int _flag,
-                                               char *type, char *args) );
 _PROTOTYPE( long ptrace, (int _req, pid_t _pid, long _addr, long _data)        );
 _PROTOTYPE( char *sbrk, (int _incr)                                    );
 _PROTOTYPE( int sync, (void)                                           );
 _PROTOTYPE( int fsync, (int fd)                                                );
-_PROTOTYPE( int umount, (const char *_name)                            );
 _PROTOTYPE( int reboot, (int _how, ...)                                        );
 _PROTOTYPE( int gethostname, (char *_hostname, size_t _len)            );
 _PROTOTYPE( int getdomainname, (char *_domain, size_t _len)            );
index 8d7adda2931bce32cc38a8318b69eab67f9d0fb1..16975923cea5a894ac2d2fc3af8e93542074ed2e 100755 (executable)
@@ -3,7 +3,7 @@
 #define mount  _mount
 #define umount _umount
 #include <string.h>
-#include <unistd.h>
+#include <sys/mount.h>
 #include <stdlib.h>
 #include <stdio.h>
 #include <sys/stat.h>
@@ -46,9 +46,9 @@ PRIVATE char *makelabel(_CONST char *special)
   return label;
 }
 
-PUBLIC int mount(special, name, rwflag, type, args)
+PUBLIC int mount(special, name, mountflags, type, args)
 char *name, *special, *type, *args;
-int rwflag;
+int mountflags;
 {
   int r;
   message m;
@@ -59,10 +59,12 @@ int rwflag;
   char cmd[200];
   FILE *pipe;
   int ep;
+  int reuse;
 
   /* Default values. */
   if (type == NULL) type = FSDEFAULT;
   if (args == NULL) args = "";
+  reuse = 0;
 
   /* Make FS process label for RS from special name. */
   if(!(label=makelabel(special))) {
@@ -93,6 +95,11 @@ int rwflag;
        return -1;
   }
 
+  if(mountflags & MS_REUSE) {
+    reuse = 1;
+    mountflags &= ~MS_REUSE; /* Temporary: turn off to not confuse VFS */
+  }
+
   sprintf(cmd, _PATH_SERVICE " up %s -label '%s' -config " _PATH_DRIVERS_CONF
        " -args '%s%s' -printep yes",
        path, label, args[0] ? "-o " : "", args);
@@ -112,7 +119,7 @@ int rwflag;
   /* Now perform mount(). */
   m.m1_i1 = strlen(special) + 1;
   m.m1_i2 = strlen(name) + 1;
-  m.m1_i3 = rwflag;
+  m.m1_i3 = mountflags;
   m.m1_p1 = special;
   m.m1_p2 = name;
   m.m1_p3 = (char*) ep;
index fa7780823586d917cd3fdf3d0e77279303d36305..2a03e3dc2f4931e5acafe581f916b47860764b38 100644 (file)
@@ -4,10 +4,9 @@ mount, umount \- mount or umount a file system
 .SH SYNOPSIS
 .ft B
 .nf
-#include <unistd.h>
 #include <sys/mount.h>
 
-int mount(char *\fIspecial\fP, char *\fIname\fP, int \fIflag\fP, char *\fItype\fP, char *\fIargs\fP)
+int mount(char *\fIspecial\fP, char *\fIname\fP, int \fImountflags\fP, char *\fItype\fP, char *\fIargs\fP)
 int umount(char *\fIname\fP)
 .fi
 .ft P