X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Fstatmany.c;h=fa3a4d19aa545f402a1b1eeb26f333ed183d78af;hb=aa1a240338d18201f1047db62b31603e2cffcfe3;hp=d1214199192ef38322918a5da72c825fdd34d276;hpb=e3a7c58aebafce40323db54bf6056029e5af4a70;p=fs%2Flustre-release.git diff --git a/lustre/tests/statmany.c b/lustre/tests/statmany.c index d121419..fa3a4d1 100644 --- a/lustre/tests/statmany.c +++ b/lustre/tests/statmany.c @@ -26,6 +26,8 @@ /* * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. + * + * Copyright (c) 2014, Intel Corporation. */ /* * This file is part of Lustre, http://www.lustre.org/ @@ -45,26 +47,22 @@ #include #include -#include -#include -#include +#include struct option longopts[] = { - {"ea", 0, 0, 'e'}, {"lookup", 0, 0, 'l'}, {"random", 0, 0, 'r'}, {"stat", 0, 0, 's'}, {NULL, 0, 0, 0}, }; -char *shortopts = "ehlr:s0123456789"; +char *shortopts = "hlr:s0123456789"; static int usage(char *prog, FILE *out) { fprintf(out, - "Usage: %s [-r rand_seed] {-s|-e|-l} filenamebase total_files iterations\n" + "Usage: %s [-r rand_seed] {-s|-l} filenamebase total_files iterations\n" "-r : random seed\n" "-s : regular stat() calls\n" - "-e : open then GET_EA ioctl\n" "-l : lookup ioctl only\n", prog); exit(out == stderr); } @@ -92,7 +90,6 @@ int main(int argc, char ** argv) usage(prog, stderr); } break; - case 'e': case 'l': case 's': mode = rc; @@ -176,24 +173,7 @@ int main(int argc, char ** argv) tmp = random() % count; sprintf(filename, "%s%d", base, tmp); - if (mode == 'e') { -#if 0 - fd = open(filename, O_RDWR|O_LARGEFILE); - if (fd < 0) { - printf("open(%s) error: %s\n", filename, - strerror(errno)); - break; - } - rc = ioctl(fd, LDISKFS_IOC_GETEA, NULL); - if (rc < 0) { - printf("ioctl(%s) error: %s\n", filename, - strerror(errno)); - break; - } - close(fd); - break; -#endif - } else if (mode == 's') { + if (mode == 's') { struct stat buf; rc = stat(filename, &buf);