Whamcloud - gitweb
LU-8207 scripts: add auto-stripe option to lfs_migrate
[fs/lustre-release.git] / lustre / tests / mpi / lp_utils.c
index e738164..4a68beb 100644 (file)
@@ -44,7 +44,6 @@
 #include <sys/ioctl.h>
 #include <fcntl.h>
 #include <errno.h>
-#include "lustre/lustre_user.h"
 #include "lp_utils.h"
 
 #define MAX_PROCESSES 8
@@ -67,7 +66,7 @@ char *timestamp() {
         return datestring;
 }
 
-inline void begin(char *str) {
+void begin(char *str) {
         if (verbose > 0 && rank == 0) {
                 gettimeofday(&t1, NULL);
                 printf("%s:\tBeginning %s\n", timestamp(), str);
@@ -75,7 +74,7 @@ inline void begin(char *str) {
         }
 }
 
-inline void end(char *str) {
+void end(char *str) {
         float elapsed;
 
         MPI_Barrier(MPI_COMM_WORLD);