]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
mount.nfs: /bin/mount already handles --bind & friends
authorChuck Lever <chuck.lever@oracle.com>
Mon, 16 Jul 2007 20:28:20 +0000 (16:28 -0400)
committerNeil Brown <neilb@suse.de>
Fri, 20 Jul 2007 06:09:20 +0000 (16:09 +1000)
Clean-up: remove logic to handle --bind and other such command-line
options from mount.nfs[4].

These options are already handled in /bin/mount, and the logic for handling
them in the NFS helper is currently disabled.  Other helpers such as
mount.ocfs2 appear not to support --bind (ie. they rely on /bin/mount to
do it).

Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Neil Brown <neilb@suse.de>
utils/mount/mount.c

index e06f027f1c1d8273ce9a5b05cfff48b3fc2f60e3..24ba394913a5f126eb56a54af780376cc69eecd8 100644 (file)
@@ -43,7 +43,6 @@
 char *progname;
 int nomtab;
 int verbose;
 char *progname;
 int nomtab;
 int verbose;
-int mounttype;
 int sloppy;
 
 static struct option longopts[] = {
 int sloppy;
 
 static struct option longopts[] = {
@@ -57,13 +56,6 @@ static struct option longopts[] = {
   { "read-write", 0, 0, 'w' },
   { "rw", 0, 0, 'w' },
   { "options", 1, 0, 'o' },
   { "read-write", 0, 0, 'w' },
   { "rw", 0, 0, 'w' },
   { "options", 1, 0, 'o' },
-  { "bind", 0, 0, 128 },
-  { "replace", 0, 0, 129 },
-  { "after", 0, 0, 130 },
-  { "before", 0, 0, 131 },
-  { "over", 0, 0, 132 },
-  { "move", 0, 0, 133 },
-  { "rbind", 0, 0, 135 },
   { NULL, 0, 0, 0 }
 };
 
   { NULL, 0, 0, 0 }
 };
 
@@ -444,27 +436,6 @@ int main(int argc, char *argv[])
                case 's':
                        ++sloppy;
                        break;
                case 's':
                        ++sloppy;
                        break;
-               case 128: /* bind */
-                       mounttype = MS_BIND;
-                       break;
-               case 129: /* replace */
-                       mounttype = MS_REPLACE;
-                       break;
-               case 130: /* after */
-                       mounttype = MS_AFTER;
-                       break;
-               case 131: /* before */
-                       mounttype = MS_BEFORE;
-                       break;
-               case 132: /* over */
-                       mounttype = MS_OVER;
-                       break;
-               case 133: /* move */
-                       mounttype = MS_MOVE;
-                       break;
-               case 135: /* rbind */
-                       mounttype = MS_BIND | MS_REC;
-                       break;
                case 'h':
                default:
                        mount_usage();
                case 'h':
                default:
                        mount_usage();
@@ -503,7 +474,6 @@ int main(int argc, char *argv[])
                 * gave us, so just take whatever is in /etc/fstab.
                 */
                mount_opts = strdup(mc->m.mnt_opts);
                 * gave us, so just take whatever is in /etc/fstab.
                 */
                mount_opts = strdup(mc->m.mnt_opts);
-               mounttype = 0;
        }
 
        mount_point = canonicalize(mount_point);
        }
 
        mount_point = canonicalize(mount_point);