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