Whamcloud - gitweb
- updated documentation (introduction)
[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 EXPORT_SYMTAB
24
25 #include <linux/config.h>
26 #include <linux/module.h>
27 #include <linux/kernel.h>
28
29 #define DEBUG_SUBSYSTEM S_RPC
30
31 #include <linux/obd_support.h>
32 #include <linux/obd_class.h>
33 #include <linux/lustre_net.h>
34
35 ptl_handle_eq_t sent_pkt_eq, rcvd_rep_eq, bulk_source_eq, bulk_sink_eq;
36 static const ptl_handle_ni_t *socknal_nip = NULL, *qswnal_nip = NULL;
37
38 /*
39  *  Free the packet when it has gone out
40  */
41 static int sent_packet_callback(ptl_event_t *ev, void *data)
42 {
43         ENTRY;
44
45         if (ev->type == PTL_EVENT_SENT) {
46                 OBD_FREE(ev->mem_desc.start, ev->mem_desc.length);
47         } else { 
48                 // XXX make sure we understand all events, including ACK's
49                 CERROR("Unknown event %d\n", ev->type); 
50                 BUG();
51         }
52
53         EXIT;
54         return 1;
55 }
56
57 /*
58  * Wake up the thread waiting for the reply once it comes in.
59  */
60 static int rcvd_reply_callback(ptl_event_t *ev, void *data)
61 {
62         struct ptlrpc_request *rpc = ev->mem_desc.user_ptr;
63         ENTRY;
64
65         if (ev->type == PTL_EVENT_PUT) {
66                 rpc->rq_repbuf = ev->mem_desc.start + ev->offset;
67                 barrier();
68                 wake_up_interruptible(&rpc->rq_wait_for_rep);
69         } else { 
70                 // XXX make sure we understand all events, including ACK's
71                 CERROR("Unknown event %d\n", ev->type); 
72                 BUG();
73         }
74
75         EXIT;
76         return 1;
77 }
78
79 int server_request_callback(ptl_event_t *ev, void *data)
80 {
81         struct ptlrpc_service *service = data;
82         int rc;
83
84         if (ev->rlength != ev->mlength)
85                 CERROR("Warning: Possibly truncated rpc (%d/%d)\n",
86                        ev->mlength, ev->rlength);
87
88         /* The ME is unlinked when there is less than 1024 bytes free
89          * on its MD.  This ensures we are always able to handle the rpc, 
90          * although the 1024 value is a guess as to the size of a
91          * large rpc (the known safe margin should be determined).
92          *
93          * NOTE: The portals API by default unlinks all MD's associated
94          *       with an ME when it's unlinked.  For now, this behavior
95          *       has been commented out of the portals library so the
96          *       MD can be unlinked when its ref count drops to zero.
97          *       A new MD and ME will then be created that use the same
98          *       kmalloc()'ed memory and inserted at the ring tail.
99          */
100
101         spin_lock(&service->srv_lock); 
102         if ( ev->mem_desc.start != 
103              service->srv_md[service->srv_md_active].start ) {
104                 BUG();
105         }
106
107         service->srv_ref_count[service->srv_md_active]++;
108         CDEBUG(D_INODE, "event offset %d buf size %d\n", 
109                ev->offset, service->srv_buf_size);
110         if (ev->offset >= (service->srv_buf_size - 1024)) {
111                 CDEBUG(D_INODE, "Unlinking ME %d\n", service->srv_md_active);
112
113                 rc = PtlMEUnlink(service->srv_me_h[service->srv_md_active]);
114                 service->srv_me_h[service->srv_md_active] = 0;
115
116                 if (rc != PTL_OK) {
117                         CERROR("PtlMEUnlink failed - DROPPING soon: %d\n", rc);
118                         BUG();
119                         spin_unlock(&service->srv_lock); 
120                         return rc;
121                 }
122
123                 service->srv_md_active = (service->srv_md_active + 1) % 
124                         service->srv_ring_length;
125
126                 if (service->srv_me_h[service->srv_md_active] == 0) { 
127                         CERROR("All %d ring ME's are unlinked!\n",
128                                service->srv_ring_length);
129                         BUG();
130                 }
131         }
132
133         spin_unlock(&service->srv_lock); 
134         if (ev->type == PTL_EVENT_PUT) {
135                 wake_up(&service->srv_waitq);
136         } else {
137                 CERROR("Unexpected event type: %d\n", ev->type);
138         }
139
140         return 0;
141 }
142
143 static int bulk_source_callback(ptl_event_t *ev, void *data)
144 {
145         struct ptlrpc_bulk_desc *bulk = ev->mem_desc.user_ptr;
146
147         ENTRY;
148
149         if (ev->type == PTL_EVENT_SENT) {
150                 CDEBUG(D_NET, "got SENT event\n");
151         } else if (ev->type == PTL_EVENT_ACK) {
152                 CDEBUG(D_NET, "got ACK event\n");
153                 bulk->b_flags = PTL_BULK_SENT;
154                 wake_up_interruptible(&bulk->b_waitq);
155         } else {
156                 CERROR("Unexpected event type!\n");
157                 BUG();
158         }
159
160         EXIT;
161         return 1;
162 }
163
164 static int bulk_sink_callback(ptl_event_t *ev, void *data)
165 {
166         struct ptlrpc_bulk_desc *bulk = ev->mem_desc.user_ptr;
167
168         ENTRY;
169
170         if (ev->type == PTL_EVENT_PUT) {
171                 if (bulk->b_buf != ev->mem_desc.start + ev->offset)
172                         CERROR("bulkbuf != mem_desc -- why?\n");
173                 bulk->b_flags = PTL_BULK_RCVD;
174                 if (bulk->b_cb != NULL)
175                         bulk->b_cb(bulk, data);
176                 wake_up_interruptible(&bulk->b_waitq);
177         } else {
178                 CERROR("Unexpected event type!\n");
179                 BUG();
180         }
181
182         /* FIXME: This should happen unconditionally */
183         if (bulk->b_cb != NULL) {
184                 OBD_FREE(bulk, sizeof(*bulk));
185         }
186
187         EXIT;
188         return 1;
189 }
190
191 int ptlrpc_init_portals(void)
192 {
193         int rc;
194         ptl_handle_ni_t ni;
195
196         socknal_nip = inter_module_get_request("ksocknal_ni", "ksocknal");
197         qswnal_nip = inter_module_get_request("kqswnal_ni", "kqswnal");
198         if (socknal_nip == NULL && qswnal_nip == NULL) {
199                 CERROR("get_ni failed: is a NAL module loaded?\n");
200                 return -EIO;
201         }
202
203         /* Use the qswnal if it's there */
204         if (qswnal_nip != NULL)
205                 ni = *qswnal_nip;
206         else
207                 ni = *socknal_nip;
208
209         rc = PtlEQAlloc(ni, 128, sent_packet_callback, NULL, &sent_pkt_eq);
210         if (rc != PTL_OK)
211                 CERROR("PtlEQAlloc failed: %d\n", rc);
212
213         rc = PtlEQAlloc(ni, 128, rcvd_reply_callback, NULL, &rcvd_rep_eq);
214         if (rc != PTL_OK)
215                 CERROR("PtlEQAlloc failed: %d\n", rc);
216
217         rc = PtlEQAlloc(ni, 128, bulk_source_callback, NULL, &bulk_source_eq);
218         if (rc != PTL_OK)
219                 CERROR("PtlEQAlloc failed: %d\n", rc);
220
221         rc = PtlEQAlloc(ni, 128, bulk_sink_callback, NULL, &bulk_sink_eq);
222         if (rc != PTL_OK)
223                 CERROR("PtlEQAlloc failed: %d\n", rc);
224
225         return rc;
226 }
227
228 void ptlrpc_exit_portals(void)
229 {
230         PtlEQFree(sent_pkt_eq);
231         PtlEQFree(rcvd_rep_eq);
232         PtlEQFree(bulk_source_eq);
233         PtlEQFree(bulk_sink_eq);
234
235         if (qswnal_nip != NULL)
236                 inter_module_put("kqswnal_ni");
237         if (socknal_nip != NULL)
238                 inter_module_put("ksocknal_ni");
239 }