Whamcloud - gitweb
045365cff3508b832c7a3c1ee4fe2655e8d5096f
[fs/lustre-release.git] / lustre / ptlrpc / client.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38 #ifndef __KERNEL__
39 #include <errno.h>
40 #include <signal.h>
41 #include <liblustre.h>
42 #endif
43
44 #include <obd_support.h>
45 #include <obd_class.h>
46 #include <lustre_lib.h>
47 #include <lustre_ha.h>
48 #include <lustre_import.h>
49 #include <lustre_req_layout.h>
50
51 #include "ptlrpc_internal.h"
52
53 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
54                         struct ptlrpc_client *cl)
55 {
56         cl->cli_request_portal = req_portal;
57         cl->cli_reply_portal   = rep_portal;
58         cl->cli_name           = name;
59 }
60
61 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid)
62 {
63         struct ptlrpc_connection *c;
64         lnet_nid_t                self;
65         lnet_process_id_t         peer;
66         int                       err;
67
68         err = ptlrpc_uuid_to_peer(uuid, &peer, &self);
69         if (err != 0) {
70                 CERROR("cannot find peer %s!\n", uuid->uuid);
71                 return NULL;
72         }
73
74         c = ptlrpc_connection_get(peer, self, uuid);
75         if (c) {
76                 memcpy(c->c_remote_uuid.uuid,
77                        uuid->uuid, sizeof(c->c_remote_uuid.uuid));
78         }
79
80         CDEBUG(D_INFO, "%s -> %p\n", uuid->uuid, c);
81
82         return c;
83 }
84
85 static inline struct ptlrpc_bulk_desc *new_bulk(int npages, int type, int portal)
86 {
87         struct ptlrpc_bulk_desc *desc;
88
89         OBD_ALLOC(desc, offsetof (struct ptlrpc_bulk_desc, bd_iov[npages]));
90         if (!desc)
91                 return NULL;
92
93         spin_lock_init(&desc->bd_lock);
94         cfs_waitq_init(&desc->bd_waitq);
95         desc->bd_max_iov = npages;
96         desc->bd_iov_count = 0;
97         LNetInvalidateHandle(&desc->bd_md_h);
98         desc->bd_portal = portal;
99         desc->bd_type = type;
100
101         return desc;
102 }
103
104 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp (struct ptlrpc_request *req,
105                                                int npages, int type, int portal)
106 {
107         struct obd_import *imp = req->rq_import;
108         struct ptlrpc_bulk_desc *desc;
109
110         ENTRY;
111         LASSERT(type == BULK_PUT_SINK || type == BULK_GET_SOURCE);
112         desc = new_bulk(npages, type, portal);
113         if (desc == NULL)
114                 RETURN(NULL);
115
116         desc->bd_import_generation = req->rq_import_generation;
117         desc->bd_import = class_import_get(imp);
118         desc->bd_req = req;
119
120         desc->bd_cbid.cbid_fn  = client_bulk_callback;
121         desc->bd_cbid.cbid_arg = desc;
122
123         /* This makes req own desc, and free it when she frees herself */
124         req->rq_bulk = desc;
125
126         return desc;
127 }
128
129 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
130                                               int npages, int type, int portal)
131 {
132         struct obd_export *exp = req->rq_export;
133         struct ptlrpc_bulk_desc *desc;
134
135         ENTRY;
136         LASSERT(type == BULK_PUT_SOURCE || type == BULK_GET_SINK);
137
138         desc = new_bulk(npages, type, portal);
139         if (desc == NULL)
140                 RETURN(NULL);
141
142         desc->bd_export = class_export_get(exp);
143         desc->bd_req = req;
144
145         desc->bd_cbid.cbid_fn  = server_bulk_callback;
146         desc->bd_cbid.cbid_arg = desc;
147
148         /* NB we don't assign rq_bulk here; server-side requests are
149          * re-used, and the handler frees the bulk desc explicitly. */
150
151         return desc;
152 }
153
154 void ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
155                            cfs_page_t *page, int pageoffset, int len)
156 {
157         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
158         LASSERT(page != NULL);
159         LASSERT(pageoffset >= 0);
160         LASSERT(len > 0);
161         LASSERT(pageoffset + len <= CFS_PAGE_SIZE);
162
163         desc->bd_nob += len;
164
165         ptlrpc_add_bulk_page(desc, page, pageoffset, len);
166 }
167
168 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *desc)
169 {
170         ENTRY;
171
172         LASSERT(desc != NULL);
173         LASSERT(desc->bd_iov_count != LI_POISON); /* not freed already */
174         LASSERT(!desc->bd_network_rw);         /* network hands off or */
175         LASSERT((desc->bd_export != NULL) ^ (desc->bd_import != NULL));
176
177         sptlrpc_enc_pool_put_pages(desc);
178
179         if (desc->bd_export)
180                 class_export_put(desc->bd_export);
181         else
182                 class_import_put(desc->bd_import);
183
184         OBD_FREE(desc, offsetof(struct ptlrpc_bulk_desc,
185                                 bd_iov[desc->bd_max_iov]));
186         EXIT;
187 }
188
189 /* Set server timelimit for this req */
190 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req)
191 {
192         __u32 serv_est;
193         int idx;
194         struct imp_at *at;
195
196         LASSERT(req->rq_import);
197
198         if (AT_OFF) {
199                 /* non-AT settings */
200                 req->rq_timeout = req->rq_import->imp_server_timeout ?
201                         obd_timeout / 2 : obd_timeout;
202                 lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
203                 return;
204         }
205
206         at = &req->rq_import->imp_at;
207         idx = import_at_get_index(req->rq_import,
208                                   req->rq_request_portal);
209         serv_est = at_get(&at->iat_service_estimate[idx]);
210         req->rq_timeout = at_est2timeout(serv_est);
211         /* We could get even fancier here, using history to predict increased
212            loading... */
213
214         /* Let the server know what this RPC timeout is by putting it in the
215            reqmsg*/
216         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
217 }
218
219 /* Adjust max service estimate based on server value */
220 static void ptlrpc_at_adj_service(struct ptlrpc_request *req,
221                                   unsigned int serv_est)
222 {
223         int idx;
224         unsigned int oldse;
225         struct imp_at *at;
226
227         /* do estimate only if is not in recovery */
228         if (!(req->rq_send_state & (LUSTRE_IMP_FULL | LUSTRE_IMP_CONNECTING)))
229                 return;
230
231         LASSERT(req->rq_import);
232         at = &req->rq_import->imp_at;
233
234         idx = import_at_get_index(req->rq_import, req->rq_request_portal);
235         /* max service estimates are tracked on the server side,
236            so just keep minimal history here */
237         oldse = at_add(&at->iat_service_estimate[idx], serv_est);
238         if (oldse != 0)
239                 CDEBUG(D_ADAPTTO, "The RPC service estimate for %s ptl %d "
240                        "has changed from %d to %d\n",
241                        req->rq_import->imp_obd->obd_name,req->rq_request_portal,
242                        oldse, at_get(&at->iat_service_estimate[idx]));
243 }
244
245 /* Expected network latency per remote node (secs) */
246 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req)
247 {
248         return AT_OFF ? 0 : at_get(&req->rq_import->imp_at.iat_net_latency);
249 }
250
251 /* Adjust expected network latency */
252 static void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req,
253                                       unsigned int service_time)
254 {
255         unsigned int nl, oldnl;
256         struct imp_at *at;
257         time_t now = cfs_time_current_sec();
258
259         LASSERT(req->rq_import);
260         at = &req->rq_import->imp_at;
261
262         /* Network latency is total time less server processing time */
263         nl = max_t(int, now - req->rq_sent - service_time, 0) +1/*st rounding*/;
264         if (service_time > now - req->rq_sent + 3 /* bz16408 */)
265                 CWARN("Reported service time %u > total measured time "
266                       CFS_DURATION_T"\n", service_time,
267                       cfs_time_sub(now, req->rq_sent));
268
269         oldnl = at_add(&at->iat_net_latency, nl);
270         if (oldnl != 0)
271                 CDEBUG(D_ADAPTTO, "The network latency for %s (nid %s) "
272                        "has changed from %d to %d\n",
273                        req->rq_import->imp_obd->obd_name,
274                        obd_uuid2str(
275                                &req->rq_import->imp_connection->c_remote_uuid),
276                        oldnl, at_get(&at->iat_net_latency));
277 }
278
279 static int unpack_reply(struct ptlrpc_request *req)
280 {
281         int rc;
282
283         /* Clear reply swab mask; we may have already swabbed an early reply */
284         req->rq_rep_swab_mask = 0;
285
286         rc = lustre_unpack_msg(req->rq_repmsg, req->rq_replen);
287         if (rc) {
288                 DEBUG_REQ(D_ERROR, req, "unpack_rep failed: %d", rc);
289                 return(-EPROTO);
290         }
291
292         rc = lustre_unpack_rep_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
293         if (rc) {
294                 DEBUG_REQ(D_ERROR, req, "unpack ptlrpc body failed: %d", rc);
295                 return(-EPROTO);
296         }
297         return 0;
298 }
299
300 /*
301  * Handle an early reply message, called with the rq_lock held.
302  * If anything goes wrong just ignore it - same as if it never happened
303  */
304 static int ptlrpc_at_recv_early_reply(struct ptlrpc_request *req)
305 {
306         struct ptlrpc_request *early_req;
307         time_t                 olddl;
308         int                    rc;
309         ENTRY;
310
311         req->rq_early = 0;
312         spin_unlock(&req->rq_lock);
313
314         rc = sptlrpc_cli_unwrap_early_reply(req, &early_req);
315         if (rc) {
316                 spin_lock(&req->rq_lock);
317                 RETURN(rc);
318         }
319
320         rc = unpack_reply(early_req);
321         if (rc == 0) {
322                 /* Expecting to increase the service time estimate here */
323                 ptlrpc_at_adj_service(req,
324                         lustre_msg_get_timeout(early_req->rq_repmsg));
325                 ptlrpc_at_adj_net_latency(req,
326                         lustre_msg_get_service_time(early_req->rq_repmsg));
327         }
328
329         sptlrpc_cli_finish_early_reply(early_req);
330
331         spin_lock(&req->rq_lock);
332
333         if (rc == 0) {
334                 /* Adjust the local timeout for this req */
335                 ptlrpc_at_set_req_timeout(req);
336
337                 olddl = req->rq_deadline;
338                 /* server assumes it now has rq_timeout from when it sent the
339                    early reply, so client should give it at least that long. */
340                 req->rq_deadline = cfs_time_current_sec() + req->rq_timeout +
341                             ptlrpc_at_get_net_latency(req);
342
343                 DEBUG_REQ(D_ADAPTTO, req,
344                           "Early reply #%d, new deadline in "CFS_DURATION_T"s "
345                           "("CFS_DURATION_T"s)", req->rq_early_count,
346                           cfs_time_sub(req->rq_deadline,
347                                        cfs_time_current_sec()),
348                           cfs_time_sub(req->rq_deadline, olddl));
349         }
350
351         RETURN(rc);
352 }
353
354 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool)
355 {
356         struct list_head *l, *tmp;
357         struct ptlrpc_request *req;
358
359         LASSERT(pool != NULL);
360
361         spin_lock(&pool->prp_lock);
362         list_for_each_safe(l, tmp, &pool->prp_req_list) {
363                 req = list_entry(l, struct ptlrpc_request, rq_list);
364                 list_del(&req->rq_list);
365                 LASSERT(req->rq_reqbuf);
366                 LASSERT(req->rq_reqbuf_len == pool->prp_rq_size);
367                 OBD_FREE(req->rq_reqbuf, pool->prp_rq_size);
368                 OBD_FREE(req, sizeof(*req));
369         }
370         spin_unlock(&pool->prp_lock);
371         OBD_FREE(pool, sizeof(*pool));
372 }
373
374 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq)
375 {
376         int i;
377         int size = 1;
378
379         while (size < pool->prp_rq_size + SPTLRPC_MAX_PAYLOAD)
380                 size <<= 1;
381
382         LASSERTF(list_empty(&pool->prp_req_list) || size == pool->prp_rq_size,
383                  "Trying to change pool size with nonempty pool "
384                  "from %d to %d bytes\n", pool->prp_rq_size, size);
385
386         spin_lock(&pool->prp_lock);
387         pool->prp_rq_size = size;
388         for (i = 0; i < num_rq; i++) {
389                 struct ptlrpc_request *req;
390                 struct lustre_msg *msg;
391
392                 spin_unlock(&pool->prp_lock);
393                 OBD_ALLOC(req, sizeof(struct ptlrpc_request));
394                 if (!req)
395                         return;
396                 OBD_ALLOC_GFP(msg, size, CFS_ALLOC_STD);
397                 if (!msg) {
398                         OBD_FREE(req, sizeof(struct ptlrpc_request));
399                         return;
400                 }
401                 req->rq_reqbuf = msg;
402                 req->rq_reqbuf_len = size;
403                 req->rq_pool = pool;
404                 spin_lock(&pool->prp_lock);
405                 list_add_tail(&req->rq_list, &pool->prp_req_list);
406         }
407         spin_unlock(&pool->prp_lock);
408         return;
409 }
410
411 struct ptlrpc_request_pool *
412 ptlrpc_init_rq_pool(int num_rq, int msgsize,
413                     void (*populate_pool)(struct ptlrpc_request_pool *, int))
414 {
415         struct ptlrpc_request_pool *pool;
416
417         OBD_ALLOC(pool, sizeof (struct ptlrpc_request_pool));
418         if (!pool)
419                 return NULL;
420
421         /* Request next power of two for the allocation, because internally
422            kernel would do exactly this */
423
424         spin_lock_init(&pool->prp_lock);
425         CFS_INIT_LIST_HEAD(&pool->prp_req_list);
426         pool->prp_rq_size = msgsize;
427         pool->prp_populate = populate_pool;
428
429         populate_pool(pool, num_rq);
430
431         if (list_empty(&pool->prp_req_list)) {
432                 /* have not allocated a single request for the pool */
433                 OBD_FREE(pool, sizeof (struct ptlrpc_request_pool));
434                 pool = NULL;
435         }
436         return pool;
437 }
438
439 static struct ptlrpc_request *
440 ptlrpc_prep_req_from_pool(struct ptlrpc_request_pool *pool)
441 {
442         struct ptlrpc_request *request;
443         struct lustre_msg *reqbuf;
444
445         if (!pool)
446                 return NULL;
447
448         spin_lock(&pool->prp_lock);
449
450         /* See if we have anything in a pool, and bail out if nothing,
451          * in writeout path, where this matters, this is safe to do, because
452          * nothing is lost in this case, and when some in-flight requests
453          * complete, this code will be called again. */
454         if (unlikely(list_empty(&pool->prp_req_list))) {
455                 spin_unlock(&pool->prp_lock);
456                 return NULL;
457         }
458
459         request = list_entry(pool->prp_req_list.next, struct ptlrpc_request,
460                              rq_list);
461         list_del_init(&request->rq_list);
462         spin_unlock(&pool->prp_lock);
463
464         LASSERT(request->rq_reqbuf);
465         LASSERT(request->rq_pool);
466
467         reqbuf = request->rq_reqbuf;
468         memset(request, 0, sizeof(*request));
469         request->rq_reqbuf = reqbuf;
470         request->rq_reqbuf_len = pool->prp_rq_size;
471         request->rq_pool = pool;
472
473         return request;
474 }
475
476 static void __ptlrpc_free_req_to_pool(struct ptlrpc_request *request)
477 {
478         struct ptlrpc_request_pool *pool = request->rq_pool;
479
480         spin_lock(&pool->prp_lock);
481         LASSERT(list_empty(&request->rq_list));
482         LASSERT(!request->rq_receiving_reply);
483         list_add_tail(&request->rq_list, &pool->prp_req_list);
484         spin_unlock(&pool->prp_lock);
485 }
486
487 static int __ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
488                                       __u32 version, int opcode,
489                                       int count, __u32 *lengths, char **bufs,
490                                       struct ptlrpc_cli_ctx *ctx)
491 {
492         struct obd_import  *imp = request->rq_import;
493         int                 rc;
494         ENTRY;
495
496         if (unlikely(ctx))
497                 request->rq_cli_ctx = sptlrpc_cli_ctx_get(ctx);
498         else {
499                 rc = sptlrpc_req_get_ctx(request);
500                 if (rc)
501                         GOTO(out_free, rc);
502         }
503
504         sptlrpc_req_set_flavor(request, opcode);
505
506         rc = lustre_pack_request(request, imp->imp_msg_magic, count,
507                                  lengths, bufs);
508         if (rc) {
509                 LASSERT(!request->rq_pool);
510                 GOTO(out_ctx, rc);
511         }
512
513         lustre_msg_add_version(request->rq_reqmsg, version);
514         request->rq_send_state = LUSTRE_IMP_FULL;
515         request->rq_type = PTL_RPC_MSG_REQUEST;
516         request->rq_export = NULL;
517
518         request->rq_req_cbid.cbid_fn  = request_out_callback;
519         request->rq_req_cbid.cbid_arg = request;
520
521         request->rq_reply_cbid.cbid_fn  = reply_in_callback;
522         request->rq_reply_cbid.cbid_arg = request;
523
524         request->rq_reply_deadline = 0;
525         request->rq_phase = RQ_PHASE_NEW;
526         request->rq_next_phase = RQ_PHASE_UNDEFINED;
527
528         request->rq_request_portal = imp->imp_client->cli_request_portal;
529         request->rq_reply_portal = imp->imp_client->cli_reply_portal;
530
531         ptlrpc_at_set_req_timeout(request);
532
533         spin_lock_init(&request->rq_lock);
534         CFS_INIT_LIST_HEAD(&request->rq_list);
535         CFS_INIT_LIST_HEAD(&request->rq_timed_list);
536         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
537         CFS_INIT_LIST_HEAD(&request->rq_mod_list);
538         CFS_INIT_LIST_HEAD(&request->rq_ctx_chain);
539         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
540         CFS_INIT_LIST_HEAD(&request->rq_history_list);
541         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
542         cfs_waitq_init(&request->rq_reply_waitq);
543         request->rq_xid = ptlrpc_next_xid();
544         atomic_set(&request->rq_refcount, 1);
545
546         lustre_msg_set_opc(request->rq_reqmsg, opcode);
547
548         RETURN(0);
549 out_ctx:
550         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
551 out_free:
552         class_import_put(imp);
553         return rc;
554 }
555
556 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
557                              __u32 version, int opcode, char **bufs,
558                              struct ptlrpc_cli_ctx *ctx)
559 {
560         int count;
561
562         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
563         return __ptlrpc_request_bufs_pack(request, version, opcode, count,
564                                           request->rq_pill.rc_area[RCL_CLIENT],
565                                           bufs, ctx);
566 }
567 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
568
569 int ptlrpc_request_pack(struct ptlrpc_request *request,
570                         __u32 version, int opcode)
571 {
572         return ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
573 }
574
575 static inline
576 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
577                                               struct ptlrpc_request_pool *pool)
578 {
579         struct ptlrpc_request *request = NULL;
580
581         if (pool)
582                 request = ptlrpc_prep_req_from_pool(pool);
583
584         if (!request)
585                 OBD_ALLOC_PTR(request);
586
587         if (request) {
588                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
589                 LASSERT(imp != LP_POISON);
590                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p",
591                         imp->imp_client);
592                 LASSERT(imp->imp_client != LP_POISON);
593
594                 request->rq_import = class_import_get(imp);
595         } else {
596                 CERROR("request allocation out of memory\n");
597         }
598
599         return request;
600 }
601
602 static struct ptlrpc_request *
603 ptlrpc_request_alloc_internal(struct obd_import *imp,
604                               struct ptlrpc_request_pool * pool,
605                               const struct req_format *format)
606 {
607         struct ptlrpc_request *request;
608
609         request = __ptlrpc_request_alloc(imp, pool);
610         if (request == NULL)
611                 return NULL;
612
613         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
614         req_capsule_set(&request->rq_pill, format);
615         return request;
616 }
617
618 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
619                                             const struct req_format *format)
620 {
621         return ptlrpc_request_alloc_internal(imp, NULL, format);
622 }
623
624 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
625                                             struct ptlrpc_request_pool * pool,
626                                             const struct req_format *format)
627 {
628         return ptlrpc_request_alloc_internal(imp, pool, format);
629 }
630
631 void ptlrpc_request_free(struct ptlrpc_request *request)
632 {
633         if (request->rq_pool)
634                 __ptlrpc_free_req_to_pool(request);
635         else
636                 OBD_FREE_PTR(request);
637 }
638
639 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
640                                                 const struct req_format *format,
641                                                 __u32 version, int opcode)
642 {
643         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
644         int                    rc;
645
646         if (req) {
647                 rc = ptlrpc_request_pack(req, version, opcode);
648                 if (rc) {
649                         ptlrpc_request_free(req);
650                         req = NULL;
651                 }
652         }
653         return req;
654 }
655
656 struct ptlrpc_request *
657 ptlrpc_prep_req_pool(struct obd_import *imp,
658                      __u32 version, int opcode,
659                      int count, __u32 *lengths, char **bufs,
660                      struct ptlrpc_request_pool *pool)
661 {
662         struct ptlrpc_request *request;
663         int                    rc;
664
665         request = __ptlrpc_request_alloc(imp, pool);
666         if (!request)
667                 return NULL;
668
669         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
670                                         lengths, bufs, NULL);
671         if (rc) {
672                 ptlrpc_request_free(request);
673                 request = NULL;
674         }
675         return request;
676 }
677
678 struct ptlrpc_request *
679 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
680                 __u32 *lengths, char **bufs)
681 {
682         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
683                                     NULL);
684 }
685
686 struct ptlrpc_request_set *ptlrpc_prep_set(void)
687 {
688         struct ptlrpc_request_set *set;
689
690         ENTRY;
691         OBD_ALLOC(set, sizeof *set);
692         if (!set)
693                 RETURN(NULL);
694         CFS_INIT_LIST_HEAD(&set->set_requests);
695         cfs_waitq_init(&set->set_waitq);
696         set->set_remaining = 0;
697         spin_lock_init(&set->set_new_req_lock);
698         CFS_INIT_LIST_HEAD(&set->set_new_requests);
699         CFS_INIT_LIST_HEAD(&set->set_cblist);
700
701         RETURN(set);
702 }
703
704 /* Finish with this set; opposite of prep_set. */
705 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
706 {
707         struct list_head *tmp;
708         struct list_head *next;
709         int               expected_phase;
710         int               n = 0;
711         ENTRY;
712
713         /* Requests on the set should either all be completed, or all be new */
714         expected_phase = (set->set_remaining == 0) ?
715                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
716         list_for_each (tmp, &set->set_requests) {
717                 struct ptlrpc_request *req =
718                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
719
720                 LASSERT(req->rq_phase == expected_phase);
721                 n++;
722         }
723
724         LASSERT(set->set_remaining == 0 || set->set_remaining == n);
725
726         list_for_each_safe(tmp, next, &set->set_requests) {
727                 struct ptlrpc_request *req =
728                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
729                 list_del_init(&req->rq_set_chain);
730
731                 LASSERT(req->rq_phase == expected_phase);
732
733                 if (req->rq_phase == RQ_PHASE_NEW) {
734
735                         if (req->rq_interpret_reply != NULL) {
736                                 ptlrpc_interpterer_t interpreter =
737                                         req->rq_interpret_reply;
738
739                                 /* higher level (i.e. LOV) failed;
740                                  * let the sub reqs clean up */
741                                 req->rq_status = -EBADR;
742                                 interpreter(NULL, req, &req->rq_async_args,
743                                             req->rq_status);
744                         }
745                         set->set_remaining--;
746                 }
747
748                 req->rq_set = NULL;
749                 ptlrpc_req_finished (req);
750         }
751
752         LASSERT(set->set_remaining == 0);
753
754         OBD_FREE(set, sizeof(*set));
755         EXIT;
756 }
757
758 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
759                       set_interpreter_func fn, void *data)
760 {
761         struct ptlrpc_set_cbdata *cbdata;
762
763         OBD_ALLOC_PTR(cbdata);
764         if (cbdata == NULL)
765                 RETURN(-ENOMEM);
766
767         cbdata->psc_interpret = fn;
768         cbdata->psc_data = data;
769         list_add_tail(&cbdata->psc_item, &set->set_cblist);
770
771         RETURN(0);
772 }
773
774 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
775                         struct ptlrpc_request *req)
776 {
777         /* The set takes over the caller's request reference */
778         list_add_tail(&req->rq_set_chain, &set->set_requests);
779         req->rq_set = set;
780         set->set_remaining++;
781 }
782
783 /**
784  * Lock so many callers can add things, the context that owns the set
785  * is supposed to notice these and move them into the set proper.
786  */
787 int ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
788                            struct ptlrpc_request *req)
789 {
790         struct ptlrpc_request_set *set = pc->pc_set;
791
792         /*
793          * Let caller know that we stopped and will not handle this request.
794          * It needs to take care itself of request.
795          */
796         if (test_bit(LIOD_STOP, &pc->pc_flags))
797                 return -EALREADY;
798
799         spin_lock(&set->set_new_req_lock);
800         /*
801          * The set takes over the caller's request reference.
802          */
803         list_add_tail(&req->rq_set_chain, &set->set_new_requests);
804         req->rq_set = set;
805         spin_unlock(&set->set_new_req_lock);
806
807         /*
808          * Let thead know that we added something and better it to wake up
809          * and process.
810          */
811         cfs_waitq_signal(&set->set_waitq);
812         return 0;
813 }
814
815 /*
816  * Based on the current state of the import, determine if the request
817  * can be sent, is an error, or should be delayed.
818  *
819  * Returns true if this request should be delayed. If false, and
820  * *status is set, then the request can not be sent and *status is the
821  * error code.  If false and status is 0, then request can be sent.
822  *
823  * The imp->imp_lock must be held.
824  */
825 static int ptlrpc_import_delay_req(struct obd_import *imp,
826                                    struct ptlrpc_request *req, int *status)
827 {
828         int delay = 0;
829         ENTRY;
830
831         LASSERT (status != NULL);
832         *status = 0;
833
834         if (req->rq_ctx_init || req->rq_ctx_fini) {
835                 /* always allow ctx init/fini rpc go through */
836         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
837                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
838                 *status = -EIO;
839                 LBUG();
840         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
841                 DEBUG_REQ(D_ERROR, req, "IMP_CLOSED ");
842                 *status = -EIO;
843         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
844                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
845                 /* allow CONNECT even if import is invalid */ ;
846                 if (atomic_read(&imp->imp_inval_count) != 0) {
847                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
848                         *status = -EIO;
849                 }
850         } else if ((imp->imp_invalid && (!imp->imp_recon_bk)) ||
851                                          imp->imp_obd->obd_no_recov) {
852                 /* If the import has been invalidated (such as by an OST
853                  * failure), and if the import(MGC) tried all of its connection
854                  * list (Bug 13464), the request must fail with -ESHUTDOWN.
855                  * This indicates the requests should be discarded; an -EIO
856                  * may result in a resend of the request. */
857                 if (!imp->imp_deactive)
858                           DEBUG_REQ(D_ERROR, req, "IMP_INVALID");
859                 *status = -ESHUTDOWN; /* bz 12940 */
860         } else if (req->rq_import_generation != imp->imp_generation) {
861                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
862                 *status = -EIO;
863         } else if (req->rq_send_state != imp->imp_state) {
864                 /* invalidate in progress - any requests should be drop */
865                 if (atomic_read(&imp->imp_inval_count) != 0) {
866                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
867                         *status = -EIO;
868                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
869                         *status = -EWOULDBLOCK;
870                 } else {
871                         delay = 1;
872                 }
873         }
874
875         RETURN(delay);
876 }
877
878 static int ptlrpc_check_reply(struct ptlrpc_request *req)
879 {
880         int rc = 0;
881         ENTRY;
882
883         /* serialise with network callback */
884         spin_lock(&req->rq_lock);
885
886         if (ptlrpc_client_replied(req))
887                 GOTO(out, rc = 1);
888
889         if (req->rq_net_err && !req->rq_timedout) {
890                 spin_unlock(&req->rq_lock);
891                 rc = ptlrpc_expire_one_request(req, 0);
892                 spin_lock(&req->rq_lock);
893                 GOTO(out, rc);
894         }
895
896         if (req->rq_err)
897                 GOTO(out, rc = 1);
898
899         if (req->rq_resend)
900                 GOTO(out, rc = 1);
901
902         if (req->rq_restart)
903                 GOTO(out, rc = 1);
904
905         if (ptlrpc_client_early(req)) {
906                 ptlrpc_at_recv_early_reply(req);
907                 GOTO(out, rc = 0); /* keep waiting */
908         }
909
910         EXIT;
911  out:
912         spin_unlock(&req->rq_lock);
913         DEBUG_REQ(D_NET, req, "rc = %d for", rc);
914         return rc;
915 }
916
917 static int ptlrpc_check_status(struct ptlrpc_request *req)
918 {
919         int err;
920         ENTRY;
921
922         err = lustre_msg_get_status(req->rq_repmsg);
923         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
924                 struct obd_import *imp = req->rq_import;
925                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
926                 LCONSOLE_ERROR_MSG(0x011,"an error occurred while communicating"
927                                 " with %s. The %s operation failed with %d\n",
928                                 libcfs_nid2str(imp->imp_connection->c_peer.nid),
929                                 ll_opcode2str(opc), err);
930                 RETURN(err < 0 ? err : -EINVAL);
931         }
932
933         if (err < 0) {
934                 DEBUG_REQ(D_INFO, req, "status is %d", err);
935         } else if (err > 0) {
936                 /* XXX: translate this error from net to host */
937                 DEBUG_REQ(D_INFO, req, "status is %d", err);
938         }
939
940         RETURN(err);
941 }
942
943 /**
944  * Callback function called when client receives RPC reply for \a req.
945  */
946 static int after_reply(struct ptlrpc_request *req)
947 {
948         struct obd_import *imp = req->rq_import;
949         struct obd_device *obd = req->rq_import->imp_obd;
950         int rc;
951         struct timeval work_start;
952         long timediff;
953         ENTRY;
954
955         LASSERT(!req->rq_receiving_reply);
956         LASSERT(obd);
957         LASSERT(req->rq_nob_received <= req->rq_repbuf_len);
958
959         /*
960          * NB Until this point, the whole of the incoming message,
961          * including buflens, status etc is in the sender's byte order.
962          */
963
964         rc = sptlrpc_cli_unwrap_reply(req);
965         if (rc) {
966                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
967                 RETURN(rc);
968         }
969
970         /*
971          * Security layer unwrap might ask resend this request.
972          */
973         if (req->rq_resend)
974                 RETURN(0);
975
976         rc = unpack_reply(req);
977         if (rc)
978                 RETURN(rc);
979
980         do_gettimeofday(&work_start);
981         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
982         if (obd->obd_svc_stats != NULL)
983                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
984                                     timediff);
985
986         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
987             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
988                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
989                           lustre_msg_get_type(req->rq_repmsg));
990                 RETURN(-EPROTO);
991         }
992
993         OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, obd_fail_val);
994         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
995         ptlrpc_at_adj_net_latency(req,
996                                   lustre_msg_get_service_time(req->rq_repmsg));
997
998         rc = ptlrpc_check_status(req);
999         imp->imp_connect_error = rc;
1000
1001         if (rc) {
1002                 /*
1003                  * Either we've been evicted, or the server has failed for
1004                  * some reason. Try to reconnect, and if that fails, punt to
1005                  * the upcall.
1006                  */
1007                 if (ll_rpc_recoverable_error(rc)) {
1008                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1009                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1010                                 RETURN(rc);
1011                         }
1012                         ptlrpc_request_handle_notconn(req);
1013                         RETURN(rc);
1014                 }
1015         } else {
1016                 /*
1017                  * Let's look if server sent slv. Do it only for RPC with
1018                  * rc == 0.
1019                  */
1020                 ldlm_cli_update_pool(req);
1021         }
1022
1023         /*
1024          * Store transno in reqmsg for replay.
1025          */
1026         req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1027         lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1028
1029         if (req->rq_import->imp_replayable) {
1030                 spin_lock(&imp->imp_lock);
1031                 /*
1032                  * No point in adding already-committed requests to the replay
1033                  * list, we will just remove them immediately. b=9829
1034                  */
1035                 if (req->rq_transno != 0 &&
1036                     (req->rq_transno >
1037                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1038                      req->rq_replay))
1039                         ptlrpc_retain_replayable_request(req, imp);
1040                 else if (req->rq_commit_cb != NULL) {
1041                         spin_unlock(&imp->imp_lock);
1042                         req->rq_commit_cb(req);
1043                         spin_lock(&imp->imp_lock);
1044                 }
1045
1046                 /*
1047                  * Replay-enabled imports return commit-status information.
1048                  */
1049                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1050                         imp->imp_peer_committed_transno =
1051                                 lustre_msg_get_last_committed(req->rq_repmsg);
1052                 }
1053                 ptlrpc_free_committed(imp);
1054                 spin_unlock(&imp->imp_lock);
1055         }
1056
1057         RETURN(rc);
1058 }
1059
1060 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1061 {
1062         struct obd_import     *imp;
1063         int rc;
1064         ENTRY;
1065
1066         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1067         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()))
1068                 RETURN (0);
1069
1070         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1071
1072         imp = req->rq_import;
1073         spin_lock(&imp->imp_lock);
1074
1075         req->rq_import_generation = imp->imp_generation;
1076
1077         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1078                 spin_lock(&req->rq_lock);
1079                 req->rq_waiting = 1;
1080                 spin_unlock(&req->rq_lock);
1081
1082                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1083                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1084                           ptlrpc_import_state_name(req->rq_send_state),
1085                           ptlrpc_import_state_name(imp->imp_state));
1086                 LASSERT(list_empty(&req->rq_list));
1087                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1088                 atomic_inc(&req->rq_import->imp_inflight);
1089                 spin_unlock(&imp->imp_lock);
1090                 RETURN(0);
1091         }
1092
1093         if (rc != 0) {
1094                 spin_unlock(&imp->imp_lock);
1095                 req->rq_status = rc;
1096                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1097                 RETURN(rc);
1098         }
1099
1100         LASSERT(list_empty(&req->rq_list));
1101         list_add_tail(&req->rq_list, &imp->imp_sending_list);
1102         atomic_inc(&req->rq_import->imp_inflight);
1103         spin_unlock(&imp->imp_lock);
1104
1105         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1106
1107         rc = sptlrpc_req_refresh_ctx(req, -1);
1108         if (rc) {
1109                 if (req->rq_err) {
1110                         req->rq_status = rc;
1111                         RETURN(1);
1112                 } else {
1113                         req->rq_wait_ctx = 1;
1114                         RETURN(0);
1115                 }
1116         }
1117
1118         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1119                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1120                imp->imp_obd->obd_uuid.uuid,
1121                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1122                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1123                lustre_msg_get_opc(req->rq_reqmsg));
1124
1125         rc = ptl_send_rpc(req, 0);
1126         if (rc) {
1127                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1128                 req->rq_net_err = 1;
1129                 RETURN(rc);
1130         }
1131         RETURN(0);
1132 }
1133
1134 /* this sends any unsent RPCs in @set and returns TRUE if all are sent */
1135 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1136 {
1137         struct list_head *tmp;
1138         int force_timer_recalc = 0;
1139         ENTRY;
1140
1141         if (set->set_remaining == 0)
1142                 RETURN(1);
1143
1144         list_for_each(tmp, &set->set_requests) {
1145                 struct ptlrpc_request *req =
1146                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1147                 struct obd_import *imp = req->rq_import;
1148                 int rc = 0;
1149
1150                 if (req->rq_phase == RQ_PHASE_NEW &&
1151                     ptlrpc_send_new_req(req)) {
1152                         force_timer_recalc = 1;
1153                 }
1154
1155                 /* delayed send - skip */
1156                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1157                         continue;
1158
1159                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1160                       req->rq_phase == RQ_PHASE_BULK ||
1161                       req->rq_phase == RQ_PHASE_INTERPRET ||
1162                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1163                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1164                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1165                         LBUG();
1166                 }
1167
1168                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1169                         LASSERT(req->rq_next_phase != req->rq_phase);
1170                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1171
1172                         /* 
1173                          * Skip processing until reply is unlinked. We
1174                          * can't return to pool before that and we can't
1175                          * call interpret before that. We need to make
1176                          * sure that all rdma transfers finished and will
1177                          * not corrupt any data. 
1178                          */
1179                         if (ptlrpc_client_recv_or_unlink(req))
1180                                 continue;
1181                      
1182                         /* 
1183                          * Turn fail_loc off to prevent it from looping
1184                          * forever. 
1185                          */
1186                         OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_UNLINK,
1187                                              OBD_FAIL_ONCE);
1188
1189                         /* 
1190                          * Move to next phase if reply was successfully 
1191                          * unlinked. 
1192                          */
1193                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1194                 }
1195
1196                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1197                         continue;
1198
1199                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1200                         GOTO(interpret, req->rq_status);
1201
1202                 /* 
1203                  * Note that this also will start async reply unlink. 
1204                  */
1205                 if (req->rq_net_err && !req->rq_timedout) {
1206                         ptlrpc_expire_one_request(req, 1);
1207
1208                         /* 
1209                          * Check if we still need to wait for unlink. 
1210                          */
1211                         if (ptlrpc_client_recv_or_unlink(req))
1212                                 continue;
1213                 }
1214
1215                 if (req->rq_err) {
1216                         req->rq_replied = 0;
1217                         if (req->rq_status == 0)
1218                                 req->rq_status = -EIO;
1219                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1220                         GOTO(interpret, req->rq_status);
1221                 }
1222
1223                 /* ptlrpc_queue_wait->l_wait_event guarantees that rq_intr
1224                  * will only be set after rq_timedout, but the synchronous IO
1225                  * waiting path sets rq_intr irrespective of whether ptlrpcd
1226                  * has seen a timeout.  our policy is to only interpret
1227                  * interrupted rpcs after they have timed out */
1228                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1229                                      req->rq_wait_ctx)) {
1230                         req->rq_status = -EINTR;
1231                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1232                         GOTO(interpret, req->rq_status);
1233                 }
1234
1235                 if (req->rq_phase == RQ_PHASE_RPC) {
1236                         if (req->rq_timedout || req->rq_resend ||
1237                             req->rq_waiting || req->rq_wait_ctx) {
1238                                 int status;
1239
1240                                 if (!ptlrpc_unregister_reply(req, 1))
1241                                         continue;
1242
1243                                 spin_lock(&imp->imp_lock);
1244
1245                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1246                                         spin_unlock(&imp->imp_lock);
1247                                         continue;
1248                                 }
1249
1250                                 if (status != 0)  {
1251                                         req->rq_status = status;
1252                                         ptlrpc_rqphase_move(req, 
1253                                                 RQ_PHASE_INTERPRET);
1254                                         spin_unlock(&imp->imp_lock);
1255                                         GOTO(interpret, req->rq_status);
1256                                 }
1257                                 if (req->rq_no_resend && !req->rq_wait_ctx) {
1258                                         req->rq_status = -ENOTCONN;
1259                                         ptlrpc_rqphase_move(req, 
1260                                                 RQ_PHASE_INTERPRET);
1261                                         spin_unlock(&imp->imp_lock);
1262                                         GOTO(interpret, req->rq_status);
1263                                 }
1264
1265                                 list_del_init(&req->rq_list);
1266                                 list_add_tail(&req->rq_list,
1267                                               &imp->imp_sending_list);
1268
1269                                 spin_unlock(&imp->imp_lock);
1270
1271                                 req->rq_waiting = 0;
1272
1273                                 if (req->rq_timedout||req->rq_resend) {
1274                                         /* This is re-sending anyways, 
1275                                          * let's mark req as resend. */
1276                                         req->rq_resend = 1;
1277                                         lustre_msg_add_flags(req->rq_reqmsg,
1278                                                              MSG_RESENT);
1279                                         if (req->rq_bulk) {
1280                                                 __u64 old_xid = req->rq_xid;
1281
1282                                                 ptlrpc_unregister_bulk(req);
1283
1284                                                 /* ensure previous bulk fails */
1285                                                 req->rq_xid = ptlrpc_next_xid();
1286                                                 CDEBUG(D_HA, "resend bulk "
1287                                                        "old x"LPU64
1288                                                        " new x"LPU64"\n",
1289                                                        old_xid, req->rq_xid);
1290                                         }
1291                                 }
1292                                 /*
1293                                  * rq_wait_ctx is only touched by ptlrpcd,
1294                                  * so no lock is needed here.
1295                                  */
1296                                 status = sptlrpc_req_refresh_ctx(req, -1);
1297                                 if (status) {
1298                                         if (req->rq_err) {
1299                                                 req->rq_status = status;
1300                                                 force_timer_recalc = 1;
1301                                         } else {
1302                                                 req->rq_wait_ctx = 1;
1303                                         }
1304
1305                                         continue;
1306                                 } else {
1307                                         req->rq_wait_ctx = 0;
1308                                 }
1309
1310                                 rc = ptl_send_rpc(req, 0);
1311                                 if (rc) {
1312                                         DEBUG_REQ(D_HA, req, "send failed (%d)",
1313                                                   rc);
1314                                         force_timer_recalc = 1;
1315                                         req->rq_net_err = 1;
1316                                 }
1317                                 /* need to reset the timeout */
1318                                 force_timer_recalc = 1;
1319                         }
1320
1321                         spin_lock(&req->rq_lock);
1322
1323                         if (ptlrpc_client_early(req)) {
1324                                 ptlrpc_at_recv_early_reply(req);
1325                                 spin_unlock(&req->rq_lock);
1326                                 continue;
1327                         }
1328
1329                         /* Still waiting for a reply? */
1330                         if (ptlrpc_client_recv(req)) {
1331                                 spin_unlock(&req->rq_lock);
1332                                 continue;
1333                         }
1334
1335                         /* Did we actually receive a reply? */
1336                         if (!ptlrpc_client_replied(req)) {
1337                                 spin_unlock(&req->rq_lock);
1338                                 continue;
1339                         }
1340
1341                         spin_unlock(&req->rq_lock);
1342
1343                         req->rq_status = after_reply(req);
1344                         if (req->rq_resend) {
1345                                 /* Add this req to the delayed list so
1346                                    it can be errored if the import is
1347                                    evicted after recovery. */
1348                                 spin_lock(&imp->imp_lock);
1349                                 list_del_init(&req->rq_list);
1350                                 list_add_tail(&req->rq_list,
1351                                               &imp->imp_delayed_list);
1352                                 spin_unlock(&imp->imp_lock);
1353                                 continue;
1354                         }
1355
1356                         /* If there is no bulk associated with this request,
1357                          * then we're done and should let the interpreter
1358                          * process the reply. Similarly if the RPC returned
1359                          * an error, and therefore the bulk will never arrive.
1360                          */
1361                         if (req->rq_bulk == NULL || req->rq_status != 0) {
1362                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1363                                 GOTO(interpret, req->rq_status);
1364                         }
1365
1366                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1367                 }
1368
1369                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1370                 if (ptlrpc_bulk_active(req->rq_bulk))
1371                         continue;
1372
1373                 if (!req->rq_bulk->bd_success) {
1374                         /* The RPC reply arrived OK, but the bulk screwed
1375                          * up!  Dead wierd since the server told us the RPC
1376                          * was good after getting the REPLY for her GET or
1377                          * the ACK for her PUT. */
1378                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1379                         LBUG();
1380                 }
1381
1382                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1383
1384         interpret:
1385                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1386
1387                 /* This moves to "unregistering" phase we need to wait for
1388                  * reply unlink. */
1389                 if (!ptlrpc_unregister_reply(req, 1))
1390                         continue;
1391
1392                 if (req->rq_bulk != NULL)
1393                         ptlrpc_unregister_bulk(req);
1394
1395                 /* When calling interpret receiving already should be
1396                  * finished. */
1397                 LASSERT(!req->rq_receiving_reply);
1398
1399                 if (req->rq_interpret_reply != NULL) {
1400                         ptlrpc_interpterer_t interpreter =
1401                                 req->rq_interpret_reply;
1402                         req->rq_status = interpreter(env, req,
1403                                                      &req->rq_async_args,
1404                                                      req->rq_status);
1405                 }
1406                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1407
1408                 CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:"
1409                        "opc %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1410                        imp->imp_obd->obd_uuid.uuid,
1411                        lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1412                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1413                        lustre_msg_get_opc(req->rq_reqmsg));
1414
1415                 spin_lock(&imp->imp_lock);
1416                 /* Request already may be not on sending or delaying list. This
1417                  * may happen in the case of marking it errorneous for the case
1418                  * ptlrpc_import_delay_req(req, status) find it impossible to 
1419                  * allow sending this rpc and returns *status != 0. */
1420                 if (!list_empty(&req->rq_list)) {
1421                         list_del_init(&req->rq_list);
1422                         atomic_dec(&imp->imp_inflight);
1423                 }
1424                 spin_unlock(&imp->imp_lock);
1425
1426                 set->set_remaining--;
1427                 cfs_waitq_signal(&imp->imp_recovery_waitq);
1428         }
1429
1430         /* If we hit an error, we want to recover promptly. */
1431         RETURN(set->set_remaining == 0 || force_timer_recalc);
1432 }
1433
1434 /* Return 1 if we should give up, else 0 */
1435 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1436 {
1437         struct obd_import *imp = req->rq_import;
1438         int rc = 0;
1439         ENTRY;
1440
1441         DEBUG_REQ(D_ERROR|D_NETERROR, req,
1442                   "%s (sent at "CFS_TIME_T", "CFS_DURATION_T"s ago)",
1443                   req->rq_net_err ? "network error" : "timeout",
1444                   req->rq_sent, cfs_time_sub(cfs_time_current_sec(),
1445                   req->rq_sent));
1446
1447         if (imp) {
1448                 LCONSOLE_WARN("Request x"LPU64" sent from %s to NID %s "
1449                               CFS_DURATION_T"s ago has timed out "
1450                               "(limit "CFS_DURATION_T"s).\n", req->rq_xid,
1451                               req->rq_import->imp_obd->obd_name,
1452                               libcfs_nid2str(imp->imp_connection->c_peer.nid),
1453                               cfs_time_sub(cfs_time_current_sec(), req->rq_sent),
1454                               cfs_time_sub(req->rq_deadline, req->rq_sent));
1455         }
1456
1457         if (imp != NULL && obd_debug_peer_on_timeout)
1458                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1459
1460         spin_lock(&req->rq_lock);
1461         req->rq_timedout = 1;
1462         spin_unlock(&req->rq_lock);
1463
1464         ptlrpc_unregister_reply(req, async_unlink);
1465
1466         if (obd_dump_on_timeout)
1467                 libcfs_debug_dumplog();
1468
1469         if (req->rq_bulk != NULL)
1470                 ptlrpc_unregister_bulk (req);
1471
1472         if (imp == NULL) {
1473                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1474                 RETURN(1);
1475         }
1476
1477         /* The DLM server doesn't want recovery run on its imports. */
1478         if (imp->imp_dlm_fake)
1479                 RETURN(1);
1480
1481         /* If this request is for recovery or other primordial tasks,
1482          * then error it out here. */
1483         if (req->rq_ctx_init || req->rq_ctx_fini ||
1484             req->rq_send_state != LUSTRE_IMP_FULL ||
1485             imp->imp_obd->obd_no_recov) {
1486                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1487                           ptlrpc_import_state_name(req->rq_send_state),
1488                           ptlrpc_import_state_name(imp->imp_state));
1489                 spin_lock(&req->rq_lock);
1490                 req->rq_status = -ETIMEDOUT;
1491                 req->rq_err = 1;
1492                 spin_unlock(&req->rq_lock);
1493                 RETURN(1);
1494         }
1495
1496         /* if a request can't be resent we can't wait for an answer after
1497            the timeout */
1498         if (req->rq_no_resend) {
1499                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1500                 rc = 1;
1501         }
1502
1503         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1504
1505         RETURN(rc);
1506 }
1507
1508 int ptlrpc_expired_set(void *data)
1509 {
1510         struct ptlrpc_request_set *set = data;
1511         struct list_head          *tmp;
1512         time_t                     now = cfs_time_current_sec();
1513         ENTRY;
1514
1515         LASSERT(set != NULL);
1516
1517         /* 
1518          * A timeout expired. See which reqs it applies to... 
1519          */
1520         list_for_each (tmp, &set->set_requests) {
1521                 struct ptlrpc_request *req =
1522                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1523
1524                 /* Request in-flight? */
1525                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1526                        !req->rq_waiting && !req->rq_resend) ||
1527                       (req->rq_phase == RQ_PHASE_BULK)))
1528                         continue;
1529   
1530                 if (req->rq_timedout ||     /* already dealt with */
1531                     req->rq_deadline > now) /* not expired */
1532                         continue;
1533
1534                 /* Deal with this guy. Do it asynchronously to not block
1535                  * ptlrpcd thread. */
1536                 ptlrpc_expire_one_request(req, 1);
1537         }
1538
1539         /* 
1540          * When waiting for a whole set, we always to break out of the
1541          * sleep so we can recalculate the timeout, or enable interrupts
1542          * if everyone's timed out.
1543          */
1544         RETURN(1);
1545 }
1546
1547 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1548 {
1549         spin_lock(&req->rq_lock);
1550         req->rq_intr = 1;
1551         spin_unlock(&req->rq_lock);
1552 }
1553
1554 void ptlrpc_interrupted_set(void *data)
1555 {
1556         struct ptlrpc_request_set *set = data;
1557         struct list_head *tmp;
1558
1559         LASSERT(set != NULL);
1560         CERROR("INTERRUPTED SET %p\n", set);
1561
1562         list_for_each(tmp, &set->set_requests) {
1563                 struct ptlrpc_request *req =
1564                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1565
1566                 if (req->rq_phase != RQ_PHASE_RPC && 
1567                     req->rq_phase != RQ_PHASE_UNREGISTERING)
1568                         continue;
1569
1570                 ptlrpc_mark_interrupted(req);
1571         }
1572 }
1573
1574 /** 
1575  * Get the smallest timeout in the set; this does NOT set a timeout. 
1576  */
1577 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
1578 {
1579         struct list_head      *tmp;
1580         time_t                 now = cfs_time_current_sec();
1581         int                    timeout = 0;
1582         struct ptlrpc_request *req;
1583         int                    deadline;
1584         ENTRY;
1585
1586         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1587
1588         list_for_each(tmp, &set->set_requests) {
1589                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1590
1591                 /* 
1592                  * Request in-flight? 
1593                  */
1594                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
1595                       (req->rq_phase == RQ_PHASE_BULK) ||
1596                       (req->rq_phase == RQ_PHASE_NEW)))
1597                         continue;
1598
1599                 /* 
1600                  * Already timed out. 
1601                  */
1602                 if (req->rq_timedout)
1603                         continue;
1604
1605                 /* 
1606                  * Waiting for ctx. 
1607                  */
1608                 if (req->rq_wait_ctx)
1609                         continue;
1610
1611                 if (req->rq_phase == RQ_PHASE_NEW)
1612                         deadline = req->rq_sent;
1613                 else
1614                         deadline = req->rq_sent + req->rq_timeout;
1615
1616                 if (deadline <= now)    /* actually expired already */
1617                         timeout = 1;    /* ASAP */
1618                 else if (timeout == 0 || timeout > deadline - now)
1619                         timeout = deadline - now;
1620         }
1621         RETURN(timeout);
1622 }
1623
1624 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
1625 {
1626         struct list_head      *tmp;
1627         struct ptlrpc_request *req;
1628         struct l_wait_info     lwi;
1629         int                    rc, timeout;
1630         ENTRY;
1631
1632         if (list_empty(&set->set_requests))
1633                 RETURN(0);
1634
1635         list_for_each(tmp, &set->set_requests) {
1636                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1637                 if (req->rq_phase == RQ_PHASE_NEW)
1638                         (void)ptlrpc_send_new_req(req);
1639         }
1640
1641         do {
1642                 timeout = ptlrpc_set_next_timeout(set);
1643
1644                 /* wait until all complete, interrupted, or an in-flight
1645                  * req times out */
1646                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
1647                        set, timeout);
1648                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout ? timeout : 1),
1649                                        ptlrpc_expired_set,
1650                                        ptlrpc_interrupted_set, set);
1651                 rc = l_wait_event(set->set_waitq,
1652                                   ptlrpc_check_set(NULL, set), &lwi);
1653
1654                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
1655
1656                 /* -EINTR => all requests have been flagged rq_intr so next
1657                  * check completes.
1658                  * -ETIMEOUTD => someone timed out.  When all reqs have
1659                  * timed out, signals are enabled allowing completion with
1660                  * EINTR.
1661                  * I don't really care if we go once more round the loop in
1662                  * the error cases -eeb. */
1663         } while (rc != 0 || set->set_remaining != 0);
1664
1665         LASSERT(set->set_remaining == 0);
1666
1667         rc = 0;
1668         list_for_each(tmp, &set->set_requests) {
1669                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1670
1671                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
1672                 if (req->rq_status != 0)
1673                         rc = req->rq_status;
1674         }
1675
1676         if (set->set_interpret != NULL) {
1677                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
1678                         set->set_interpret;
1679                 rc = interpreter (set, set->set_arg, rc);
1680         } else {
1681                 struct ptlrpc_set_cbdata *cbdata, *n;
1682                 int err;
1683
1684                 list_for_each_entry_safe(cbdata, n,
1685                                          &set->set_cblist, psc_item) {
1686                         list_del_init(&cbdata->psc_item);
1687                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
1688                         if (err && !rc)
1689                                 rc = err;
1690                         OBD_FREE_PTR(cbdata);
1691                 }
1692         }
1693
1694         RETURN(rc);
1695 }
1696
1697 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
1698 {
1699         ENTRY;
1700         if (request == NULL) {
1701                 EXIT;
1702                 return;
1703         }
1704
1705         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
1706         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
1707         LASSERTF(list_empty(&request->rq_list), "req %p\n", request);
1708         LASSERTF(list_empty(&request->rq_set_chain), "req %p\n", request);
1709         LASSERTF(list_empty(&request->rq_exp_list), "req %p\n", request);
1710         LASSERTF(!request->rq_replay, "req %p\n", request);
1711         LASSERT(request->rq_cli_ctx);
1712
1713         req_capsule_fini(&request->rq_pill);
1714
1715         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
1716          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
1717         if (request->rq_import != NULL) {
1718                 if (!locked)
1719                         spin_lock(&request->rq_import->imp_lock);
1720                 list_del_init(&request->rq_mod_list);
1721                 list_del_init(&request->rq_replay_list);
1722                 if (!locked)
1723                         spin_unlock(&request->rq_import->imp_lock);
1724         }
1725         LASSERTF(list_empty(&request->rq_replay_list), "req %p\n", request);
1726
1727         if (atomic_read(&request->rq_refcount) != 0) {
1728                 DEBUG_REQ(D_ERROR, request,
1729                           "freeing request with nonzero refcount");
1730                 LBUG();
1731         }
1732
1733         if (request->rq_repbuf != NULL)
1734                 sptlrpc_cli_free_repbuf(request);
1735         if (request->rq_export != NULL) {
1736                 class_export_put(request->rq_export);
1737                 request->rq_export = NULL;
1738         }
1739         if (request->rq_import != NULL) {
1740                 class_import_put(request->rq_import);
1741                 request->rq_import = NULL;
1742         }
1743         if (request->rq_bulk != NULL)
1744                 ptlrpc_free_bulk(request->rq_bulk);
1745
1746         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
1747                 sptlrpc_cli_free_reqbuf(request);
1748
1749         sptlrpc_req_put_ctx(request, !locked);
1750
1751         if (request->rq_pool)
1752                 __ptlrpc_free_req_to_pool(request);
1753         else
1754                 OBD_FREE(request, sizeof(*request));
1755         EXIT;
1756 }
1757
1758 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
1759 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
1760 {
1761         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
1762         (void)__ptlrpc_req_finished(request, 1);
1763 }
1764
1765 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
1766 {
1767         ENTRY;
1768         if (request == NULL)
1769                 RETURN(1);
1770
1771         if (request == LP_POISON ||
1772             request->rq_reqmsg == LP_POISON) {
1773                 CERROR("dereferencing freed request (bug 575)\n");
1774                 LBUG();
1775                 RETURN(1);
1776         }
1777
1778         DEBUG_REQ(D_INFO, request, "refcount now %u",
1779                   atomic_read(&request->rq_refcount) - 1);
1780
1781         if (atomic_dec_and_test(&request->rq_refcount)) {
1782                 __ptlrpc_free_req(request, locked);
1783                 RETURN(1);
1784         }
1785
1786         RETURN(0);
1787 }
1788
1789 void ptlrpc_req_finished(struct ptlrpc_request *request)
1790 {
1791         __ptlrpc_req_finished(request, 0);
1792 }
1793
1794 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
1795 {
1796         return request->rq_xid;
1797 }
1798 EXPORT_SYMBOL(ptlrpc_req_xid);
1799
1800 /* Disengage the client's reply buffer from the network
1801  * NB does _NOT_ unregister any client-side bulk.
1802  * IDEMPOTENT, but _not_ safe against concurrent callers.
1803  * The request owner (i.e. the thread doing the I/O) must call...
1804  */
1805 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
1806 {
1807         int                rc;
1808         cfs_waitq_t       *wq;
1809         struct l_wait_info lwi;
1810
1811         /* 
1812          * Might sleep. 
1813          */
1814         LASSERT(!in_interrupt());
1815
1816         /* 
1817          * Let's setup deadline for reply unlink. 
1818          */
1819         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_UNLINK) && 
1820             async && request->rq_reply_deadline == 0)
1821                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
1822
1823         /* 
1824          * Nothing left to do. 
1825          */
1826         if (!ptlrpc_client_recv_or_unlink(request))
1827                 RETURN(1);
1828
1829         LNetMDUnlink(request->rq_reply_md_h);
1830
1831         /* 
1832          * Let's check it once again. 
1833          */
1834         if (!ptlrpc_client_recv_or_unlink(request))
1835                 RETURN(1);
1836
1837         /* 
1838          * Move to "Unregistering" phase as reply was not unlinked yet. 
1839          */
1840         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
1841
1842         /* 
1843          * Do not wait for unlink to finish. 
1844          */
1845         if (async)
1846                 RETURN(0);
1847
1848         /* 
1849          * We have to l_wait_event() whatever the result, to give liblustre
1850          * a chance to run reply_in_callback(), and to make sure we've
1851          * unlinked before returning a req to the pool. 
1852          */
1853         if (request->rq_set != NULL)
1854                 wq = &request->rq_set->set_waitq;
1855         else
1856                 wq = &request->rq_reply_waitq;
1857
1858         for (;;) {
1859                 /* Network access will complete in finite time but the HUGE
1860                  * timeout lets us CWARN for visibility of sluggish NALs */
1861                 lwi = LWI_TIMEOUT(cfs_time_seconds(LONG_UNLINK), NULL, NULL);
1862                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
1863                                   &lwi);
1864                 if (rc == 0) {
1865                         ptlrpc_rqphase_move(request, request->rq_next_phase);
1866                         RETURN(1);
1867                 }
1868   
1869                 LASSERT(rc == -ETIMEDOUT);
1870                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
1871                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
1872                           request->rq_must_unlink);
1873         }
1874         RETURN(0);
1875 }
1876
1877 /* caller must hold imp->imp_lock */
1878 void ptlrpc_free_committed(struct obd_import *imp)
1879 {
1880         struct list_head *tmp, *saved;
1881         struct ptlrpc_request *req;
1882         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
1883         ENTRY;
1884
1885         LASSERT(imp != NULL);
1886
1887         LASSERT_SPIN_LOCKED(&imp->imp_lock);
1888
1889
1890         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
1891             imp->imp_generation == imp->imp_last_generation_checked) {
1892                 CDEBUG(D_RPCTRACE, "%s: skip recheck: last_committed "LPU64"\n",
1893                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
1894                 EXIT;
1895                 return;
1896         }
1897         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
1898                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
1899                imp->imp_generation);
1900         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
1901         imp->imp_last_generation_checked = imp->imp_generation;
1902
1903         list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
1904                 req = list_entry(tmp, struct ptlrpc_request, rq_replay_list);
1905
1906                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
1907                 LASSERT(req != last_req);
1908                 last_req = req;
1909
1910                 if (req->rq_import_generation < imp->imp_generation) {
1911                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
1912                         GOTO(free_req, 0);
1913                 }
1914
1915                 if (req->rq_replay) {
1916                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
1917                         continue;
1918                 }
1919
1920                 /* not yet committed */
1921                 if (req->rq_transno > imp->imp_peer_committed_transno) {
1922                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
1923                         break;
1924                 }
1925
1926                 DEBUG_REQ(D_RPCTRACE, req, "commit (last_committed "LPU64")",
1927                           imp->imp_peer_committed_transno);
1928 free_req:
1929                 spin_lock(&req->rq_lock);
1930                 req->rq_replay = 0;
1931                 spin_unlock(&req->rq_lock);
1932                 if (req->rq_commit_cb != NULL)
1933                         req->rq_commit_cb(req);
1934                 list_del_init(&req->rq_replay_list);
1935                 __ptlrpc_req_finished(req, 1);
1936         }
1937
1938         EXIT;
1939         return;
1940 }
1941
1942 void ptlrpc_cleanup_client(struct obd_import *imp)
1943 {
1944         ENTRY;
1945         EXIT;
1946         return;
1947 }
1948
1949 void ptlrpc_resend_req(struct ptlrpc_request *req)
1950 {
1951         DEBUG_REQ(D_HA, req, "going to resend");
1952         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
1953         req->rq_status = -EAGAIN;
1954
1955         spin_lock(&req->rq_lock);
1956         req->rq_resend = 1;
1957         req->rq_net_err = 0;
1958         req->rq_timedout = 0;
1959         if (req->rq_bulk) {
1960                 __u64 old_xid = req->rq_xid;
1961
1962                 /* ensure previous bulk fails */
1963                 req->rq_xid = ptlrpc_next_xid();
1964                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
1965                        old_xid, req->rq_xid);
1966         }
1967         ptlrpc_client_wake_req(req);
1968         spin_unlock(&req->rq_lock);
1969 }
1970
1971 /* XXX: this function and rq_status are currently unused */
1972 void ptlrpc_restart_req(struct ptlrpc_request *req)
1973 {
1974         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
1975         req->rq_status = -ERESTARTSYS;
1976
1977         spin_lock(&req->rq_lock);
1978         req->rq_restart = 1;
1979         req->rq_timedout = 0;
1980         ptlrpc_client_wake_req(req);
1981         spin_unlock(&req->rq_lock);
1982 }
1983
1984 static int expired_request(void *data)
1985 {
1986         struct ptlrpc_request *req = data;
1987         ENTRY;
1988
1989         /* 
1990          * Some failure can suspend regular timeouts.
1991          */
1992         if (ptlrpc_check_suspend())
1993                 RETURN(1);
1994
1995         /* 
1996          * Deadline may have changed with an early reply. 
1997          */
1998         if (req->rq_deadline > cfs_time_current_sec())
1999                 RETURN(1);
2000
2001         RETURN(ptlrpc_expire_one_request(req, 0));
2002 }
2003
2004 static void interrupted_request(void *data)
2005 {
2006         struct ptlrpc_request *req = data;
2007         DEBUG_REQ(D_HA, req, "request interrupted");
2008         spin_lock(&req->rq_lock);
2009         req->rq_intr = 1;
2010         spin_unlock(&req->rq_lock);
2011 }
2012
2013 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2014 {
2015         ENTRY;
2016         atomic_inc(&req->rq_refcount);
2017         RETURN(req);
2018 }
2019
2020 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2021                                       struct obd_import *imp)
2022 {
2023         struct list_head *tmp;
2024
2025         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2026
2027         /* clear this for new requests that were resent as well
2028            as resent replayed requests. */
2029         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2030
2031         /* don't re-add requests that have been replayed */
2032         if (!list_empty(&req->rq_replay_list))
2033                 return;
2034
2035         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2036
2037         LASSERT(imp->imp_replayable);
2038         /* Balanced in ptlrpc_free_committed, usually. */
2039         ptlrpc_request_addref(req);
2040         list_for_each_prev(tmp, &imp->imp_replay_list) {
2041                 struct ptlrpc_request *iter =
2042                         list_entry(tmp, struct ptlrpc_request, rq_replay_list);
2043
2044                 /* We may have duplicate transnos if we create and then
2045                  * open a file, or for closes retained if to match creating
2046                  * opens, so use req->rq_xid as a secondary key.
2047                  * (See bugs 684, 685, and 428.)
2048                  * XXX no longer needed, but all opens need transnos!
2049                  */
2050                 if (iter->rq_transno > req->rq_transno)
2051                         continue;
2052
2053                 if (iter->rq_transno == req->rq_transno) {
2054                         LASSERT(iter->rq_xid != req->rq_xid);
2055                         if (iter->rq_xid > req->rq_xid)
2056                                 continue;
2057                 }
2058
2059                 list_add(&req->rq_replay_list, &iter->rq_replay_list);
2060                 return;
2061         }
2062
2063         list_add_tail(&req->rq_replay_list, &imp->imp_replay_list);
2064 }
2065
2066 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2067 {
2068         int rc = 0;
2069         int brc;
2070         struct l_wait_info lwi;
2071         struct obd_import *imp = req->rq_import;
2072         cfs_duration_t timeout = CFS_TICK;
2073         long timeoutl;
2074         ENTRY;
2075
2076         LASSERT(req->rq_set == NULL);
2077         LASSERT(!req->rq_receiving_reply);
2078
2079         /* for distributed debugging */
2080         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2081         LASSERT(imp->imp_obd != NULL);
2082         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc "
2083                "%s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
2084                imp->imp_obd->obd_uuid.uuid,
2085                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
2086                libcfs_nid2str(imp->imp_connection->c_peer.nid),
2087                lustre_msg_get_opc(req->rq_reqmsg));
2088
2089         /* Mark phase here for a little debug help */
2090         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
2091
2092         spin_lock(&imp->imp_lock);
2093         req->rq_import_generation = imp->imp_generation;
2094 restart:
2095         if (ptlrpc_import_delay_req(imp, req, &rc)) {
2096                 list_del_init(&req->rq_list);
2097                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
2098                 atomic_inc(&imp->imp_inflight);
2099                 spin_unlock(&imp->imp_lock);
2100
2101                 DEBUG_REQ(D_HA, req, "\"%s\" waiting for recovery: (%s != %s)",
2102                           cfs_curproc_comm(),
2103                           ptlrpc_import_state_name(req->rq_send_state),
2104                           ptlrpc_import_state_name(imp->imp_state));
2105                 lwi = LWI_INTR(interrupted_request, req);
2106                 rc = l_wait_event(req->rq_reply_waitq,
2107                                   (req->rq_send_state == imp->imp_state ||
2108                                    req->rq_err || req->rq_intr),
2109                                   &lwi);
2110                 DEBUG_REQ(D_HA, req, "\"%s\" awake: (%s == %s or %d/%d == 1)",
2111                           cfs_curproc_comm(),
2112                           ptlrpc_import_state_name(imp->imp_state),
2113                           ptlrpc_import_state_name(req->rq_send_state),
2114                           req->rq_err, req->rq_intr);
2115
2116                 spin_lock(&imp->imp_lock);
2117                 list_del_init(&req->rq_list);
2118                 atomic_dec(&imp->imp_inflight);
2119
2120                 if (req->rq_err) {
2121                         /* rq_status was set locally */
2122                         rc = -EIO;
2123                 }
2124                 else if (req->rq_intr) {
2125                         rc = -EINTR;
2126                 }
2127                 else if (req->rq_no_resend) {
2128                         spin_unlock(&imp->imp_lock);
2129                         GOTO(out, rc = -ETIMEDOUT);
2130                 }
2131                 else {
2132                         GOTO(restart, rc);
2133                 }
2134         }
2135
2136         if (rc != 0) {
2137                 spin_unlock(&imp->imp_lock);
2138                 req->rq_status = rc; // XXX this ok?
2139                 GOTO(out, rc);
2140         }
2141
2142         if (req->rq_resend) {
2143                 lustre_msg_add_flags(req->rq_reqmsg, MSG_RESENT);
2144
2145                 if (req->rq_bulk != NULL) {
2146                         ptlrpc_unregister_bulk (req);
2147
2148                         /* bulk requests are supposed to be
2149                          * idempotent, so we are free to bump the xid
2150                          * here, which we need to do before
2151                          * registering the bulk again (bug 6371).
2152                          * print the old xid first for sanity.
2153                          */
2154                         DEBUG_REQ(D_HA, req, "bumping xid for bulk: ");
2155                         req->rq_xid = ptlrpc_next_xid();
2156                 }
2157
2158                 DEBUG_REQ(D_HA, req, "resending: ");
2159         }
2160
2161         /* XXX this is the same as ptlrpc_set_wait */
2162         LASSERT(list_empty(&req->rq_list));
2163         list_add_tail(&req->rq_list, &imp->imp_sending_list);
2164         atomic_inc(&imp->imp_inflight);
2165         spin_unlock(&imp->imp_lock);
2166
2167         rc = sptlrpc_req_refresh_ctx(req, 0);
2168         if (rc) {
2169                 if (req->rq_err) {
2170                         /* we got fatal ctx refresh error, directly jump out
2171                          * thus we can pass back the actual error code.
2172                          */
2173                         spin_lock(&imp->imp_lock);
2174                         list_del_init(&req->rq_list);
2175                         spin_unlock(&imp->imp_lock);
2176
2177                         CERROR("Failed to refresh ctx of req %p: %d\n", req, rc);
2178                         GOTO(out, rc);
2179                 }
2180                 /* simulating we got error during send rpc */
2181                 goto after_send;
2182         }
2183
2184         rc = ptl_send_rpc(req, 0);
2185         if (rc)
2186                 DEBUG_REQ(D_HA, req, "send failed (%d); recovering", rc);
2187 repeat:
2188         timeoutl = req->rq_deadline - cfs_time_current_sec();
2189         timeout = (timeoutl <= 0 || rc) ? CFS_TICK :
2190                 cfs_time_seconds(timeoutl);
2191         DEBUG_REQ(D_NET, req,
2192                   "-- sleeping for "CFS_DURATION_T" ticks", timeout);
2193         lwi = LWI_TIMEOUT_INTR(timeout, expired_request, interrupted_request,
2194                                req);
2195         brc = l_wait_event(req->rq_reply_waitq, ptlrpc_check_reply(req), &lwi);
2196         if (brc == -ETIMEDOUT && ((req->rq_deadline > cfs_time_current_sec()) ||
2197                                  ptlrpc_check_and_wait_suspend(req)))
2198                 goto repeat;
2199
2200 after_send:
2201         CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:opc "
2202                "%s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
2203                imp->imp_obd->obd_uuid.uuid,
2204                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
2205                libcfs_nid2str(imp->imp_connection->c_peer.nid),
2206                lustre_msg_get_opc(req->rq_reqmsg));
2207
2208         /* If the reply was received normally, this just grabs the spinlock
2209          * (ensuring the reply callback has returned), sees that
2210          * req->rq_receiving_reply is clear and returns. */
2211         ptlrpc_unregister_reply(req, 0);
2212
2213         spin_lock(&imp->imp_lock);
2214         list_del_init(&req->rq_list);
2215         atomic_dec(&imp->imp_inflight);
2216         spin_unlock(&imp->imp_lock);
2217
2218         if (req->rq_err) {
2219                 DEBUG_REQ(D_RPCTRACE, req, "err rc=%d status=%d",
2220                           rc, req->rq_status);
2221                 GOTO(out, rc = rc ? rc : -EIO);
2222         }
2223
2224         if (req->rq_intr) {
2225                 /* Should only be interrupted if we timed out. */
2226                 if (!req->rq_timedout)
2227                         DEBUG_REQ(D_ERROR, req,
2228                                   "rq_intr set but rq_timedout not");
2229                 GOTO(out, rc = -EINTR);
2230         }
2231
2232         /* Resend if we need to */
2233         if (req->rq_resend) {
2234                 /* ...unless we were specifically told otherwise. */
2235                 if (req->rq_no_resend)
2236                         GOTO(out, rc = -ETIMEDOUT);
2237                 spin_lock(&imp->imp_lock);
2238                 goto restart;
2239         }
2240
2241         if (req->rq_timedout) {                 /* non-recoverable timeout */
2242                 GOTO(out, rc = -ETIMEDOUT);
2243         }
2244
2245         if (!ptlrpc_client_replied(req)) {
2246                 /* How can this be? -eeb */
2247                 DEBUG_REQ(D_ERROR, req, "!rq_replied: ");
2248                 LBUG();
2249                 GOTO(out, rc = req->rq_status);
2250         }
2251
2252         rc = after_reply(req);
2253         /* NB may return +ve success rc */
2254         if (req->rq_resend) {
2255                 spin_lock(&imp->imp_lock);
2256                 goto restart;
2257         }
2258
2259  out:
2260         if (req->rq_bulk != NULL) {
2261                 if (rc >= 0) {
2262                         /* success so far.  Note that anything going wrong
2263                          * with bulk now, is EXTREMELY strange, since the
2264                          * server must have believed that the bulk
2265                          * tranferred OK before she replied with success to
2266                          * me. */
2267                         lwi = LWI_TIMEOUT(timeout, NULL, NULL);
2268                         brc = l_wait_event(req->rq_reply_waitq,
2269                                            !ptlrpc_bulk_active(req->rq_bulk),
2270                                            &lwi);
2271                         LASSERT(brc == 0 || brc == -ETIMEDOUT);
2272                         if (brc != 0) {
2273                                 LASSERT(brc == -ETIMEDOUT);
2274                                 DEBUG_REQ(D_ERROR, req, "bulk timed out");
2275                                 rc = brc;
2276                         } else if (!req->rq_bulk->bd_success) {
2277                                 DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
2278                                 rc = -EIO;
2279                         }
2280                 }
2281                 if (rc < 0)
2282                         ptlrpc_unregister_bulk (req);
2283         }
2284
2285         LASSERT(!req->rq_receiving_reply);
2286         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
2287         cfs_waitq_signal(&imp->imp_recovery_waitq);
2288         RETURN(rc);
2289 }
2290
2291 struct ptlrpc_replay_async_args {
2292         int praa_old_state;
2293         int praa_old_status;
2294 };
2295
2296 static int ptlrpc_replay_interpret(const struct lu_env *env,
2297                                    struct ptlrpc_request *req,
2298                                    void * data, int rc)
2299 {
2300         struct ptlrpc_replay_async_args *aa = data;
2301         struct obd_import *imp = req->rq_import;
2302
2303         ENTRY;
2304         atomic_dec(&imp->imp_replay_inflight);
2305
2306         if (!ptlrpc_client_replied(req)) {
2307                 CERROR("request replay timed out, restarting recovery\n");
2308                 GOTO(out, rc = -ETIMEDOUT);
2309         }
2310
2311         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2312             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2313              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2314                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2315
2316         /* The transno had better not change over replay. */
2317         LASSERT(lustre_msg_get_transno(req->rq_reqmsg) ==
2318                 lustre_msg_get_transno(req->rq_repmsg));
2319
2320         DEBUG_REQ(D_HA, req, "got rep");
2321
2322         /* let the callback do fixups, possibly including in the request */
2323         if (req->rq_replay_cb)
2324                 req->rq_replay_cb(req);
2325
2326         if (ptlrpc_client_replied(req) &&
2327             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2328                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2329                           lustre_msg_get_status(req->rq_repmsg),
2330                           aa->praa_old_status);
2331         } else {
2332                 /* Put it back for re-replay. */
2333                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2334         }
2335
2336         /*
2337          * Errors while replay can set transno to 0, but
2338          * imp_last_replay_transno shouldn't be set to 0 anyway
2339          */
2340         if (req->rq_transno > 0) {
2341                 spin_lock(&imp->imp_lock);
2342                 LASSERT(req->rq_transno <= imp->imp_last_replay_transno);
2343                 imp->imp_last_replay_transno = req->rq_transno;
2344                 spin_unlock(&imp->imp_lock);
2345         } else
2346                 CERROR("Transno is 0 during replay!\n");
2347         /* continue with recovery */
2348         rc = ptlrpc_import_recovery_state_machine(imp);
2349  out:
2350         req->rq_send_state = aa->praa_old_state;
2351
2352         if (rc != 0)
2353                 /* this replay failed, so restart recovery */
2354                 ptlrpc_connect_import(imp, NULL);
2355
2356         RETURN(rc);
2357 }
2358
2359 int ptlrpc_replay_req(struct ptlrpc_request *req)
2360 {
2361         struct ptlrpc_replay_async_args *aa;
2362         ENTRY;
2363
2364         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2365         /* Not handling automatic bulk replay yet (or ever?) */
2366         LASSERT(req->rq_bulk == NULL);
2367
2368         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2369         aa = ptlrpc_req_async_args(req);
2370         memset(aa, 0, sizeof *aa);
2371
2372         /* Prepare request to be resent with ptlrpcd */
2373         aa->praa_old_state = req->rq_send_state;
2374         req->rq_send_state = LUSTRE_IMP_REPLAY;
2375         req->rq_phase = RQ_PHASE_NEW;
2376         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2377         if (req->rq_repmsg)
2378                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2379         req->rq_status = 0;
2380         req->rq_interpret_reply = ptlrpc_replay_interpret;
2381         /* Readjust the timeout for current conditions */
2382         ptlrpc_at_set_req_timeout(req);
2383
2384         DEBUG_REQ(D_HA, req, "REPLAY");
2385
2386         atomic_inc(&req->rq_import->imp_replay_inflight);
2387         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2388
2389         ptlrpcd_add_req(req, PSCOPE_OTHER);
2390         RETURN(0);
2391 }
2392
2393 void ptlrpc_abort_inflight(struct obd_import *imp)
2394 {
2395         struct list_head *tmp, *n;
2396         ENTRY;
2397
2398         /* Make sure that no new requests get processed for this import.
2399          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2400          * this flag and then putting requests on sending_list or delayed_list.
2401          */
2402         spin_lock(&imp->imp_lock);
2403
2404         /* XXX locking?  Maybe we should remove each request with the list
2405          * locked?  Also, how do we know if the requests on the list are
2406          * being freed at this time?
2407          */
2408         list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2409                 struct ptlrpc_request *req =
2410                         list_entry(tmp, struct ptlrpc_request, rq_list);
2411
2412                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2413
2414                 spin_lock (&req->rq_lock);
2415                 if (req->rq_import_generation < imp->imp_generation) {
2416                         req->rq_err = 1;
2417                         req->rq_status = -EINTR;
2418                         ptlrpc_client_wake_req(req);
2419                 }
2420                 spin_unlock (&req->rq_lock);
2421         }
2422
2423         list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2424                 struct ptlrpc_request *req =
2425                         list_entry(tmp, struct ptlrpc_request, rq_list);
2426
2427                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2428
2429                 spin_lock (&req->rq_lock);
2430                 if (req->rq_import_generation < imp->imp_generation) {
2431                         req->rq_err = 1;
2432                         req->rq_status = -EINTR;
2433                         ptlrpc_client_wake_req(req);
2434                 }
2435                 spin_unlock (&req->rq_lock);
2436         }
2437
2438         /* Last chance to free reqs left on the replay list, but we
2439          * will still leak reqs that haven't committed.  */
2440         if (imp->imp_replayable)
2441                 ptlrpc_free_committed(imp);
2442
2443         spin_unlock(&imp->imp_lock);
2444
2445         EXIT;
2446 }
2447
2448 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2449 {
2450         struct list_head *tmp, *pos;
2451
2452         LASSERT(set != NULL);
2453
2454         list_for_each_safe(pos, tmp, &set->set_requests) {
2455                 struct ptlrpc_request *req =
2456                         list_entry(pos, struct ptlrpc_request, rq_set_chain);
2457
2458                 spin_lock(&req->rq_lock);
2459                 if (req->rq_phase != RQ_PHASE_RPC) {
2460                         spin_unlock(&req->rq_lock);
2461                         continue;
2462                 }
2463
2464                 req->rq_err = 1;
2465                 req->rq_status = -EINTR;
2466                 ptlrpc_client_wake_req(req);
2467                 spin_unlock(&req->rq_lock);
2468         }
2469 }
2470
2471 static __u64 ptlrpc_last_xid;
2472 static spinlock_t ptlrpc_last_xid_lock;
2473
2474 /* Initialize the XID for the node.  This is common among all requests on
2475  * this node, and only requires the property that it is monotonically
2476  * increasing.  It does not need to be sequential.  Since this is also used
2477  * as the RDMA match bits, it is important that a single client NOT have
2478  * the same match bits for two different in-flight requests, hence we do
2479  * NOT want to have an XID per target or similar.
2480  *
2481  * To avoid an unlikely collision between match bits after a client reboot
2482  * (which would cause old to be delivered into the wrong buffer) we initialize
2483  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2484  * If the time is clearly incorrect, we instead use a 62-bit random number.
2485  * In the worst case the random number will overflow 1M RPCs per second in
2486  * 9133 years, or permutations thereof.
2487  */
2488 #define YEAR_2004 (1ULL << 30)
2489 void ptlrpc_init_xid(void)
2490 {
2491         time_t now = cfs_time_current_sec();
2492
2493         spin_lock_init(&ptlrpc_last_xid_lock);
2494         if (now < YEAR_2004) {
2495                 ll_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2496                 ptlrpc_last_xid >>= 2;
2497                 ptlrpc_last_xid |= (1ULL << 61);
2498         } else {
2499                 ptlrpc_last_xid = (now << 20);
2500         }
2501 }
2502
2503 __u64 ptlrpc_next_xid(void)
2504 {
2505         __u64 tmp;
2506         spin_lock(&ptlrpc_last_xid_lock);
2507         tmp = ++ptlrpc_last_xid;
2508         spin_unlock(&ptlrpc_last_xid_lock);
2509         return tmp;
2510 }
2511
2512 __u64 ptlrpc_sample_next_xid(void)
2513 {
2514 #if BITS_PER_LONG == 32
2515         /* need to avoid possible word tearing on 32-bit systems */
2516         __u64 tmp;
2517         spin_lock(&ptlrpc_last_xid_lock);
2518         tmp = ptlrpc_last_xid + 1;
2519         spin_unlock(&ptlrpc_last_xid_lock);
2520         return tmp;
2521 #else
2522         /* No need to lock, since returned value is racy anyways */
2523         return ptlrpc_last_xid + 1;
2524 #endif
2525 }
2526 EXPORT_SYMBOL(ptlrpc_sample_next_xid);