X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lnet%2Fklnds%2Fviblnd%2Fwirecheck.c;h=711b7d8f136e847e4b1f898a7fdbf768153840b4;hp=d42171d13f12c25082db30df9a7bd88ec9579f01;hb=b633081453569e8b332b41c2cfceff93d3ab9704;hpb=98753b37232a15d226b9247f2657aba8d6c7d9a3 diff --git a/lnet/klnds/viblnd/wirecheck.c b/lnet/klnds/viblnd/wirecheck.c index d42171d..711b7d8 100644 --- a/lnet/klnds/viblnd/wirecheck.c +++ b/lnet/klnds/viblnd/wirecheck.c @@ -1,15 +1,56 @@ /* -*- 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. + * + * 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. + * + * 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). + * + * 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. + * + * GPL HEADER END */ +/* + * Copyright (c) 2005, 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. + */ + #include #include #include #include -#include -#include + +#include + +/* This ghastly hack to allows me to include lib-types.h It doesn't affect any + * assertions generated here (but fails-safe if it ever does) */ +typedef struct { + int counter; +} atomic_t; + +#include #define IBNAL_USE_FMR 1 -#include "vibnal_wire.h" +#include "viblnd_wire.h" #ifndef HAVE_STRNLEN #define strnlen(s, i) strlen(s) @@ -146,6 +187,10 @@ main (int argc, char **argv) CHECK_DEFINE (IBNAL_MSG_GET_REQ); CHECK_DEFINE (IBNAL_MSG_GET_DONE); + CHECK_DEFINE (IBNAL_REJECT_CONN_RACE); + CHECK_DEFINE (IBNAL_REJECT_NO_RESOURCES); + CHECK_DEFINE (IBNAL_REJECT_FATAL); + CHECK_STRUCT (kib_connparams_t); CHECK_MEMBER (kib_connparams_t, ibcp_queue_depth); CHECK_MEMBER (kib_connparams_t, ibcp_max_msg_size);