btrfs: add test for zone auto reclaim
[xfstests-dev.git] / ltp / iogen.c
index 661cc7d94c9d7542c4c65814387ea8e9eba461c0..2b6644d5219219746e5707f89af4a57f12e8f91e 100644 (file)
@@ -1,33 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
- * Copyright (c) 2000 Silicon Graphics, Inc.  All Rights Reserved.
- * 
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of version 2 of the GNU General Public License as
- * published by the Free Software Foundation.
- * 
- * This program is distributed in the hope that it would be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- * 
- * Further, this software is distributed without any warranty that it is
- * free of the rightful claim of any third person regarding infringement
- * or the like.  Any license provided herein, whether implied or
- * otherwise, applies only to this software file.  Patent licenses, if
- * any, provided herein do not apply to combinations of this program with
- * other software, or any other product whatsoever.
- * 
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write the Free Software Foundation, Inc., 59
- * Temple Place - Suite 330, Boston MA 02111-1307, USA.
- * 
- * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
- * Mountain View, CA  94043, or:
- * 
- * http://www.sgi.com 
- * 
- * For further information regarding this notice, see: 
- * 
- * http://oss.sgi.com/projects/GenInfo/NoticeExplan/
+ * Copyright (c) 2000 Silicon Graphics, Inc.
+ * All Rights Reserved.
  */
 /*
  * iogen - a tool for generating file/sds io for a doio process
@@ -146,7 +120,7 @@ int Fileio = 0;             /* flag indicating that a file              */
 int    Naio_Strat_Types = 0;   /* # async io completion types              */
 struct strmap *Aio_Strat_List[128]; /* Async io completion types           */
 
-void   startup_info();
+void   startup_info(FILE *stream, int seed);
 
 /*
  * Map async io completion modes (-a args) names to values.  Macros are
@@ -160,21 +134,6 @@ struct strmap      Aio_Strat_Map[] = {
 #else
        { "none",       0       },
 #endif /* !linux */
-#ifdef CRAY
-#if _UMK || RELEASE_LEVEL >= 8000
-       { "recall",     A_RECALL        },
-#endif
-
-#ifdef RECALL_SIZEOF
-       { "recalla",    A_RECALLA       },
-#endif
-       { "recalls",    A_RECALLS       },
-#endif /* CRAY */
-
-#ifdef sgi
-       { "suspend",    A_SUSPEND       },
-       { "callback",   A_CALLBACK      },
-#endif
        { NULL,         -1              }
 };
 
@@ -209,80 +168,18 @@ struct strmap     Omode_Map[] = {
 struct strmap  Syscall_Map[] = {
        { "read",               READ,           0                       },
        { "write",              WRITE,          SY_WRITE                },
-#ifdef CRAY
-       { "reada",              READA,          SY_ASYNC                },
-       { "writea",             WRITEA,         SY_WRITE|SY_ASYNC       },
-#ifndef _CRAYMPP
-       { "ssread",             SSREAD,         SY_SDS                  },
-       { "sswrite",            SSWRITE,        SY_WRITE|SY_SDS         },
-#endif
-       { "listio",             LISTIO,         SY_ASYNC                },
-
-       /* listio as 4 system calls */
-       { "lread",              LREAD,          0                       },
-       { "lreada",             LREADA,         SY_ASYNC                },
-       { "lwrite",             LWRITE,         SY_WRITE                },
-       { "lwritea",            LWRITEA,        SY_WRITE|SY_ASYNC       },
-
-       /* listio with nstrides > 1 */
-       { "lsread",             LSREAD,         0                       },
-       { "lsreada",            LSREADA,        SY_ASYNC                },
-       { "lswrite",            LSWRITE,        SY_WRITE                },
-       { "lswritea",           LSWRITEA,       SY_WRITE|SY_ASYNC       },
-
-       /* listio with nents > 1 */
-       { "leread",             LEREAD,         0|SY_NENT               },
-       { "lereada",            LEREADA,        SY_ASYNC|SY_NENT        },
-       { "lewrite",            LEWRITE,        SY_WRITE|SY_NENT        },
-       { "lewritea",           LEWRITEA,       SY_WRITE|SY_ASYNC|SY_NENT },
-
-       /* listio with nents > 1 & nstrides > 1 */
-
-       /* all listio system calls under one name */
-       { "listio+",            LREAD,          0                       },
-       { "listio+",            LREADA,         SY_ASYNC                },
-       { "listio+",            LWRITE,         SY_WRITE                },
-       { "listio+",            LWRITEA,        SY_WRITE|SY_ASYNC       },
-       { "listio+",            LSREAD,         0                       },
-       { "listio+",            LSREADA,        SY_ASYNC                },
-       { "listio+",            LSWRITE,        SY_WRITE                },
-       { "listio+",            LSWRITEA,       SY_WRITE|SY_ASYNC       },
-       { "listio+",            LEREAD,         0|SY_NENT               },
-       { "listio+",            LEREADA,        SY_ASYNC|SY_NENT        },
-       { "listio+",            LEWRITE,        SY_WRITE|SY_NENT        },
-       { "listio+",            LEWRITEA,       SY_WRITE|SY_ASYNC|SY_NENT },
-#endif
-
        { "pread",              PREAD                                   },
        { "pwrite",             PWRITE,         SY_WRITE                },
-#ifdef sgi
-       { "aread",              AREAD,          SY_ASYNC                },
-       { "awrite",             AWRITE,         SY_WRITE|SY_ASYNC       },
-#if 0
-       /* not written yet */
-       { "llread",             LLREAD,         0                       },
-       { "llaread",            LLAREAD,        SY_ASYNC                },
-       { "llwrite",            LLWRITE,        0                       },
-       { "llawrite",           LLAWRITE,       SY_ASYNC                },
-       { "ffsync",             DFFSYNC,        SY_WRITE                },
-#endif
-#endif /* SGI */
-#ifndef NO_XFS
        { "resvsp",             RESVSP,         SY_WRITE                },
        { "unresvsp",           UNRESVSP,       SY_WRITE                },
        { "reserve",            RESVSP,         SY_WRITE                },
        { "unreserve",          UNRESVSP,       SY_WRITE                },
-#endif
-
-#ifndef CRAY
        { "readv",              READV                                   },
        { "writev",             WRITEV,         SY_WRITE                },
        { "mmread",             MMAPR                                   },
        { "mmwrite",            MMAPW,          SY_WRITE                },
        { "fsync2",             FSYNC2,         SY_WRITE                },
        { "fdatasync",          FDATASYNC,      SY_WRITE                },
-#endif
-
        { NULL,                 -1      }
 };
 
@@ -294,36 +191,7 @@ struct strmap      Syscall_Map[] = {
 struct strmap  Flag_Map[] = {
        { "buffered",           0,                      0       },
        { "sync",               O_SYNC,                 0       },
-#ifdef CRAY
-       { "raw",                O_RAW,                  FLG_RAW },
-       { "raw+wf",             O_RAW | O_WELLFORMED,   FLG_RAW },
-       { "raw+wf+ldraw",       O_RAW | O_WELLFORMED | O_LDRAW, FLG_RAW },
-       { "raw+wf+ldraw+sync",  O_RAW | O_WELLFORMED | O_LDRAW | O_SYNC, FLG_RAW },
-#ifdef O_SSD
-       { "ssd",                O_SSD,                  FLG_RAW },
-#endif
-#ifdef O_LDRAW
-       { "ldraw",              O_LDRAW,                0       },
-#endif
-#ifdef O_PARALLEL
-       { "parallel",           O_PARALLEL | O_RAW | O_WELLFORMED,
-                 FLG_RAW },
-       { "parallel+sync",      O_PARALLEL | O_RAW | O_WELLFORMED | O_SYNC,
-                 FLG_RAW },
-       { "parallel+ldraw",     O_PARALLEL | O_RAW | O_WELLFORMED | O_LDRAW,
-                 FLG_RAW },
-       { "parallel+ldraw+sync",
-                 O_PARALLEL | O_RAW | O_WELLFORMED | O_LDRAW | O_SYNC,
-                 FLG_RAW },
-#endif
-#endif /* CRAY */
-
        { "direct",             O_DIRECT,               FLG_RAW },
-#ifdef sgi
-       { "dsync",              O_DSYNC         },      /* affects writes */
-       { "rsync",              O_RSYNC         },      /* affects reads */
-       { "rsync+dsync",        O_RSYNC|O_DSYNC },
-#endif
        { NULL,             -1          }
 };
 
@@ -367,13 +235,7 @@ char       **argv;
     struct io_req   req;
     
     umask(0);
-
-#ifdef CRAY
-    Sds_Avail = sysconf(_SC_CRAY_SDS);
-#else
     Sds_Avail = 0;
-#endif
-
     TagName[0] = '\0';
     parse_cmdline(argc, argv, OPTS);
 
@@ -425,7 +287,7 @@ char        **argv;
 void
 startup_info(FILE *stream, int seed)
 {
-    char       *value_to_string(), *type;
+    char       *value_to_string(struct strmap *map, int val), *type;
     int                i;
 
     fprintf(stream, "\n");
@@ -571,9 +433,6 @@ struct io_req   *req;
     char               pattern, *errp;
     struct strmap      *flags, *sc, *aio_strat;
     struct file_info   *fptr;
-#ifdef CRAY
-    int                 opcode, cmd;
-#endif
 
     /*
      * Choose system call, flags, and file
@@ -582,32 +441,11 @@ struct io_req   *req;
     sc = Syscall_List[random_range(0, Nsyscalls-1, 1, NULL)];
     req->r_type = sc->m_value;
 
-#ifdef CRAY
-    if (sc->m_value == LISTIO ) {
-           opcode = random_range(0, 1, 1, NULL) ? LO_READ : LO_WRITE;
-           cmd = random_range(0, 1, 1, NULL) ? LC_START : LC_WAIT;
-    }
-#endif
-
     if( sc->m_flags & SY_WRITE )
            pattern = Byte_Patterns[random_range(0, sizeof(Byte_Patterns) - 1, 1, NULL)];
     else
            pattern = 0;
 
-#if CRAY
-    /*
-     * If sds io, simply choose a length (possibly pattern) and return
-     */
-
-    if (sc->m_flags & SY_SDS ) {
-           req->r_data.ssread.r_nbytes = random_range(Mintrans, Maxtrans, BSIZE, NULL);
-           if (sc->m_flags & SY_WRITE)
-                   req->r_data.sswrite.r_pattern = pattern;
-
-           return 0;
-    }
-#endif
-
     /*
      * otherwise, we're doing file io.  Choose starting offset, length,
      * open flags, and possibly a pattern (for write/writea).
@@ -870,25 +708,6 @@ struct io_req   *req;
        break;
 
     case LISTIO:
-#ifdef CRAY
-       strcpy(req->r_data.listio.r_file, fptr->f_path);
-       req->r_data.listio.r_offset = offset;
-       req->r_data.listio.r_cmd = cmd;
-       req->r_data.listio.r_aio_strat = (aio_strat==NULL) ? 0 : aio_strat->m_value;
-       req->r_data.listio.r_filestride = 0;
-       req->r_data.listio.r_memstride = 0;
-       req->r_data.listio.r_opcode = opcode;
-       req->r_data.listio.r_nstrides = 1;
-       req->r_data.listio.r_nbytes = length;
-       req->r_data.listio.r_uflags = (flags->m_flags & FLG_RAW) ? F_WORD_ALIGNED : 0;
-
-       if (opcode == LO_WRITE) {
-               req->r_data.listio.r_pattern = pattern;
-               req->r_data.listio.r_oflags = O_WRONLY | flags->m_value;
-       } else {
-               req->r_data.listio.r_oflags = O_RDONLY | flags->m_value;
-       }
-#endif
        break;
     }
 
@@ -911,13 +730,8 @@ get_file_info(rec)
 struct file_info    *rec;
 {
     struct stat                        sbuf;
-#ifdef CRAY
-    struct lk_device_info      dinfo;
-#endif
-#ifndef NO_XFS
     int                                fd;
     struct dioattr             finfo;
-#endif
 
     /*
      * Figure out if the files is regular, block or character special.  Any
@@ -930,13 +744,6 @@ struct file_info    *rec;
        return -1;
     }
 
-#if _CRAY2
-    if ((! S_ISREG(sbuf.st_mode)) || strncmp(rec->f_path, "/dev/", 5) == 0) {
-       fprintf(stderr, "iogen%s:  device level io not supported on cray2\n", TagName);
-       return -1;
-    }
-#endif
-
     rec->f_type = sbuf.st_mode & S_IFMT;
 
     /*
@@ -961,19 +768,8 @@ struct file_info    *rec;
        }
 
        rec->f_riou = BSIZE;
-#ifdef CRAY
-       if (lk_rawdev(rec->f_path, dinfo.path, sizeof(dinfo.path), 0) == -1)
-           return -1;
-
-       if (lk_devinfo(&dinfo, 0) == -1) {
-           /* can't get raw I/O unit -- use stat to fudge it */
-           rec->f_riou = sbuf.st_blksize;
-       } else {
-           rec->f_riou = ctob(dinfo.iou);
-       }
-#endif
-#ifndef NO_XFS
        if( (fd = open(rec->f_path, O_RDWR|O_DIRECT, 0)) != -1 ) {
+           char *dio_env;
 #ifdef XFS_IOC_DIOINFO
            if(xfsctl(rec->f_path, fd, XFS_IOC_DIOINFO, &finfo) != -1) {
 #else
@@ -983,6 +779,10 @@ struct file_info    *rec;
 bozo!
 #endif
 #endif
+               dio_env = getenv("XFS_DIO_MIN");
+               if (dio_env)
+                   finfo.d_mem = finfo.d_miniosz = atoi(dio_env);
+
                rec->f_riou = finfo.d_miniosz;
            } else {
                fprintf(stderr,
@@ -993,35 +793,10 @@ bozo!
        } else {
            rec->f_riou = BBSIZE;
        }
-#endif
-
     } else {
 
-#ifdef CRAY
-       /*
-        * Otherwise, file is a device.  Use lk_devinfo() to get its logical
-        * sector size.  This is the iou and riou
-        */
-
-       strcpy(dinfo.path, rec->f_path);
-
-       if (lk_devinfo(&dinfo, 0) == -1) {
-           fprintf(stderr, "iogen%s: %s:  %s\n", TagName, Lk_err_func, Lk_err_mesg);
-           return -1;
-       }
-
-       rec->f_iou = ctob(dinfo.iou);
-       rec->f_riou = ctob(dinfo.iou);
-       rec->f_length = ctob(dinfo.length);
-#else
-#ifdef sgi
-       rec->f_riou = BBSIZE;
-       rec->f_length = BBSIZE;
-#else
        rec->f_riou = BSIZE;
        rec->f_length = BSIZE;
-#endif /* sgi */
-#endif /* CRAY */
     }
 
     return 0;
@@ -1041,13 +816,11 @@ int      nbytes;
     int                fd, rval;
     char       c;
     struct stat        sbuf;
-#ifndef NO_XFS
     int                nb;
     struct flock64 f;
     struct fsxattr xattr;
     struct dioattr finfo;
     char       *b, *buf;
-#endif
 
     errno = 0;
     rval = stat(path, &sbuf);
@@ -1074,7 +847,7 @@ int        nbytes;
 
     Oflags |= O_CREAT | O_WRONLY;
 
-    if ((fd = open(path, Oflags, 0666, Ocbits, Ocblks)) == -1) {
+    if ((fd = open(path, Oflags, 0666)) == -1) {
        fprintf(stderr, "iogen%s:  Could not create/open file %s: %s (%d)\n",
                TagName, path, SYSERR, errno);
        return -1;
@@ -1095,7 +868,6 @@ int        nbytes;
        }
     } else {
 
-#ifndef NO_XFS
        /*
         *  The file must be designated as Real-Time before any data
         *  is allocated to it.
@@ -1138,7 +910,6 @@ bozo!
                fprintf(stderr, "get: fsx_xflags = 0x%x\n", 
                        xattr.fsx_xflags);
            }
-#endif
        }
 
        /*
@@ -1220,10 +991,10 @@ bozo!
         * file size.
         */
 
-#ifndef NO_XFS
        if(Owrite == 2) {
            close(fd);
            if( (fd = open(path, O_CREAT|O_RDWR|O_DIRECT, 0)) != -1 ) {
+               char *dio_env;
 #ifdef XFS_IOC_DIOINFO
                if(xfsctl(path, fd, XFS_IOC_DIOINFO, &finfo) == -1) {
 #else
@@ -1241,6 +1012,10 @@ bozo!
                    /*fprintf(stderr, "%s: miniosz=%d\n", 
                            path, finfo.d_miniosz);*/
                }
+
+               dio_env = getenv("XFS_DIO_MIN");
+               if (dio_env)
+                       finfo.d_mem = finfo.d_miniosz = atoi(dio_env);
            } else {
                fprintf(stderr, "iogen%s: Error %s (%d) opening file %s with flags O_CREAT|O_RDWR|O_DIRECT\n",
                        TagName, SYSERR, errno, path);
@@ -1293,7 +1068,6 @@ bozo!
            }
            free(b);
        } else
-#endif
            if(Owrite) {
            /*fprintf(stderr,
                    "create_file_Owrite: lseek(%d, %d {%d}, SEEK_SET)\n",
@@ -1407,32 +1181,12 @@ char    *opts;
     struct file_info   *fptr;
     int                        nopenargs;
     char               *openargs[5];   /* Flags, cbits, cblks */
-#ifdef CRAY
-    char               *errmsg;
-    char               *ranges;
-    struct strmap      *type;
-#endif
-
     while ((o = getopt(argc, argv, opts)) != EOF) {
         switch ((char)o) {
 
        case 'a':
-#ifndef CRAY
            fprintf(stderr, "iogen%s:  Unrecognized option -a on this platform\n", TagName);
            exit(2);
-#else
-           cp = strtok(optarg, ",");
-           while (cp != NULL) {
-               if ((type = str_lookup(Aio_Strat_Map, cp)) == NULL) {
-                   fprintf(stderr, "iogen%s:  Unrecognized aio completion strategy:  %s\n", TagName, cp);
-                   exit(2);
-               }
-
-               Aio_Strat_List[Naio_Strat_Types++] = type;
-               cp = strtok(NULL, ",");
-           }
-           a_opt++;
-#endif
            break;
 
        case 'f':
@@ -1494,23 +1248,8 @@ char     *opts;
            break;
 
        case 'L':
-#ifndef CRAY
            fprintf(stderr, "iogen%s:  Unrecognized option -L on this platform\n", TagName);
            exit(2);
-#else
-           if( parse_ranges(optarg, 1, 255, 1, NULL, &ranges, 
-                            &errmsg ) == -1 ) {
-                   fprintf(stderr, "iogen%s: error parsing listio range '%s': %s\n",
-                           TagName, optarg, errmsg);
-                   exit(1);
-           }
-
-           Minstrides = range_min(ranges, 0);
-           Maxstrides = range_max(ranges, 0);
-
-           free(ranges);
-           L_opt++;
-#endif
            break;
 
        case 'm':
@@ -1523,7 +1262,7 @@ char      *opts;
            break;
 
        case 'N':
-           sprintf( TagName, "(%.39s)", optarg );
+           sprintf( TagName, "(%.37s)", optarg );
            break;
 
        case 'o':
@@ -1533,20 +1272,6 @@ char     *opts;
        case 'O':
 
            nopenargs = string_to_tokens(optarg, openargs, 4, ":/");
-
-#ifdef CRAY
-           if(nopenargs)
-               sscanf(openargs[1],"%i", &Ocbits);
-           if(nopenargs > 1)
-               sscanf(openargs[2],"%i", &Ocblks);
-
-           Oflags = parse_open_flags(openargs[0], &errmsg);
-           if(Oflags == -1) {
-               fprintf(stderr, "iogen%s: -O %s error: %s\n", TagName, optarg, errmsg);
-               exit(1);
-           }
-#endif
-#ifndef NO_XFS
            if(!strcmp(openargs[0], "realtime")) {
                /*
                 * -O realtime:extsize
@@ -1583,14 +1308,6 @@ char     *opts;
                        TagName, openargs[0]);
                exit(1);
            }
-#else
-           Oflags = parse_open_flags(openargs[0], &errmsg);
-           if(Oflags == -1) {
-               fprintf(stderr, "iogen%s: -O %s error: %s\n", TagName, optarg, errmsg);
-               exit(1);
-           }
-#endif
-
            O_opt++;
            break;
 
@@ -1699,28 +1416,12 @@ char    *opts;
        Nsyscalls = 0;
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "read");
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "write");
-#ifdef CRAY
-       Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "reada");
-       Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "writea");
-       Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "lread");
-       Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "lreada");
-       Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "lwrite");
-       Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "lwritea");
-#endif
-
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "pread");
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "pwrite");
-#ifdef sgi
-       /*Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "aread");*/
-       /*Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "awrite");*/
-#endif
-
-#ifndef CRAY
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "readv");
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "writev");
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "mmread");
        Syscall_List[Nsyscalls++] = str_lookup(Syscall_Map, "mmwrite");
-#endif
 
         Fileio = 1;
     }
@@ -1738,18 +1439,6 @@ char     *opts;
            Nflags = 0;
            Flag_List[Nflags++] = str_lookup(Flag_Map, "buffered");
            Flag_List[Nflags++] = str_lookup(Flag_Map, "sync");
-#ifdef CRAY
-           Flag_List[Nflags++] = str_lookup(Flag_Map, "raw+wf");
-           Flag_List[Nflags++] = str_lookup(Flag_Map, "ldraw");
-#endif
-
-#ifdef sgi
-           /* Warning: cannot mix direct i/o with others! */
-           Flag_List[Nflags++] = str_lookup(Flag_Map, "dsync");
-           Flag_List[Nflags++] = str_lookup(Flag_Map, "rsync");
-           /* Flag_List[Nflags++] = str_lookup(Flag_Map, "rsync+sync");*/
-           /* Flag_List[Nflags++] = str_lookup(Flag_Map, "rsync+dsync");*/
-#endif
     }
 
     if (Fileio) {
@@ -1911,44 +1600,20 @@ FILE    *stream;
     fprintf(stream, "\n");
 #ifndef linux
     fprintf(stream, "\t-a aio_type,...  Async io completion types to choose.  Supported types\n");
-#ifdef CRAY
-#if _UMK || RELEASE_LEVEL >= 8000
-    fprintf(stream, "\t                 are:  poll, signal, recall, recalla, and recalls.\n");
-#else
-    fprintf(stream, "\t                 are:  poll, signal, recalla, and recalls.\n");
-#endif
-#else
     fprintf(stream, "\t                 are:  poll, signal, suspend, and callback.\n");
-#endif
     fprintf(stream, "\t                 Default is all of the above.\n");
 #else /* !linux */
     fprintf(stream, "\t-a               (Not used on Linux).\n");
 #endif /* !linux */
     fprintf(stream, "\t-f flag,...      Flags to use for file IO.  Supported flags are\n");
-#ifdef CRAY
-    fprintf(stream, "\t                 raw, ssd, buffered, ldraw, sync,\n");
-    fprintf(stream, "\t                 raw+wf, raw+wf+ldraw, raw+wf+ldraw+sync,\n");
-    fprintf(stream, "\t                 and parallel (unicos/mk on MPP only).\n");
-    fprintf(stream, "\t                 Default is 'raw,ldraw,sync,buffered'.\n");
-#else
-#ifndef NO_XFS
     fprintf(stream, "\t                 buffered, direct, sync.\n");
     fprintf(stream, "\t                 Default is 'buffered,sync'.\n");
-#else
-    fprintf(stream, "\t                 buffered, sync.\n");
-    fprintf(stream, "\t                 Default is 'buffered,sync'.\n");
-#endif /* sgi */
-#endif /* CRAY */
     fprintf(stream, "\t-h               This help.\n");
     fprintf(stream, "\t-i iterations[s] # of requests to generate.  0 means causes iogen\n");
     fprintf(stream, "\t                 to run until it's killed.  If iterations is suffixed\n");
     fprintf(stream, "\t                 with 's', then iterations is the number of seconds\n");
     fprintf(stream, "\t                 that iogen should run for.  Default is '0'.\n");
-#ifndef CRAY
     fprintf(stream, "\t-L min:max       listio nstrides / nrequests range\n");
-#else
-    fprintf(stream, "\t-L               (Not used on this platform).\n");
-#endif /* !CRAY */
     fprintf(stream, "\t-m offset-mode   The mode by which iogen chooses the offset for\n");
     fprintf(stream, "\t                 consectutive transfers within a given file.\n");
     fprintf(stream, "\t                 Allowed values are 'random', 'sequential',\n");
@@ -1957,33 +1622,15 @@ FILE    *stream;
     fprintf(stream, "\t-N tagname       Tag name, for Monster.\n");
     fprintf(stream, "\t-o               Form overlapping consecutive requests.\n");
     fprintf(stream, "\t-O               Open flags for creating files\n");
-#ifdef CRAY
-    fprintf(stream, "\t                 {O_PLACE,O_BIG,etc}[:CBITS[:CBLKS]]\n");
-#endif
-#ifndef NO_XFS
     fprintf(stream, "\t                 realtime:extsize - put file on real-time volume\n");
     fprintf(stream, "\t                 allocate - allocate space with F_ALLOCSP\n");
     fprintf(stream, "\t                 reserve - reserve space with F_RESVSP (default)\n");
     fprintf(stream, "\t                 noreserve - do not reserve with F_RESVSP\n");
     fprintf(stream, "\t                 direct - use O_DIRECT I/O to write to the file\n");
-#else
-    fprintf(stream, "\t                 {O_SYNC,etc}\n");
-#endif
     fprintf(stream, "\t-p               Output pipe.  Default is stdout.\n");
     fprintf(stream, "\t-q               Quiet mode.  Normally iogen spits out info\n");
     fprintf(stream, "\t                 about test files, options, etc. before starting.\n");
     fprintf(stream, "\t-s syscall,...   Syscalls to do.  Supported syscalls are\n");
-#ifdef sgi
-    fprintf(stream, "\t                 read, write, pread, pwrite, readv, writev\n");
-    fprintf(stream, "\t                 aread, awrite, resvsp, unresvsp, ffsync,\n");
-    fprintf(stream, "\t                 mmread, mmwrite, fsync2, fdatasync,\n");
-    fprintf(stream, "\t                 Default is 'read,write,pread,pwrite,readv,writev,mmread,mmwrite'.\n");
-#endif
-#ifdef CRAY
-    fprintf(stream, "\t                 read, write, reada, writea, listio,\n");
-    fprintf(stream, "\t                 ssread (PVP only), and sswrite (PVP only).\n");
-    fprintf(stream, "\t                 Default is 'read,write,reada,writea,listio'.\n");
-#endif
 #ifdef linux
     fprintf(stream, "\t                 read, write, pread, pwrite, readv, writev,\n");
     fprintf(stream, "\t                 mmread, mmwrite, fsync2, fdatasync,\n");