chiark / gitweb /
[PATCH] update extras/multipath
authorext.devoteam.varoqui@sncf.fr <ext.devoteam.varoqui@sncf.fr>
Wed, 18 Feb 2004 03:07:56 +0000 (19:07 -0800)
committerGreg KH <gregkh@suse.de>
Wed, 27 Apr 2005 04:32:28 +0000 (21:32 -0700)
patch follows :

        * remove the restrictive -f flag.
          Introduce a more generic "-m iopolicy" one.
        * remove useless "int with_sysfs" in env struct

extras/multipath/ChangeLog
extras/multipath/main.c
extras/multipath/main.h

index 31f6c48f6901fa1d5c5bba25520201ebf2ca10c0..43aa497e51cd825ae1d5fc339e3f4d47dd9ed6be 100644 (file)
@@ -1,3 +1,7 @@
+2004-02-17 multipath-017
+       * remove the restrictive -f flag.
+         Introduce a more generic "-m iopolicy" one.
+       * remove useless "int with_sysfs" in env struct 
 2004-02-04 multipath-016
        * add a GROUP_BY_SERIAL flag. This should be useful for
          controlers that activate they spare paths on simple IO
index 6ea9a064e1de3e1653798dbd46893feb64b3461f..706b2d1317c9a072b2c7bb2cd7f5faa761efae57 100644 (file)
@@ -509,8 +509,8 @@ setup_map(struct env * conf, struct path * all_paths,
 
        params_p += sprintf(params_p, "%i", conf->dm_path_test_int);
 
-       if (all_paths[PINDEX(index,0)].iopolicy == MULTIBUS &&
-           !conf->forcedfailover ) {
+       if ((all_paths[PINDEX(index,0)].iopolicy == MULTIBUS &&
+           conf->iopolicy == -1) || conf->iopolicy == MULTIBUS) {
                params_p += sprintf(params_p, " 1 %i %s %i %i",
                                    dm_pg_prio, dm_ps_name, np, dm_ps_nr_args);
                
@@ -522,8 +522,8 @@ setup_map(struct env * conf, struct path * all_paths,
                }
        }
 
-       if (all_paths[PINDEX(index,0)].iopolicy == FAILOVER ||
-           conf->forcedfailover) {
+       if ((all_paths[PINDEX(index,0)].iopolicy == FAILOVER &&
+            conf->iopolicy == -1) || conf->iopolicy == FAILOVER) {
                params_p += sprintf(params_p, " %i", mp[index].npaths + 1);
                for (i=0; i<=mp[index].npaths; i++) {
                        if (0 != all_paths[PINDEX(index,i)].sg_id.scsi_type)
@@ -537,8 +537,8 @@ setup_map(struct env * conf, struct path * all_paths,
                }
        }
 
-       if (all_paths[PINDEX(index,0)].iopolicy == GROUP_BY_SERIAL &&
-           !conf->forcedfailover ) {
+       if ((all_paths[PINDEX(index,0)].iopolicy == GROUP_BY_SERIAL &&
+            conf->iopolicy == -1) || conf->iopolicy == GROUP_BY_SERIAL) {
                group_by_serial(&mp[index], all_paths, params_p);
        }
 
@@ -602,14 +602,18 @@ static void
 usage(char * progname)
 {
        fprintf(stderr, VERSION_STRING);
-       fprintf(stderr, "Usage: %s [-v|-q] [-d] [-i int] [-m max_devs]\n",
+       fprintf(stderr, "Usage: %s [-v|-q] [-d] [-i int] [-m max_devs] ",
                progname);
+       fprintf(stderr, "[-p failover|multibus|group_by_serial]\n");
+       fprintf(stderr, "\t-v\t\tverbose, print all paths and multipaths\n");
+       fprintf(stderr, "\t-q\t\tquiet, no output at all\n");
        fprintf(stderr, "\t-d\t\tdry run, do not create or update devmaps\n");
-       fprintf(stderr, "\t-f\t\tforce maps to failover mode (1 path/pg)\n");
        fprintf(stderr, "\t-i\t\tmultipath target param : polling interval\n");
        fprintf(stderr, "\t-m max_devs\tscan {max_devs} devices at most\n");
-       fprintf(stderr, "\t-q\t\tquiet, no output at all\n");
-       fprintf(stderr, "\t-v\t\tverbose, print all paths and multipaths\n");
+       fprintf(stderr, "\t-p policy\tforce maps to specified policy :\n");
+       fprintf(stderr, "\t\t\tfailover\t1 path per priority group\n");
+       fprintf(stderr, "\t\t\tmultibus\tall paths in 1 priority group\n");
+       fprintf(stderr, "\t\t\tgroup_by_serial\t1 priority group per serial\n");
        exit(1);
 }
 
@@ -627,13 +631,9 @@ main(int argc, char *argv[])
        conf.dry_run = 0;       /* 1 == Do not Create/Update devmaps */
        conf.verbose = 0;       /* 1 == Print all_paths and mp */
        conf.quiet = 0;         /* 1 == Do not even print devmaps */
-       conf.with_sysfs = 0;    /* Default to compat / suboptimal behaviour */
+       conf.iopolicy = -1;     /* Apply the defaults in get_unique_id() */
        conf.dm_path_test_int = 10;
 
-       /* kindly provided by libsysfs */
-       if (0 == sysfs_get_mnt_path(conf.sysfs_path, FILE_NAME_SIZE))
-               conf.with_sysfs = 1;
-
        for (i = 1; i < argc; ++i) {
                if (0 == strcmp("-v", argv[i])) {
                        if (conf.quiet == 1)
@@ -649,11 +649,16 @@ main(int argc, char *argv[])
                        conf.quiet = 1;
                } else if (0 == strcmp("-d", argv[i]))
                        conf.dry_run = 1;
-               else if (0 == strcmp("-f", argv[i]))
-                       conf.forcedfailover = 1;
                else if (0 == strcmp("-i", argv[i]))
                        conf.dm_path_test_int = atoi(argv[++i]);
-               else if (0 == strcmp("scsi", argv[i]))
+               else if (0 == strcmp("-p", argv[i++])) {
+                       if (!strcmp(argv[i], "failover"))
+                               conf.iopolicy = FAILOVER;
+                       if (!strcmp(argv[i], "multibus"))
+                               conf.iopolicy = MULTIBUS;
+                       if (!strcmp(argv[i], "group_by_serial"))
+                               conf.iopolicy = GROUP_BY_SERIAL;
+               } else if (0 == strcmp("scsi", argv[i]))
                        strcpy(conf.hotplugdev, argv[++i]);
                else if (*argv[i] == '-') {
                        fprintf(stderr, "Unknown switch: %s\n", argv[i]);
@@ -672,7 +677,7 @@ main(int argc, char *argv[])
        if (mp == NULL || all_paths == NULL || all_scsi_ids == NULL)
                exit(1);
 
-       if (!conf.with_sysfs) {
+       if (sysfs_get_mnt_path(conf.sysfs_path, FILE_NAME_SIZE)) {
                get_all_scsi_ids(&conf, all_scsi_ids);
                get_all_paths_nosysfs(&conf, all_paths, all_scsi_ids);
        } else {
index 731c55e41f800c8a0fe79ed45b61ed53a009b7fd..e05555599fc8aa93db1987806e6834f98248dc3f 100644 (file)
@@ -100,7 +100,7 @@ struct env {
        int verbose;
        int quiet;
        int dry_run;
-       int forcedfailover;
+       int iopolicy;
        int with_sysfs;
        int dm_path_test_int;
        char sysfs_path[FILE_NAME_SIZE];