Whamcloud - gitweb
* add support for gmnal to ptlrpc
[fs/lustre-release.git] / lustre / ptlrpc / events.c
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 #define DEBUG_SUBSYSTEM S_RPC
24
25 #include <linux/module.h>
26 #include <linux/obd_support.h>
27 #include <linux/lustre_net.h>
28
29 ptl_handle_eq_t request_out_eq, reply_in_eq, reply_out_eq, bulk_source_eq,
30         bulk_sink_eq;
31 static const ptl_handle_ni_t *socknal_nip = NULL, *qswnal_nip = NULL, *gmnal_nip = NULL;
32
33 /*
34  *  Free the packet when it has gone out
35  */
36 static int request_out_callback(ptl_event_t *ev)
37 {
38         ENTRY;
39
40         LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* requests always contiguous */
41
42         if (ev->type != PTL_EVENT_SENT) {
43                 // XXX make sure we understand all events, including ACK's
44                 CERROR("Unknown event %d\n", ev->type);
45                 LBUG();
46         }
47
48         RETURN(1);
49 }
50
51
52 /*
53  *  Free the packet when it has gone out
54  */
55 static int reply_out_callback(ptl_event_t *ev)
56 {
57         ENTRY;
58
59         LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* replies always contiguous */
60
61         if (ev->type == PTL_EVENT_SENT) {
62                 OBD_FREE(ev->mem_desc.start, ev->mem_desc.length);
63         } else {
64                 // XXX make sure we understand all events, including ACK's
65                 CERROR("Unknown event %d\n", ev->type);
66                 LBUG();
67         }
68
69         RETURN(1);
70 }
71
72 /*
73  * Wake up the thread waiting for the reply once it comes in.
74  */
75 static int reply_in_callback(ptl_event_t *ev)
76 {
77         struct ptlrpc_request *req = ev->mem_desc.user_ptr;
78         ENTRY;
79
80         LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* replies always contiguous */
81
82         if (req->rq_xid == 0x5a5a5a5a5a5a5a5a) {
83                 CERROR("Reply received for freed request!  Probably a missing "
84                        "ptlrpc_abort()\n");
85                 LBUG();
86         }
87
88         if (req->rq_xid != ev->match_bits) {
89                 CERROR("Reply packet for wrong request\n");
90                 LBUG();
91         }
92
93         if (ev->type == PTL_EVENT_PUT) {
94                 req->rq_repmsg = ev->mem_desc.start + ev->offset;
95                 barrier();
96                 wake_up(&req->rq_wait_for_rep);
97         } else {
98                 // XXX make sure we understand all events, including ACK's
99                 CERROR("Unknown event %d\n", ev->type);
100                 LBUG();
101         }
102
103         RETURN(1);
104 }
105
106 int request_in_callback(ptl_event_t *ev)
107 {
108         struct ptlrpc_request_buffer_desc *rqbd = ev->mem_desc.user_ptr;
109         struct ptlrpc_service *service = rqbd->rqbd_service;
110
111         LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* requests always contiguous */
112
113         if (ev->rlength != ev->mlength)
114                 CERROR("Warning: Possibly truncated rpc (%d/%d)\n",
115                        ev->mlength, ev->rlength);
116
117         if (ev->type == PTL_EVENT_PUT)
118                 wake_up(&service->srv_waitq);
119         else
120                 CERROR("Unexpected event type: %d\n", ev->type);
121
122         return 0;
123 }
124
125 static int bulk_source_callback(ptl_event_t *ev)
126 {
127         struct ptlrpc_bulk_desc *desc = ev->mem_desc.user_ptr;
128         struct ptlrpc_bulk_page *bulk;
129         struct list_head        *tmp;
130         struct list_head        *next;
131         ENTRY;
132
133         CDEBUG(D_NET, "got %s event %d\n",
134                (ev->type == PTL_EVENT_SENT) ? "SENT" :
135                (ev->type == PTL_EVENT_ACK)  ? "ACK"  : "UNEXPECTED", ev->type);
136
137         LASSERT (ev->type == PTL_EVENT_SENT || ev->type == PTL_EVENT_ACK);
138
139         LASSERT (atomic_read (&desc->bd_source_callback_count) > 0 &&
140                  atomic_read (&desc->bd_source_callback_count) <= 2);
141
142         /* 1 fragment for each page always */
143         LASSERT (ev->mem_desc.niov == desc->bd_page_count);
144
145         if (atomic_dec_and_test (&desc->bd_source_callback_count)) {
146                 list_for_each_safe(tmp, next, &desc->bd_page_list) {
147                         bulk = list_entry(tmp, struct ptlrpc_bulk_page,
148                                           bp_link);
149
150                         if (bulk->bp_cb != NULL)
151                                 bulk->bp_cb(bulk);
152                 }
153                 desc->bd_flags |= PTL_BULK_FL_SENT;
154                 wake_up(&desc->bd_waitq);
155                 if (desc->bd_cb != NULL)
156                         desc->bd_cb(desc, desc->bd_cb_data);
157         }
158
159         RETURN(0);
160 }
161
162 static int bulk_sink_callback(ptl_event_t *ev)
163 {
164         struct ptlrpc_bulk_desc *desc = ev->mem_desc.user_ptr;
165         struct ptlrpc_bulk_page *bulk;
166         struct list_head        *tmp;
167         struct list_head        *next;
168         ptl_size_t               total = 0;
169         ENTRY;
170
171         if (ev->type == PTL_EVENT_PUT) {
172                 /* put with zero offset */
173                 LASSERT (ev->offset == 0);
174                 /* used iovs */
175                 LASSERT ((ev->mem_desc.options & PTL_MD_IOV) != 0);
176                 /* 1 fragment for each page always */
177                 LASSERT (ev->mem_desc.niov == desc->bd_page_count);
178
179                 list_for_each_safe (tmp, next, &desc->bd_page_list) {
180                         bulk = list_entry(tmp, struct ptlrpc_bulk_page,
181                                           bp_link);
182
183                         total += bulk->bp_buflen;
184
185                         if (bulk->bp_cb != NULL)
186                                 bulk->bp_cb(bulk);
187                 }
188
189                 LASSERT (ev->mem_desc.length == total);
190
191                 desc->bd_flags |= PTL_BULK_FL_RCVD;
192                 wake_up(&desc->bd_waitq);
193                 if (desc->bd_cb != NULL)
194                         desc->bd_cb(desc, desc->bd_cb_data);
195         } else {
196                 CERROR("Unexpected event type!\n");
197                 LBUG();
198         }
199
200         RETURN(1);
201 }
202
203 int ptlrpc_init_portals(void)
204 {
205         int rc;
206         ptl_handle_ni_t ni;
207
208         socknal_nip = inter_module_get_request("ksocknal_ni", "ksocknal");
209         qswnal_nip = inter_module_get_request("kqswnal_ni", "kqswnal");
210         gmnal_nip = inter_module_get_request("kgmnal_ni", "kgmnal");
211
212         /* Use the qswnal if it's there */
213         if (qswnal_nip != NULL)
214                 ni = *qswnal_nip;
215         else if (gmnal_nip != NULL)
216                 ni = *gmnal_nip;
217         else if (socknal_nip != NULL)
218                 ni = *socknal_nip;
219         else {
220                 CERROR("get_ni failed: is a NAL module loaded?\n");
221                 return -EIO;
222         }
223
224         rc = PtlEQAlloc(ni, 1024, request_out_callback, &request_out_eq);
225         if (rc != PTL_OK)
226                 CERROR("PtlEQAlloc failed: %d\n", rc);
227
228         rc = PtlEQAlloc(ni, 1024, reply_out_callback, &reply_out_eq);
229         if (rc != PTL_OK)
230                 CERROR("PtlEQAlloc failed: %d\n", rc);
231
232         rc = PtlEQAlloc(ni, 1024, reply_in_callback, &reply_in_eq);
233         if (rc != PTL_OK)
234                 CERROR("PtlEQAlloc failed: %d\n", rc);
235
236         rc = PtlEQAlloc(ni, 1024, bulk_source_callback, &bulk_source_eq);
237         if (rc != PTL_OK)
238                 CERROR("PtlEQAlloc failed: %d\n", rc);
239
240         rc = PtlEQAlloc(ni, 1024, bulk_sink_callback, &bulk_sink_eq);
241         if (rc != PTL_OK)
242                 CERROR("PtlEQAlloc failed: %d\n", rc);
243
244         return rc;
245 }
246
247 void ptlrpc_exit_portals(void)
248 {
249         PtlEQFree(request_out_eq);
250         PtlEQFree(reply_out_eq);
251         PtlEQFree(reply_in_eq);
252         PtlEQFree(bulk_source_eq);
253         PtlEQFree(bulk_sink_eq);
254
255         if (qswnal_nip != NULL)
256                 inter_module_put("kqswnal_ni");
257         if (socknal_nip != NULL)
258                 inter_module_put("ksocknal_ni");
259         if (gmnal_nip != NULL)
260                 inter_module_put("kgmnal_ni");
261 }