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