1*b86efd96Sagiri/*
2*b86efd96Sagiri * CDDL HEADER START
3*b86efd96Sagiri *
4*b86efd96Sagiri * The contents of this file are subject to the terms of the
5*b86efd96Sagiri * Common Development and Distribution License (the "License").
6*b86efd96Sagiri * You may not use this file except in compliance with the License.
7*b86efd96Sagiri *
8*b86efd96Sagiri * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*b86efd96Sagiri * or http://www.opensolaris.org/os/licensing.
10*b86efd96Sagiri * See the License for the specific language governing permissions
11*b86efd96Sagiri * and limitations under the License.
12*b86efd96Sagiri *
13*b86efd96Sagiri * When distributing Covered Code, include this CDDL HEADER in each
14*b86efd96Sagiri * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*b86efd96Sagiri * If applicable, add the following below this CDDL HEADER, with the
16*b86efd96Sagiri * fields enclosed by brackets "[]" replaced with your own identifying
17*b86efd96Sagiri * information: Portions Copyright [yyyy] [name of copyright owner]
18*b86efd96Sagiri *
19*b86efd96Sagiri * CDDL HEADER END
20*b86efd96Sagiri */
21*b86efd96Sagiri#
22*b86efd96Sagiri# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23*b86efd96Sagiri# Use is subject to license terms.
24*b86efd96Sagiri#
25*b86efd96Sagiri# ident	"%Z%%M%	%I%	%E% SMI"
26*b86efd96Sagiri#
27*b86efd96Sagiri
28*b86efd96SagiriSome of the RDS source files in this directory contain code that is licensed
29*b86efd96Sagirifrom OpenFabrics.org, formerly OpenIB.org, under the following simplified
30*b86efd96SagiriBSD license:
31*b86efd96Sagiri
32*b86efd96Sagiri/*
33*b86efd96Sagiri * Copyright (c) 2005 SilverStorm Technologies, Inc. All rights reserved.
34*b86efd96Sagiri *
35*b86efd96Sagiri * This software is available to you under a choice of one of two
36*b86efd96Sagiri * licenses.  You may choose to be licensed under the terms of the GNU
37*b86efd96Sagiri * General Public License (GPL) Version 2, available from the file
38*b86efd96Sagiri * COPYING in the main directory of this source tree, or the
39*b86efd96Sagiri * OpenIB.org BSD license below:
40*b86efd96Sagiri *
41*b86efd96Sagiri *     Redistribution and use in source and binary forms, with or
42*b86efd96Sagiri *     without modification, are permitted provided that the following
43*b86efd96Sagiri *     conditions are met:
44*b86efd96Sagiri *
45*b86efd96Sagiri *	- Redistributions of source code must retain the above
46*b86efd96Sagiri *	  copyright notice, this list of conditions and the following
47*b86efd96Sagiri *	  disclaimer.
48*b86efd96Sagiri *
49*b86efd96Sagiri *	- Redistributions in binary form must reproduce the above
50*b86efd96Sagiri *	  copyright notice, this list of conditions and the following
51*b86efd96Sagiri *	  disclaimer in the documentation and/or other materials
52*b86efd96Sagiri *	  provided with the distribution.
53*b86efd96Sagiri *
54*b86efd96Sagiri * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
55*b86efd96Sagiri * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
56*b86efd96Sagiri * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
57*b86efd96Sagiri * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
58*b86efd96Sagiri * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
59*b86efd96Sagiri * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
60*b86efd96Sagiri * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
61*b86efd96Sagiri * SOFTWARE.
62*b86efd96Sagiri *
63*b86efd96Sagiri */
64*b86efd96Sagiri/*
65*b86efd96Sagiri * Sun elects to include this software in Sun product
66*b86efd96Sagiri * under the OpenIB BSD license.
67*b86efd96Sagiri *
68*b86efd96Sagiri *
69*b86efd96Sagiri * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
70*b86efd96Sagiri * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
71*b86efd96Sagiri * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
72*b86efd96Sagiri * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
73*b86efd96Sagiri * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
74*b86efd96Sagiri * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
75*b86efd96Sagiri * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
76*b86efd96Sagiri * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
77*b86efd96Sagiri * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
78*b86efd96Sagiri * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
79*b86efd96Sagiri * POSSIBILITY OF SUCH DAMAGE.
80*b86efd96Sagiri */
81