Whamcloud - gitweb
LU-582 test: fix bug in get_ost_param in sanity.sh
[fs/lustre-release.git] / lustre / tests / mpi / cascading_rw.c
index fe91c20..1d73fad 100644 (file)
@@ -1,6 +1,4 @@
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
- *
+/*
  * GPL HEADER START
  *
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 #include <getopt.h>
 #include <errno.h>
 
-#include <libcfs/libcfs.h>
+#include <lustre/lustreapi.h>
 #include "lp_utils.h"
 #ifndef _IOWR
 # include <ioctl.h>
 #endif
 
-#include <lustre/liblustreapi.h>
 
 int rank = 0;
 int size = 0;
@@ -68,7 +65,6 @@ char *testdir = NULL;
 void rw_file(char *name, long stride, unsigned int seed)
 {
         char filename[MAX_FILENAME_LEN];
-        char path[MAX_FILENAME_LEN]; 
         char errmsg[MAX_FILENAME_LEN+20];
         char *buf, *o_buf;
         struct lov_user_md lum = {0};
@@ -103,13 +99,6 @@ void rw_file(char *name, long stride, unsigned int seed)
                         sprintf(errmsg, "close of file %s", filename);
                         FAIL(errmsg);
                 }
-
-                strncpy(path, filename, MAX_FILENAME_LEN);
-                rc = llapi_file_get_stripe(path, &lum);
-                if (rc == -1) {
-                        sprintf(errmsg, "get stripe of file %s", filename);
-                        FAIL(errmsg);
-                }
         }
 
         MPI_Barrier(MPI_COMM_WORLD);