X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Futils%2Fobdbarrier.c;h=481c104144033dc9c7ecd0267e64f2b3188e2370;hp=8774cef0407c2c797c0c92cce3d961874b9d94da;hb=848f9e20320cb7c01eaf7f1b5c27f5efd54e4818;hpb=a2a0746305449dbd925879b14dc2c0d6040bb8bf diff --git a/lustre/utils/obdbarrier.c b/lustre/utils/obdbarrier.c index 8774cef..481c104 100644 --- a/lustre/utils/obdbarrier.c +++ b/lustre/utils/obdbarrier.c @@ -1,24 +1,39 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: +/* + * GPL HEADER START * - * Copyright (C) 2002 Cluster File Systems, Inc. - * Author: Eric Barton + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * This file is part of Lustre, http://www.lustre.org. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 only, + * as published by the Free Software Foundation. * - * Lustre is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public - * License as published by the Free Software Foundation. + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License version 2 for more details (a copy is included + * in the LICENSE file that accompanied this code). * - * Lustre is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. + * 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 * - * You should have received a copy of the GNU General Public License - * along with Lustre; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * 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. * + * GPL HEADER END + */ +/* + * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. + * Use is subject to license terms. + */ +/* + * This file is part of Lustre, http://www.lustre.org/ + * Lustre is a trademark of Sun Microsystems, Inc. + * + * lustre/utils/obdbarrier.c + * + * Author: Eric Barton */ #include @@ -30,9 +45,9 @@ #include "obdiolib.h" int -parse_kmg (uint64_t *valp, char *str) +parse_kmg (__u64 *valp, char *str) { - uint64_t val; + __u64 val; char mod[32]; switch (sscanf (str, LPU64"%1[gGmMkK]", &val, mod)) @@ -100,9 +115,9 @@ exponential_modulus (int i, int base) int main (int argc, char **argv) { - uint64_t bid = (((uint64_t)gethostid()) << 32) | getpid (); + __u64 bid = (((__u64)gethostid()) << 32) | getpid (); int set_bid = 0; - uint64_t oid; + __u64 oid; int setup = 0; int device = -1; int npeers = 0; @@ -111,7 +126,7 @@ main (int argc, char **argv) struct obdio_conn *conn; struct obdio_barrier *b; char *end; - uint64_t val; + __u64 val; int rc; int c; @@ -220,5 +235,3 @@ main (int argc, char **argv) return (rc == 0 ? 0 : 1); } - -