RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / sunrpc / rpc_rdma.h
blobb78f16b1dea3a0d6a38262e7f1dd3845efce22b6
1 /*
2 * Copyright (c) 2003-2007 Network Appliance, Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the BSD-type
8 * license below:
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
25 * permission.
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #ifndef _LINUX_SUNRPC_RPC_RDMA_H
41 #define _LINUX_SUNRPC_RPC_RDMA_H
43 #include <linux/types.h>
45 struct rpcrdma_segment {
46 __be32 rs_handle; /* Registered memory handle */
47 __be32 rs_length; /* Length of the chunk in bytes */
48 __be64 rs_offset; /* Chunk virtual address or offset */
52 * read chunk(s), encoded as a linked list.
54 struct rpcrdma_read_chunk {
55 __be32 rc_discrim; /* 1 indicates presence */
56 __be32 rc_position; /* Position in XDR stream */
57 struct rpcrdma_segment rc_target;
61 * write chunk, and reply chunk.
63 struct rpcrdma_write_chunk {
64 struct rpcrdma_segment wc_target;
68 * write chunk(s), encoded as a counted array.
70 struct rpcrdma_write_array {
71 __be32 wc_discrim; /* 1 indicates presence */
72 __be32 wc_nchunks; /* Array count */
73 struct rpcrdma_write_chunk wc_array[0];
76 struct rpcrdma_msg {
77 __be32 rm_xid; /* Mirrors the RPC header xid */
78 __be32 rm_vers; /* Version of this protocol */
79 __be32 rm_credit; /* Buffers requested/granted */
80 __be32 rm_type; /* Type of message (enum rpcrdma_proc) */
81 union {
83 struct { /* no chunks */
84 __be32 rm_empty[3]; /* 3 empty chunk lists */
85 } rm_nochunks;
87 struct { /* no chunks and padded */
88 __be32 rm_align; /* Padding alignment */
89 __be32 rm_thresh; /* Padding threshold */
90 __be32 rm_pempty[3]; /* 3 empty chunk lists */
91 } rm_padded;
93 __be32 rm_chunks[0]; /* read, write and reply chunks */
95 } rm_body;
98 #define RPCRDMA_HDRLEN_MIN 28
100 enum rpcrdma_errcode {
101 ERR_VERS = 1,
102 ERR_CHUNK = 2
105 struct rpcrdma_err_vers {
106 uint32_t rdma_vers_low; /* Version range supported by peer */
107 uint32_t rdma_vers_high;
110 enum rpcrdma_proc {
111 RDMA_MSG = 0, /* An RPC call or reply msg */
112 RDMA_NOMSG = 1, /* An RPC call or reply msg - separate body */
113 RDMA_MSGP = 2, /* An RPC call or reply msg with padding */
114 RDMA_DONE = 3, /* Client signals reply completion */
115 RDMA_ERROR = 4 /* An RPC RDMA encoding error */
118 #endif /* _LINUX_SUNRPC_RPC_RDMA_H */