Whamcloud - gitweb
2aa68624d38a1e9fd9bd713a237d75e2455adbac
[fs/lustre-release.git] / lustre / include / linux / lustre_net.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef _LUSTRE_NET_H
24 #define _LUSTRE_NET_H
25
26 #include <linux/kp30.h>
27 #include <portals/p30.h>
28 #include <linux/lustre_idl.h>
29
30 /* FOO_REQUEST_PORTAL receives requests for the FOO subsystem.
31  * FOO_REPLY_PORTAL receives replies _from_ the FOO subsystem. */
32 #define OSC_REQUEST_PORTAL 1
33 #define OSC_REPLY_PORTAL   2
34 #define MDS_REQUEST_PORTAL 3
35 #define MDS_REPLY_PORTAL   4
36 #define OST_REQUEST_PORTAL 5
37 #define OST_REPLY_PORTAL   6
38 #define MDC_BULK_PORTAL    7
39 #define MDS_BULK_PORTAL    8
40 #define OSC_BULK_PORTAL    9
41 #define OST_BULK_PORTAL    10
42
43 /* default rpc ring length */
44 #define RPC_RING_LENGTH    2
45
46 /* generic wrappable next */
47 #define NEXT_INDEX(index, max)  (((index+1) >= max) ? 0 : (index+1))
48
49
50 struct ptlrpc_service {
51         char *srv_buf[RPC_RING_LENGTH];
52         __u32 srv_buf_size;
53         __u32 srv_me_active;
54         __u32 srv_me_tail;
55         __u32 srv_md_active;
56         __u32 srv_ring_length;
57         __u32 srv_portal;
58         __u32 srv_ref_count[RPC_RING_LENGTH];
59
60         struct lustre_peer srv_self;
61
62         /* FIXME: perhaps a list of EQs, if multiple NIs are used? */
63         ptl_handle_eq_t srv_eq_h;
64
65         ptl_handle_me_t srv_me_h[RPC_RING_LENGTH];
66         ptl_process_id_t srv_id;
67         ptl_md_t srv_md[RPC_RING_LENGTH];
68         ptl_handle_md_t srv_md_h[RPC_RING_LENGTH];
69         wait_queue_head_t *srv_wait_queue;
70         int (*srv_req_unpack)(char *buf, int len, struct ptlreq_hdr **, 
71                           union ptl_req *);
72         int (*srv_rep_pack)(char *buf1, int len1, char *buf2, int len2,
73                         struct ptlrep_hdr **, union ptl_rep*, 
74                         int *replen, char **repbuf); 
75 };
76
77
78 struct ptlrpc_request { 
79         struct list_head rq_list;
80         struct mds_obd *rq_obd;
81         struct ost_obd *rq_ost;
82         int rq_status;
83
84         char *rq_reqbuf;
85         int rq_reqlen;
86         struct ptlreq_hdr *rq_reqhdr;
87         union ptl_req rq_req;
88         __u32 rq_xid;
89
90         char *rq_repbuf;
91         int rq_replen;
92         struct ptlrep_hdr *rq_rephdr;
93         union ptl_rep rq_rep;
94
95         char *rq_bulkbuf;
96         int rq_bulklen;
97         int (*rq_bulk_cb)(struct ptlrpc_request *, void *);
98
99         void * rq_reply_handle;
100         wait_queue_head_t rq_wait_for_rep;
101         wait_queue_head_t rq_wait_for_bulk;
102
103         ptl_md_t rq_reply_md;
104         ptl_handle_md_t rq_reply_md_h;
105         ptl_md_t rq_req_md;
106         ptl_md_t rq_bulk_md;
107         ptl_handle_md_t rq_bulk_md_h;
108         __u32 rq_reply_portal;
109         __u32 rq_req_portal;
110         __u32 rq_bulk_portal;
111
112         struct lustre_peer rq_peer;
113 };
114
115 struct ptlrpc_client {
116         struct lustre_peer cli_server;
117         __u32 cli_request_portal;
118         __u32 cli_reply_portal;
119         __u32 cli_xid;
120         int (*cli_rep_unpack)(char *buf, int len, struct ptlrep_hdr **, 
121                           union ptl_rep *);
122         int (*cli_req_pack)(char *buf1, int len1, char *buf2, int len2,
123                         struct ptlreq_hdr **, union ptl_req*, 
124                         int *reqlen, char **reqbuf); 
125         int (*cli_enqueue)(struct ptlrpc_request *req);
126 };
127
128
129
130 /* rpc/rpc.c */
131 int ptl_send_buf(struct ptlrpc_request *request, struct lustre_peer *peer,
132                  int portal, int is_request);
133 int ptl_send_rpc(struct ptlrpc_request *request, struct lustre_peer *peer);
134 int ptl_received_rpc(struct ptlrpc_service *service);
135 int rpc_register_service(struct ptlrpc_service *service, char *uuid);
136 int rpc_unregister_service(struct ptlrpc_service *service);
137 int ptlrpc_queue_wait(struct ptlrpc_request *req, 
138                       struct ptlrpc_client *cl);
139 struct ptlrpc_request *ptlrpc_prep_req(struct ptlrpc_client *cl, 
140                                        int opcode, int namelen, char *name,
141                                        int tgtlen, char *tgt);
142 void ptlrpc_free_req(struct ptlrpc_request *request);
143
144
145 /* FIXME */
146 #if 1
147 # define LUSTRE_NAL "ksocknal"
148 #else
149 # define LUSTRE_NAL "kqswnal"
150 #endif
151
152 #endif