1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
4 * Copyright (C) 2002 Cluster File Systems, Inc.
6 * This file is part of Lustre, http://www.lustre.org.
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.
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.
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.
23 #define DEBUG_SUBSYSTEM S_RPC
25 #include <linux/module.h>
26 #include <linux/obd_support.h>
27 #include <linux/lustre_net.h>
29 ptl_handle_eq_t request_out_eq, reply_in_eq, reply_out_eq, bulk_source_eq,
31 static const ptl_handle_ni_t *socknal_nip = NULL, *qswnal_nip = NULL;
34 * Free the packet when it has gone out
36 static int request_out_callback(ptl_event_t *ev)
40 LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* requests always contiguous */
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);
53 * Free the packet when it has gone out
55 static int reply_out_callback(ptl_event_t *ev)
59 LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* replies always contiguous */
61 if (ev->type == PTL_EVENT_SENT) {
62 OBD_FREE(ev->mem_desc.start, ev->mem_desc.length);
64 // XXX make sure we understand all events, including ACK's
65 CERROR("Unknown event %d\n", ev->type);
73 * Wake up the thread waiting for the reply once it comes in.
75 static int reply_in_callback(ptl_event_t *ev)
77 struct ptlrpc_request *req = ev->mem_desc.user_ptr;
80 LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* replies always contiguous */
82 if (req->rq_xid == 0x5a5a5a5a5a5a5a5a) {
83 CERROR("Reply received for freed request! Probably a missing "
88 if (req->rq_xid != ev->match_bits) {
89 CERROR("Reply packet for wrong request\n");
93 if (ev->type == PTL_EVENT_PUT) {
94 req->rq_repmsg = ev->mem_desc.start + ev->offset;
96 wake_up(&req->rq_wait_for_rep);
98 // XXX make sure we understand all events, including ACK's
99 CERROR("Unknown event %d\n", ev->type);
106 int request_in_callback(ptl_event_t *ev)
108 struct ptlrpc_request_buffer_desc *rqbd = ev->mem_desc.user_ptr;
109 struct ptlrpc_service *service = rqbd->rqbd_service;
111 LASSERT ((ev->mem_desc.options & PTL_MD_IOV) == 0); /* requests always contiguous */
113 if (ev->rlength != ev->mlength)
114 CERROR("Warning: Possibly truncated rpc (%d/%d)\n",
115 ev->mlength, ev->rlength);
117 if (ev->type == PTL_EVENT_PUT)
118 wake_up(&service->srv_waitq);
120 CERROR("Unexpected event type: %d\n", ev->type);
125 static int bulk_source_callback(ptl_event_t *ev)
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;
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);
137 LASSERT (ev->type == PTL_EVENT_SENT || ev->type == PTL_EVENT_ACK);
139 LASSERT (atomic_read (&desc->bd_source_callback_count) > 0 &&
140 atomic_read (&desc->bd_source_callback_count) <= 2);
142 /* 1 fragment for each page always */
143 LASSERT (ev->mem_desc.niov == desc->bd_page_count);
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,
150 if (bulk->bp_cb != NULL)
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);
162 static int bulk_sink_callback(ptl_event_t *ev)
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;
171 if (ev->type == PTL_EVENT_PUT) {
172 /* put with zero offset */
173 LASSERT (ev->offset == 0);
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);
179 list_for_each_safe (tmp, next, &desc->bd_page_list) {
180 bulk = list_entry(tmp, struct ptlrpc_bulk_page,
183 total += bulk->bp_buflen;
185 if (bulk->bp_cb != NULL)
189 LASSERT (ev->mem_desc.length == total);
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);
196 CERROR("Unexpected event type!\n");
203 int ptlrpc_init_portals(void)
208 socknal_nip = inter_module_get_request("ksocknal_ni", "ksocknal");
209 qswnal_nip = inter_module_get_request("kqswnal_ni", "kqswnal");
210 if (socknal_nip == NULL && qswnal_nip == NULL) {
211 CERROR("get_ni failed: is a NAL module loaded?\n");
215 /* Use the qswnal if it's there */
216 if (qswnal_nip != NULL)
221 rc = PtlEQAlloc(ni, 1024, request_out_callback, &request_out_eq);
223 CERROR("PtlEQAlloc failed: %d\n", rc);
225 rc = PtlEQAlloc(ni, 1024, reply_out_callback, &reply_out_eq);
227 CERROR("PtlEQAlloc failed: %d\n", rc);
229 rc = PtlEQAlloc(ni, 1024, reply_in_callback, &reply_in_eq);
231 CERROR("PtlEQAlloc failed: %d\n", rc);
233 rc = PtlEQAlloc(ni, 1024, bulk_source_callback, &bulk_source_eq);
235 CERROR("PtlEQAlloc failed: %d\n", rc);
237 rc = PtlEQAlloc(ni, 1024, bulk_sink_callback, &bulk_sink_eq);
239 CERROR("PtlEQAlloc failed: %d\n", rc);
244 void ptlrpc_exit_portals(void)
246 PtlEQFree(request_out_eq);
247 PtlEQFree(reply_out_eq);
248 PtlEQFree(reply_in_eq);
249 PtlEQFree(bulk_source_eq);
250 PtlEQFree(bulk_sink_eq);
252 if (qswnal_nip != NULL)
253 inter_module_put("kqswnal_ni");
254 if (socknal_nip != NULL)
255 inter_module_put("ksocknal_ni");