X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Ftests%2Flp_utils.c;h=ea0170b4af2ba7691d33f6ce939f74d7fc1ac4c5;hb=35a3f955502c6406761cadc720283f8132665a43;hp=4a47ca24cb8bf98cb699bc94b1ba7a9bbbd84489;hpb=df45a07614e4ec941d482e618edb629f71ac585c;p=fs%2Flustre-release.git diff --git a/lustre/tests/lp_utils.c b/lustre/tests/lp_utils.c index 4a47ca2..ea0170b 100644 --- a/lustre/tests/lp_utils.c +++ b/lustre/tests/lp_utils.c @@ -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. @@ -17,17 +15,15 @@ * * You should have received a copy of the GNU General Public License * version 2 along with this program; If not, see - * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf - * - * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, - * CA 95054 USA or visit www.sun.com if you need additional information or - * have any questions. + * http://www.gnu.org/licenses/gpl-2.0.html * * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Copyright (c) 2004, 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/ @@ -49,7 +45,6 @@ #include #include #include -#include #include "lustre/lustre_user.h" #include "lustre/tests/lp_utils.h" @@ -73,7 +68,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); @@ -81,7 +76,7 @@ inline void begin(char *str) { } } -inline void end(char *str) { +void end(char *str) { float elapsed; MPI_Barrier(MPI_COMM_WORLD);