1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 only,
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License version 2 for more details (a copy is included
16 * in the LICENSE file that accompanied this code).
18 * You should have received a copy of the GNU General Public License
19 * version 2 along with this program; If not, see
20 * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
22 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23 * CA 95054 USA or visit www.sun.com if you need additional information or
29 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/tests/lp_utils.c
38 * Author: You Feng <youfeng@clusterfs.com>
46 #include <sys/types.h>
49 #include <sys/ioctl.h>
52 #include <liblustre.h>
53 #include "lustre/lustre_user.h"
54 #include "lustre/tests/lp_utils.h"
56 #define MAX_PROCESSES 8
63 struct timeval t1, t2;
66 static char datestring[80];
70 timestamp = time(NULL);
71 strftime(datestring, 80, "%T", localtime(×tamp));
76 inline void begin(char *str) {
77 if (verbose > 0 && rank == 0) {
78 gettimeofday(&t1, NULL);
79 printf("%s:\tBeginning %s\n", timestamp(), str);
84 inline void end(char *str) {
87 MPI_Barrier(MPI_COMM_WORLD);
88 if (verbose > 0 && rank == 0) {
89 gettimeofday(&t2, NULL);
90 elapsed = (t2.tv_sec + ((float)t2.tv_usec/1000000))
91 - (t1.tv_sec + ((float)t1.tv_usec/1000000));
93 printf("%s:\tFinished %-15s(%.2f min)\n",
94 timestamp(), str, elapsed / 60);
96 printf("%s:\tFinished %-15s(%.3f sec)\n",
97 timestamp(), str, elapsed);
104 void dump_diff(char *orig_buf, char *buf, int size, long _off)
109 printf("commpared buf size %d, at offset %lu\n\n", size, _off);
112 printf("original buf:\n");
114 end = orig_buf + size;
117 printf(" %8lx", *(long *)p);
122 if (i%8) printf("\n\n");
127 printf("different data: diff_data(orig_data)\n");
134 if (memcmp(p, orig_buf + off, sizeof(long)) != 0) {
135 printf("\toff: %5d,\tdata: %8lx (%8lx)\n", off,
137 *(unsigned long *)(orig_buf + off));
143 printf("\n %d total differents found\n\n", diff);
147 void lp_gethostname(void)
149 if (gethostname(hostname, 1024) == -1) {
150 fprintf(stderr, "gethostname: (%d)%s", errno, strerror(errno));
151 MPI_Abort(MPI_COMM_WORLD, 2);
155 /* This function does not FAIL if the requested "name" does not exit.
156 * This is just to clean up any files or directories left over from
159 void remove_file_or_dir(char *name)
162 char errmsg[MAX_FILENAME_LEN + 20];
164 if (stat(name, &statbuf) != -1) {
165 if (S_ISREG(statbuf.st_mode)) {
166 printf("stale file found\n");
167 if (unlink(name) == -1) {
168 sprintf(errmsg, "unlink of %s", name);
172 if (S_ISDIR(statbuf.st_mode)) {
173 printf("stale directory found\n");
174 if (rmdir(name) == -1) {
175 sprintf(errmsg, "rmdir of %s", name);
182 void create_file(char *name, long filesize, int fill)
184 static char filename[MAX_FILENAME_LEN];
185 char errmsg[MAX_FILENAME_LEN + 20];
190 long left = filesize;
192 /* Process 0 creates the test file(s) */
194 sprintf(filename, "%s/%s", testdir, name);
195 remove_file_or_dir(filename);
196 if ((fd = creat(filename, FILEMODE)) == -1) {
197 sprintf(errmsg, "create of file %s", filename);
201 if (lseek(fd, filesize - 1, SEEK_SET) == -1) {
203 sprintf(errmsg, "lseek of file %s", filename);
206 if (write(fd, &zero, 1) == -1) {
208 sprintf(errmsg, "write of file %s", filename);
212 if (filesize > 0 && fill) {
213 if (lseek(fd, 0, SEEK_SET) == -1) {
215 sprintf(errmsg, "lseek of file %s", filename);
218 memset(buf, c, 1024);
220 if ((rc = write(fd, buf,
221 left > (1024 * 8) ? (1024 * 8) : left))
224 sprintf(errmsg, "write of file %s", filename);
230 if (close(fd) == -1) {
231 sprintf(errmsg, "close of file %s", filename);
237 void check_stat(char *filename, struct stat *state, struct stat *old_state)
239 char errmsg[MAX_FILENAME_LEN+20];
241 if (stat(filename, state) == -1) {
242 sprintf(errmsg, "stat of file %s", filename);
246 if (memcmp(state, old_state, sizeof(struct stat)) != 0) {
248 sprintf(errmsg, LP_STAT_FMT, LP_STAT_ARGS);
253 void remove_file(char *name)
255 char filename[MAX_FILENAME_LEN];
256 char errmsg[MAX_FILENAME_LEN + 20];
258 /* Process 0 remove the file(s) */
260 sprintf(filename, "%s/%s", testdir, name);
261 if (unlink(filename) == -1) {
262 sprintf(errmsg, "unlink of file %s", filename);
268 void fill_stride(char *buf, int buf_size, long long rank, long long _off)
271 long long off, data[2];
272 int cp, left = buf_size;
278 cp = left > sizeof(data) ? sizeof(data) : left;