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