Whamcloud - gitweb
LU-4069 build: cleanup from GOTO(label, -ERRNO)
[fs/lustre-release.git] / lustre / ptlrpc / client.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
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 /** Implementation of client-side PortalRPC interfaces */
38
39 #define DEBUG_SUBSYSTEM S_RPC
40 #ifndef __KERNEL__
41 #include <errno.h>
42 #include <signal.h>
43 #include <liblustre.h>
44 #endif
45
46 #include <obd_support.h>
47 #include <obd_class.h>
48 #include <lustre_lib.h>
49 #include <lustre_ha.h>
50 #include <lustre_import.h>
51 #include <lustre_req_layout.h>
52
53 #include "ptlrpc_internal.h"
54
55 static int ptlrpc_send_new_req(struct ptlrpc_request *req);
56
57 /**
58  * Initialize passed in client structure \a cl.
59  */
60 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
61                         struct ptlrpc_client *cl)
62 {
63         cl->cli_request_portal = req_portal;
64         cl->cli_reply_portal   = rep_portal;
65         cl->cli_name           = name;
66 }
67 EXPORT_SYMBOL(ptlrpc_init_client);
68
69 /**
70  * Return PortalRPC connection for remore uud \a uuid
71  */
72 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid)
73 {
74         struct ptlrpc_connection *c;
75         lnet_nid_t                self;
76         lnet_process_id_t         peer;
77         int                       err;
78
79         /* ptlrpc_uuid_to_peer() initializes its 2nd parameter
80          * before accessing its values. */
81         /* coverity[uninit_use_in_call] */
82         err = ptlrpc_uuid_to_peer(uuid, &peer, &self);
83         if (err != 0) {
84                 CNETERR("cannot find peer %s!\n", uuid->uuid);
85                 return NULL;
86         }
87
88         c = ptlrpc_connection_get(peer, self, uuid);
89         if (c) {
90                 memcpy(c->c_remote_uuid.uuid,
91                        uuid->uuid, sizeof(c->c_remote_uuid.uuid));
92         }
93
94         CDEBUG(D_INFO, "%s -> %p\n", uuid->uuid, c);
95
96         return c;
97 }
98 EXPORT_SYMBOL(ptlrpc_uuid_to_connection);
99
100 /**
101  * Allocate and initialize new bulk descriptor on the sender.
102  * Returns pointer to the descriptor or NULL on error.
103  */
104 struct ptlrpc_bulk_desc *ptlrpc_new_bulk(unsigned npages, unsigned max_brw,
105                                          unsigned type, unsigned portal)
106 {
107         struct ptlrpc_bulk_desc *desc;
108         int i;
109
110         OBD_ALLOC(desc, offsetof(struct ptlrpc_bulk_desc, bd_iov[npages]));
111         if (!desc)
112                 return NULL;
113
114         spin_lock_init(&desc->bd_lock);
115         init_waitqueue_head(&desc->bd_waitq);
116         desc->bd_max_iov = npages;
117         desc->bd_iov_count = 0;
118         desc->bd_portal = portal;
119         desc->bd_type = type;
120         desc->bd_md_count = 0;
121         LASSERT(max_brw > 0);
122         desc->bd_md_max_brw = min(max_brw, PTLRPC_BULK_OPS_COUNT);
123         /* PTLRPC_BULK_OPS_COUNT is the compile-time transfer limit for this
124          * node. Negotiated ocd_brw_size will always be <= this number. */
125         for (i = 0; i < PTLRPC_BULK_OPS_COUNT; i++)
126                 LNetInvalidateHandle(&desc->bd_mds[i]);
127
128         return desc;
129 }
130
131 /**
132  * Prepare bulk descriptor for specified outgoing request \a req that
133  * can fit \a npages * pages. \a type is bulk type. \a portal is where
134  * the bulk to be sent. Used on client-side.
135  * Returns pointer to newly allocatrd initialized bulk descriptor or NULL on
136  * error.
137  */
138 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp(struct ptlrpc_request *req,
139                                               unsigned npages, unsigned max_brw,
140                                               unsigned type, unsigned portal)
141 {
142         struct obd_import *imp = req->rq_import;
143         struct ptlrpc_bulk_desc *desc;
144
145         ENTRY;
146         LASSERT(type == BULK_PUT_SINK || type == BULK_GET_SOURCE);
147         desc = ptlrpc_new_bulk(npages, max_brw, type, portal);
148         if (desc == NULL)
149                 RETURN(NULL);
150
151         desc->bd_import_generation = req->rq_import_generation;
152         desc->bd_import = class_import_get(imp);
153         desc->bd_req = req;
154
155         desc->bd_cbid.cbid_fn  = client_bulk_callback;
156         desc->bd_cbid.cbid_arg = desc;
157
158         /* This makes req own desc, and free it when she frees herself */
159         req->rq_bulk = desc;
160
161         return desc;
162 }
163 EXPORT_SYMBOL(ptlrpc_prep_bulk_imp);
164
165 /*
166  * Add a page \a page to the bulk descriptor \a desc.
167  * Data to transfer in the page starts at offset \a pageoffset and
168  * amount of data to transfer from the page is \a len
169  */
170 void __ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
171                              struct page *page, int pageoffset, int len, int pin)
172 {
173         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
174         LASSERT(page != NULL);
175         LASSERT(pageoffset >= 0);
176         LASSERT(len > 0);
177         LASSERT(pageoffset + len <= PAGE_CACHE_SIZE);
178
179         desc->bd_nob += len;
180
181         if (pin)
182                 page_cache_get(page);
183
184         ptlrpc_add_bulk_page(desc, page, pageoffset, len);
185 }
186 EXPORT_SYMBOL(__ptlrpc_prep_bulk_page);
187
188 /**
189  * Uninitialize and free bulk descriptor \a desc.
190  * Works on bulk descriptors both from server and client side.
191  */
192 void __ptlrpc_free_bulk(struct ptlrpc_bulk_desc *desc, int unpin)
193 {
194         int i;
195         ENTRY;
196
197         LASSERT(desc != NULL);
198         LASSERT(desc->bd_iov_count != LI_POISON); /* not freed already */
199         LASSERT(desc->bd_md_count == 0);         /* network hands off */
200         LASSERT((desc->bd_export != NULL) ^ (desc->bd_import != NULL));
201
202         sptlrpc_enc_pool_put_pages(desc);
203
204         if (desc->bd_export)
205                 class_export_put(desc->bd_export);
206         else
207                 class_import_put(desc->bd_import);
208
209         if (unpin) {
210                 for (i = 0; i < desc->bd_iov_count ; i++)
211                         page_cache_release(desc->bd_iov[i].kiov_page);
212         }
213
214         OBD_FREE(desc, offsetof(struct ptlrpc_bulk_desc,
215                                 bd_iov[desc->bd_max_iov]));
216         EXIT;
217 }
218 EXPORT_SYMBOL(__ptlrpc_free_bulk);
219
220 /**
221  * Set server timelimit for this req, i.e. how long are we willing to wait
222  * for reply before timing out this request.
223  */
224 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req)
225 {
226         __u32 serv_est;
227         int idx;
228         struct imp_at *at;
229
230         LASSERT(req->rq_import);
231
232         if (AT_OFF) {
233                 /* non-AT settings */
234                 /**
235                  * \a imp_server_timeout means this is reverse import and
236                  * we send (currently only) ASTs to the client and cannot afford
237                  * to wait too long for the reply, otherwise the other client
238                  * (because of which we are sending this request) would
239                  * timeout waiting for us
240                  */
241                 req->rq_timeout = req->rq_import->imp_server_timeout ?
242                                   obd_timeout / 2 : obd_timeout;
243         } else {
244                 at = &req->rq_import->imp_at;
245                 idx = import_at_get_index(req->rq_import,
246                                           req->rq_request_portal);
247                 serv_est = at_get(&at->iat_service_estimate[idx]);
248                 req->rq_timeout = at_est2timeout(serv_est);
249         }
250         /* We could get even fancier here, using history to predict increased
251            loading... */
252
253         /* Let the server know what this RPC timeout is by putting it in the
254            reqmsg*/
255         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
256 }
257 EXPORT_SYMBOL(ptlrpc_at_set_req_timeout);
258
259 /* Adjust max service estimate based on server value */
260 static void ptlrpc_at_adj_service(struct ptlrpc_request *req,
261                                   unsigned int serv_est)
262 {
263         int idx;
264         unsigned int oldse;
265         struct imp_at *at;
266
267         LASSERT(req->rq_import);
268         at = &req->rq_import->imp_at;
269
270         idx = import_at_get_index(req->rq_import, req->rq_request_portal);
271         /* max service estimates are tracked on the server side,
272            so just keep minimal history here */
273         oldse = at_measured(&at->iat_service_estimate[idx], serv_est);
274         if (oldse != 0)
275                 CDEBUG(D_ADAPTTO, "The RPC service estimate for %s ptl %d "
276                        "has changed from %d to %d\n",
277                        req->rq_import->imp_obd->obd_name,req->rq_request_portal,
278                        oldse, at_get(&at->iat_service_estimate[idx]));
279 }
280
281 /* Expected network latency per remote node (secs) */
282 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req)
283 {
284         return AT_OFF ? 0 : at_get(&req->rq_import->imp_at.iat_net_latency);
285 }
286
287 /* Adjust expected network latency */
288 static void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req,
289                                       unsigned int service_time)
290 {
291         unsigned int nl, oldnl;
292         struct imp_at *at;
293         time_t now = cfs_time_current_sec();
294
295         LASSERT(req->rq_import);
296         at = &req->rq_import->imp_at;
297
298         /* Network latency is total time less server processing time */
299         nl = max_t(int, now - req->rq_sent - service_time, 0) +1/*st rounding*/;
300         if (service_time > now - req->rq_sent + 3 /* bz16408 */)
301                 CWARN("Reported service time %u > total measured time "
302                       CFS_DURATION_T"\n", service_time,
303                       cfs_time_sub(now, req->rq_sent));
304
305         oldnl = at_measured(&at->iat_net_latency, nl);
306         if (oldnl != 0)
307                 CDEBUG(D_ADAPTTO, "The network latency for %s (nid %s) "
308                        "has changed from %d to %d\n",
309                        req->rq_import->imp_obd->obd_name,
310                        obd_uuid2str(
311                                &req->rq_import->imp_connection->c_remote_uuid),
312                        oldnl, at_get(&at->iat_net_latency));
313 }
314
315 static int unpack_reply(struct ptlrpc_request *req)
316 {
317         int rc;
318
319         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
320                 rc = ptlrpc_unpack_rep_msg(req, req->rq_replen);
321                 if (rc) {
322                         DEBUG_REQ(D_ERROR, req, "unpack_rep failed: %d", rc);
323                         return(-EPROTO);
324                 }
325         }
326
327         rc = lustre_unpack_rep_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
328         if (rc) {
329                 DEBUG_REQ(D_ERROR, req, "unpack ptlrpc body failed: %d", rc);
330                 return(-EPROTO);
331         }
332         return 0;
333 }
334
335 /**
336  * Handle an early reply message, called with the rq_lock held.
337  * If anything goes wrong just ignore it - same as if it never happened
338  */
339 static int ptlrpc_at_recv_early_reply(struct ptlrpc_request *req)
340 {
341         struct ptlrpc_request *early_req;
342         time_t                 olddl;
343         int                    rc;
344         ENTRY;
345
346         req->rq_early = 0;
347         spin_unlock(&req->rq_lock);
348
349         rc = sptlrpc_cli_unwrap_early_reply(req, &early_req);
350         if (rc) {
351                 spin_lock(&req->rq_lock);
352                 RETURN(rc);
353         }
354
355         rc = unpack_reply(early_req);
356         if (rc == 0) {
357                 /* Expecting to increase the service time estimate here */
358                 ptlrpc_at_adj_service(req,
359                         lustre_msg_get_timeout(early_req->rq_repmsg));
360                 ptlrpc_at_adj_net_latency(req,
361                         lustre_msg_get_service_time(early_req->rq_repmsg));
362         }
363
364         sptlrpc_cli_finish_early_reply(early_req);
365
366         if (rc != 0) {
367                 spin_lock(&req->rq_lock);
368                 RETURN(rc);
369         }
370
371         /* Adjust the local timeout for this req */
372         ptlrpc_at_set_req_timeout(req);
373
374         spin_lock(&req->rq_lock);
375         olddl = req->rq_deadline;
376         /* server assumes it now has rq_timeout from when it sent the
377          * early reply, so client should give it at least that long. */
378         req->rq_deadline = cfs_time_current_sec() + req->rq_timeout +
379                            ptlrpc_at_get_net_latency(req);
380
381         DEBUG_REQ(D_ADAPTTO, req,
382                   "Early reply #%d, new deadline in "CFS_DURATION_T"s "
383                   "("CFS_DURATION_T"s)", req->rq_early_count,
384                   cfs_time_sub(req->rq_deadline, cfs_time_current_sec()),
385                   cfs_time_sub(req->rq_deadline, olddl));
386
387         RETURN(rc);
388 }
389
390 struct kmem_cache *request_cache;
391
392 int ptlrpc_request_cache_init()
393 {
394         request_cache = kmem_cache_create("ptlrpc_cache",
395                                           sizeof(struct ptlrpc_request),
396                                           0, SLAB_HWCACHE_ALIGN, NULL);
397         return request_cache == NULL ? -ENOMEM : 0;
398 }
399
400 void ptlrpc_request_cache_fini()
401 {
402         kmem_cache_destroy(request_cache);
403 }
404
405 struct ptlrpc_request *ptlrpc_request_cache_alloc(int flags)
406 {
407         struct ptlrpc_request *req;
408
409         OBD_SLAB_ALLOC_PTR_GFP(req, request_cache, flags);
410         return req;
411 }
412
413 void ptlrpc_request_cache_free(struct ptlrpc_request *req)
414 {
415         OBD_SLAB_FREE_PTR(req, request_cache);
416 }
417
418 /**
419  * Wind down request pool \a pool.
420  * Frees all requests from the pool too
421  */
422 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool)
423 {
424         cfs_list_t *l, *tmp;
425         struct ptlrpc_request *req;
426
427         LASSERT(pool != NULL);
428
429         spin_lock(&pool->prp_lock);
430         cfs_list_for_each_safe(l, tmp, &pool->prp_req_list) {
431                 req = cfs_list_entry(l, struct ptlrpc_request, rq_list);
432                 cfs_list_del(&req->rq_list);
433                 LASSERT(req->rq_reqbuf);
434                 LASSERT(req->rq_reqbuf_len == pool->prp_rq_size);
435                 OBD_FREE_LARGE(req->rq_reqbuf, pool->prp_rq_size);
436                 ptlrpc_request_cache_free(req);
437         }
438         spin_unlock(&pool->prp_lock);
439         OBD_FREE(pool, sizeof(*pool));
440 }
441 EXPORT_SYMBOL(ptlrpc_free_rq_pool);
442
443 /**
444  * Allocates, initializes and adds \a num_rq requests to the pool \a pool
445  */
446 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq)
447 {
448         int i;
449         int size = 1;
450
451         while (size < pool->prp_rq_size)
452                 size <<= 1;
453
454         LASSERTF(cfs_list_empty(&pool->prp_req_list) ||
455                  size == pool->prp_rq_size,
456                  "Trying to change pool size with nonempty pool "
457                  "from %d to %d bytes\n", pool->prp_rq_size, size);
458
459         spin_lock(&pool->prp_lock);
460         pool->prp_rq_size = size;
461         for (i = 0; i < num_rq; i++) {
462                 struct ptlrpc_request *req;
463                 struct lustre_msg *msg;
464
465                 spin_unlock(&pool->prp_lock);
466                 req = ptlrpc_request_cache_alloc(__GFP_IO);
467                 if (!req)
468                         return;
469                 OBD_ALLOC_LARGE(msg, size);
470                 if (!msg) {
471                         ptlrpc_request_cache_free(req);
472                         return;
473                 }
474                 req->rq_reqbuf = msg;
475                 req->rq_reqbuf_len = size;
476                 req->rq_pool = pool;
477                 spin_lock(&pool->prp_lock);
478                 cfs_list_add_tail(&req->rq_list, &pool->prp_req_list);
479         }
480         spin_unlock(&pool->prp_lock);
481         return;
482 }
483 EXPORT_SYMBOL(ptlrpc_add_rqs_to_pool);
484
485 /**
486  * Create and initialize new request pool with given attributes:
487  * \a num_rq - initial number of requests to create for the pool
488  * \a msgsize - maximum message size possible for requests in thid pool
489  * \a populate_pool - function to be called when more requests need to be added
490  *                    to the pool
491  * Returns pointer to newly created pool or NULL on error.
492  */
493 struct ptlrpc_request_pool *
494 ptlrpc_init_rq_pool(int num_rq, int msgsize,
495                     void (*populate_pool)(struct ptlrpc_request_pool *, int))
496 {
497         struct ptlrpc_request_pool *pool;
498
499         OBD_ALLOC(pool, sizeof (struct ptlrpc_request_pool));
500         if (!pool)
501                 return NULL;
502
503         /* Request next power of two for the allocation, because internally
504            kernel would do exactly this */
505
506         spin_lock_init(&pool->prp_lock);
507         CFS_INIT_LIST_HEAD(&pool->prp_req_list);
508         pool->prp_rq_size = msgsize + SPTLRPC_MAX_PAYLOAD;
509         pool->prp_populate = populate_pool;
510
511         populate_pool(pool, num_rq);
512
513         if (cfs_list_empty(&pool->prp_req_list)) {
514                 /* have not allocated a single request for the pool */
515                 OBD_FREE(pool, sizeof (struct ptlrpc_request_pool));
516                 pool = NULL;
517         }
518         return pool;
519 }
520 EXPORT_SYMBOL(ptlrpc_init_rq_pool);
521
522 /**
523  * Fetches one request from pool \a pool
524  */
525 static struct ptlrpc_request *
526 ptlrpc_prep_req_from_pool(struct ptlrpc_request_pool *pool)
527 {
528         struct ptlrpc_request *request;
529         struct lustre_msg *reqbuf;
530
531         if (!pool)
532                 return NULL;
533
534         spin_lock(&pool->prp_lock);
535
536         /* See if we have anything in a pool, and bail out if nothing,
537          * in writeout path, where this matters, this is safe to do, because
538          * nothing is lost in this case, and when some in-flight requests
539          * complete, this code will be called again. */
540         if (unlikely(cfs_list_empty(&pool->prp_req_list))) {
541                 spin_unlock(&pool->prp_lock);
542                 return NULL;
543         }
544
545         request = cfs_list_entry(pool->prp_req_list.next, struct ptlrpc_request,
546                                  rq_list);
547         cfs_list_del_init(&request->rq_list);
548         spin_unlock(&pool->prp_lock);
549
550         LASSERT(request->rq_reqbuf);
551         LASSERT(request->rq_pool);
552
553         reqbuf = request->rq_reqbuf;
554         memset(request, 0, sizeof(*request));
555         request->rq_reqbuf = reqbuf;
556         request->rq_reqbuf_len = pool->prp_rq_size;
557         request->rq_pool = pool;
558
559         return request;
560 }
561
562 /**
563  * Returns freed \a request to pool.
564  */
565 static void __ptlrpc_free_req_to_pool(struct ptlrpc_request *request)
566 {
567         struct ptlrpc_request_pool *pool = request->rq_pool;
568
569         spin_lock(&pool->prp_lock);
570         LASSERT(cfs_list_empty(&request->rq_list));
571         LASSERT(!request->rq_receiving_reply);
572         cfs_list_add_tail(&request->rq_list, &pool->prp_req_list);
573         spin_unlock(&pool->prp_lock);
574 }
575
576 static int __ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
577                                       __u32 version, int opcode,
578                                       int count, __u32 *lengths, char **bufs,
579                                       struct ptlrpc_cli_ctx *ctx)
580 {
581         struct obd_import  *imp = request->rq_import;
582         int                 rc;
583         ENTRY;
584
585         if (unlikely(ctx))
586                 request->rq_cli_ctx = sptlrpc_cli_ctx_get(ctx);
587         else {
588                 rc = sptlrpc_req_get_ctx(request);
589                 if (rc)
590                         GOTO(out_free, rc);
591         }
592
593         sptlrpc_req_set_flavor(request, opcode);
594
595         rc = lustre_pack_request(request, imp->imp_msg_magic, count,
596                                  lengths, bufs);
597         if (rc) {
598                 LASSERT(!request->rq_pool);
599                 GOTO(out_ctx, rc);
600         }
601
602         lustre_msg_add_version(request->rq_reqmsg, version);
603         request->rq_send_state = LUSTRE_IMP_FULL;
604         request->rq_type = PTL_RPC_MSG_REQUEST;
605         request->rq_export = NULL;
606
607         request->rq_req_cbid.cbid_fn  = request_out_callback;
608         request->rq_req_cbid.cbid_arg = request;
609
610         request->rq_reply_cbid.cbid_fn  = reply_in_callback;
611         request->rq_reply_cbid.cbid_arg = request;
612
613         request->rq_reply_deadline = 0;
614         request->rq_phase = RQ_PHASE_NEW;
615         request->rq_next_phase = RQ_PHASE_UNDEFINED;
616
617         request->rq_request_portal = imp->imp_client->cli_request_portal;
618         request->rq_reply_portal = imp->imp_client->cli_reply_portal;
619
620         ptlrpc_at_set_req_timeout(request);
621
622         spin_lock_init(&request->rq_lock);
623         CFS_INIT_LIST_HEAD(&request->rq_list);
624         CFS_INIT_LIST_HEAD(&request->rq_timed_list);
625         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
626         CFS_INIT_LIST_HEAD(&request->rq_ctx_chain);
627         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
628         CFS_INIT_LIST_HEAD(&request->rq_history_list);
629         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
630         init_waitqueue_head(&request->rq_reply_waitq);
631         init_waitqueue_head(&request->rq_set_waitq);
632         request->rq_xid = ptlrpc_next_xid();
633         cfs_atomic_set(&request->rq_refcount, 1);
634
635         lustre_msg_set_opc(request->rq_reqmsg, opcode);
636
637         RETURN(0);
638 out_ctx:
639         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
640 out_free:
641         class_import_put(imp);
642         return rc;
643 }
644
645 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
646                              __u32 version, int opcode, char **bufs,
647                              struct ptlrpc_cli_ctx *ctx)
648 {
649         int count;
650
651         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
652         return __ptlrpc_request_bufs_pack(request, version, opcode, count,
653                                           request->rq_pill.rc_area[RCL_CLIENT],
654                                           bufs, ctx);
655 }
656 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
657
658 /**
659  * Pack request buffers for network transfer, performing necessary encryption
660  * steps if necessary.
661  */
662 int ptlrpc_request_pack(struct ptlrpc_request *request,
663                         __u32 version, int opcode)
664 {
665         int rc;
666         rc = ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
667         if (rc)
668                 return rc;
669
670         /* For some old 1.8 clients (< 1.8.7), they will LASSERT the size of
671          * ptlrpc_body sent from server equal to local ptlrpc_body size, so we
672          * have to send old ptlrpc_body to keep interoprability with these
673          * clients.
674          *
675          * Only three kinds of server->client RPCs so far:
676          *  - LDLM_BL_CALLBACK
677          *  - LDLM_CP_CALLBACK
678          *  - LDLM_GL_CALLBACK
679          *
680          * XXX This should be removed whenever we drop the interoprability with
681          *     the these old clients.
682          */
683         if (opcode == LDLM_BL_CALLBACK || opcode == LDLM_CP_CALLBACK ||
684             opcode == LDLM_GL_CALLBACK)
685                 req_capsule_shrink(&request->rq_pill, &RMF_PTLRPC_BODY,
686                                    sizeof(struct ptlrpc_body_v2), RCL_CLIENT);
687
688         return rc;
689 }
690 EXPORT_SYMBOL(ptlrpc_request_pack);
691
692 /**
693  * Helper function to allocate new request on import \a imp
694  * and possibly using existing request from pool \a pool if provided.
695  * Returns allocated request structure with import field filled or
696  * NULL on error.
697  */
698 static inline
699 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
700                                               struct ptlrpc_request_pool *pool)
701 {
702         struct ptlrpc_request *request = NULL;
703
704         if (pool)
705                 request = ptlrpc_prep_req_from_pool(pool);
706
707         if (!request)
708                 request = ptlrpc_request_cache_alloc(__GFP_IO);
709
710         if (request) {
711                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
712                 LASSERT(imp != LP_POISON);
713                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p",
714                         imp->imp_client);
715                 LASSERT(imp->imp_client != LP_POISON);
716
717                 request->rq_import = class_import_get(imp);
718         } else {
719                 CERROR("request allocation out of memory\n");
720         }
721
722         return request;
723 }
724
725 /**
726  * Helper function for creating a request.
727  * Calls __ptlrpc_request_alloc to allocate new request sturcture and inits
728  * buffer structures according to capsule template \a format.
729  * Returns allocated request structure pointer or NULL on error.
730  */
731 static struct ptlrpc_request *
732 ptlrpc_request_alloc_internal(struct obd_import *imp,
733                               struct ptlrpc_request_pool * pool,
734                               const struct req_format *format)
735 {
736         struct ptlrpc_request *request;
737
738         request = __ptlrpc_request_alloc(imp, pool);
739         if (request == NULL)
740                 return NULL;
741
742         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
743         req_capsule_set(&request->rq_pill, format);
744         return request;
745 }
746
747 /**
748  * Allocate new request structure for import \a imp and initialize its
749  * buffer structure according to capsule template \a format.
750  */
751 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
752                                             const struct req_format *format)
753 {
754         return ptlrpc_request_alloc_internal(imp, NULL, format);
755 }
756 EXPORT_SYMBOL(ptlrpc_request_alloc);
757
758 /**
759  * Allocate new request structure for import \a imp from pool \a pool and
760  * initialize its buffer structure according to capsule template \a format.
761  */
762 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
763                                             struct ptlrpc_request_pool * pool,
764                                             const struct req_format *format)
765 {
766         return ptlrpc_request_alloc_internal(imp, pool, format);
767 }
768 EXPORT_SYMBOL(ptlrpc_request_alloc_pool);
769
770 /**
771  * For requests not from pool, free memory of the request structure.
772  * For requests obtained from a pool earlier, return request back to pool.
773  */
774 void ptlrpc_request_free(struct ptlrpc_request *request)
775 {
776         if (request->rq_pool)
777                 __ptlrpc_free_req_to_pool(request);
778         else
779                 ptlrpc_request_cache_free(request);
780 }
781 EXPORT_SYMBOL(ptlrpc_request_free);
782
783 /**
784  * Allocate new request for operatione \a opcode and immediatelly pack it for
785  * network transfer.
786  * Only used for simple requests like OBD_PING where the only important
787  * part of the request is operation itself.
788  * Returns allocated request or NULL on error.
789  */
790 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
791                                                 const struct req_format *format,
792                                                 __u32 version, int opcode)
793 {
794         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
795         int                    rc;
796
797         if (req) {
798                 rc = ptlrpc_request_pack(req, version, opcode);
799                 if (rc) {
800                         ptlrpc_request_free(req);
801                         req = NULL;
802                 }
803         }
804         return req;
805 }
806 EXPORT_SYMBOL(ptlrpc_request_alloc_pack);
807
808 /**
809  * Prepare request (fetched from pool \a poolif not NULL) on import \a imp
810  * for operation \a opcode. Request would contain \a count buffers.
811  * Sizes of buffers are described in array \a lengths and buffers themselves
812  * are provided by a pointer \a bufs.
813  * Returns prepared request structure pointer or NULL on error.
814  */
815 struct ptlrpc_request *
816 ptlrpc_prep_req_pool(struct obd_import *imp,
817                      __u32 version, int opcode,
818                      int count, __u32 *lengths, char **bufs,
819                      struct ptlrpc_request_pool *pool)
820 {
821         struct ptlrpc_request *request;
822         int                    rc;
823
824         request = __ptlrpc_request_alloc(imp, pool);
825         if (!request)
826                 return NULL;
827
828         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
829                                         lengths, bufs, NULL);
830         if (rc) {
831                 ptlrpc_request_free(request);
832                 request = NULL;
833         }
834         return request;
835 }
836 EXPORT_SYMBOL(ptlrpc_prep_req_pool);
837
838 /**
839  * Same as ptlrpc_prep_req_pool, but without pool
840  */
841 struct ptlrpc_request *
842 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
843                 __u32 *lengths, char **bufs)
844 {
845         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
846                                     NULL);
847 }
848 EXPORT_SYMBOL(ptlrpc_prep_req);
849
850 /**
851  * Allocate and initialize new request set structure.
852  * Returns a pointer to the newly allocated set structure or NULL on error.
853  */
854 struct ptlrpc_request_set *ptlrpc_prep_set(void)
855 {
856         struct ptlrpc_request_set *set;
857
858         ENTRY;
859         OBD_ALLOC(set, sizeof *set);
860         if (!set)
861                 RETURN(NULL);
862         cfs_atomic_set(&set->set_refcount, 1);
863         CFS_INIT_LIST_HEAD(&set->set_requests);
864         init_waitqueue_head(&set->set_waitq);
865         cfs_atomic_set(&set->set_new_count, 0);
866         cfs_atomic_set(&set->set_remaining, 0);
867         spin_lock_init(&set->set_new_req_lock);
868         CFS_INIT_LIST_HEAD(&set->set_new_requests);
869         CFS_INIT_LIST_HEAD(&set->set_cblist);
870         set->set_max_inflight = UINT_MAX;
871         set->set_producer     = NULL;
872         set->set_producer_arg = NULL;
873         set->set_rc           = 0;
874
875         RETURN(set);
876 }
877 EXPORT_SYMBOL(ptlrpc_prep_set);
878
879 /**
880  * Allocate and initialize new request set structure with flow control
881  * extension. This extension allows to control the number of requests in-flight
882  * for the whole set. A callback function to generate requests must be provided
883  * and the request set will keep the number of requests sent over the wire to
884  * @max_inflight.
885  * Returns a pointer to the newly allocated set structure or NULL on error.
886  */
887 struct ptlrpc_request_set *ptlrpc_prep_fcset(int max, set_producer_func func,
888                                              void *arg)
889
890 {
891         struct ptlrpc_request_set *set;
892
893         set = ptlrpc_prep_set();
894         if (!set)
895                 RETURN(NULL);
896
897         set->set_max_inflight  = max;
898         set->set_producer      = func;
899         set->set_producer_arg  = arg;
900
901         RETURN(set);
902 }
903 EXPORT_SYMBOL(ptlrpc_prep_fcset);
904
905 /**
906  * Wind down and free request set structure previously allocated with
907  * ptlrpc_prep_set.
908  * Ensures that all requests on the set have completed and removes
909  * all requests from the request list in a set.
910  * If any unsent request happen to be on the list, pretends that they got
911  * an error in flight and calls their completion handler.
912  */
913 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
914 {
915         cfs_list_t       *tmp;
916         cfs_list_t       *next;
917         int               expected_phase;
918         int               n = 0;
919         ENTRY;
920
921         /* Requests on the set should either all be completed, or all be new */
922         expected_phase = (cfs_atomic_read(&set->set_remaining) == 0) ?
923                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
924         cfs_list_for_each (tmp, &set->set_requests) {
925                 struct ptlrpc_request *req =
926                         cfs_list_entry(tmp, struct ptlrpc_request,
927                                        rq_set_chain);
928
929                 LASSERT(req->rq_phase == expected_phase);
930                 n++;
931         }
932
933         LASSERTF(cfs_atomic_read(&set->set_remaining) == 0 || 
934                  cfs_atomic_read(&set->set_remaining) == n, "%d / %d\n",
935                  cfs_atomic_read(&set->set_remaining), n);
936
937         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
938                 struct ptlrpc_request *req =
939                         cfs_list_entry(tmp, struct ptlrpc_request,
940                                        rq_set_chain);
941                 cfs_list_del_init(&req->rq_set_chain);
942
943                 LASSERT(req->rq_phase == expected_phase);
944
945                 if (req->rq_phase == RQ_PHASE_NEW) {
946                         ptlrpc_req_interpret(NULL, req, -EBADR);
947                         cfs_atomic_dec(&set->set_remaining);
948                 }
949
950                 spin_lock(&req->rq_lock);
951                 req->rq_set = NULL;
952                 req->rq_invalid_rqset = 0;
953                 spin_unlock(&req->rq_lock);
954
955                 ptlrpc_req_finished (req);
956         }
957
958         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
959
960         ptlrpc_reqset_put(set);
961         EXIT;
962 }
963 EXPORT_SYMBOL(ptlrpc_set_destroy);
964
965 /**
966  * Add a callback function \a fn to the set.
967  * This function would be called when all requests on this set are completed.
968  * The function will be passed \a data argument.
969  */
970 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
971                       set_interpreter_func fn, void *data)
972 {
973         struct ptlrpc_set_cbdata *cbdata;
974
975         OBD_ALLOC_PTR(cbdata);
976         if (cbdata == NULL)
977                 RETURN(-ENOMEM);
978
979         cbdata->psc_interpret = fn;
980         cbdata->psc_data = data;
981         cfs_list_add_tail(&cbdata->psc_item, &set->set_cblist);
982
983         RETURN(0);
984 }
985 EXPORT_SYMBOL(ptlrpc_set_add_cb);
986
987 /**
988  * Add a new request to the general purpose request set.
989  * Assumes request reference from the caller.
990  */
991 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
992                         struct ptlrpc_request *req)
993 {
994         LASSERT(cfs_list_empty(&req->rq_set_chain));
995
996         /* The set takes over the caller's request reference */
997         cfs_list_add_tail(&req->rq_set_chain, &set->set_requests);
998         req->rq_set = set;
999         cfs_atomic_inc(&set->set_remaining);
1000         req->rq_queued_time = cfs_time_current();
1001
1002         if (req->rq_reqmsg != NULL)
1003                 lustre_msg_set_jobid(req->rq_reqmsg, NULL);
1004
1005         if (set->set_producer != NULL)
1006                 /* If the request set has a producer callback, the RPC must be
1007                  * sent straight away */
1008                 ptlrpc_send_new_req(req);
1009 }
1010 EXPORT_SYMBOL(ptlrpc_set_add_req);
1011
1012 /**
1013  * Add a request to a request with dedicated server thread
1014  * and wake the thread to make any necessary processing.
1015  * Currently only used for ptlrpcd.
1016  */
1017 void ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
1018                            struct ptlrpc_request *req)
1019 {
1020         struct ptlrpc_request_set *set = pc->pc_set;
1021         int count, i;
1022
1023         LASSERT(req->rq_set == NULL);
1024         LASSERT(test_bit(LIOD_STOP, &pc->pc_flags) == 0);
1025
1026         spin_lock(&set->set_new_req_lock);
1027         /*
1028          * The set takes over the caller's request reference.
1029          */
1030         req->rq_set = set;
1031         req->rq_queued_time = cfs_time_current();
1032         cfs_list_add_tail(&req->rq_set_chain, &set->set_new_requests);
1033         count = cfs_atomic_inc_return(&set->set_new_count);
1034         spin_unlock(&set->set_new_req_lock);
1035
1036         /* Only need to call wakeup once for the first entry. */
1037         if (count == 1) {
1038                 wake_up(&set->set_waitq);
1039
1040                 /* XXX: It maybe unnecessary to wakeup all the partners. But to
1041                  *      guarantee the async RPC can be processed ASAP, we have
1042                  *      no other better choice. It maybe fixed in future. */
1043                 for (i = 0; i < pc->pc_npartners; i++)
1044                         wake_up(&pc->pc_partners[i]->pc_set->set_waitq);
1045         }
1046 }
1047 EXPORT_SYMBOL(ptlrpc_set_add_new_req);
1048
1049 /**
1050  * Based on the current state of the import, determine if the request
1051  * can be sent, is an error, or should be delayed.
1052  *
1053  * Returns true if this request should be delayed. If false, and
1054  * *status is set, then the request can not be sent and *status is the
1055  * error code.  If false and status is 0, then request can be sent.
1056  *
1057  * The imp->imp_lock must be held.
1058  */
1059 static int ptlrpc_import_delay_req(struct obd_import *imp,
1060                                    struct ptlrpc_request *req, int *status)
1061 {
1062         int delay = 0;
1063         ENTRY;
1064
1065         LASSERT (status != NULL);
1066         *status = 0;
1067
1068         if (req->rq_ctx_init || req->rq_ctx_fini) {
1069                 /* always allow ctx init/fini rpc go through */
1070         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
1071                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
1072                 *status = -EIO;
1073         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
1074                 /* pings may safely race with umount */
1075                 DEBUG_REQ(lustre_msg_get_opc(req->rq_reqmsg) == OBD_PING ?
1076                           D_HA : D_ERROR, req, "IMP_CLOSED ");
1077                 *status = -EIO;
1078         } else if (ptlrpc_send_limit_expired(req)) {
1079                 /* probably doesn't need to be a D_ERROR after initial testing */
1080                 DEBUG_REQ(D_ERROR, req, "send limit expired ");
1081                 *status = -EIO;
1082         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
1083                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
1084                 /* allow CONNECT even if import is invalid */ ;
1085                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
1086                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
1087                         *status = -EIO;
1088                 }
1089         } else if (imp->imp_invalid || imp->imp_obd->obd_no_recov) {
1090                 if (!imp->imp_deactive)
1091                         DEBUG_REQ(D_NET, req, "IMP_INVALID");
1092                 *status = -ESHUTDOWN; /* bz 12940 */
1093         } else if (req->rq_import_generation != imp->imp_generation) {
1094                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
1095                 *status = -EIO;
1096         } else if (req->rq_send_state != imp->imp_state) {
1097                 /* invalidate in progress - any requests should be drop */
1098                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
1099                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
1100                         *status = -EIO;
1101                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
1102                         *status = -EWOULDBLOCK;
1103                 } else if (req->rq_allow_replay &&
1104                           (imp->imp_state == LUSTRE_IMP_REPLAY ||
1105                            imp->imp_state == LUSTRE_IMP_REPLAY_LOCKS ||
1106                            imp->imp_state == LUSTRE_IMP_REPLAY_WAIT ||
1107                            imp->imp_state == LUSTRE_IMP_RECOVER)) {
1108                         DEBUG_REQ(D_HA, req, "allow during recovery.\n");
1109                 } else {
1110                         delay = 1;
1111                 }
1112         }
1113
1114         RETURN(delay);
1115 }
1116
1117 /**
1118  * Decide if the eror message regarding provided request \a req
1119  * should be printed to the console or not.
1120  * Makes it's decision on request status and other properties.
1121  * Returns 1 to print error on the system console or 0 if not.
1122  */
1123 static int ptlrpc_console_allow(struct ptlrpc_request *req)
1124 {
1125         __u32 opc;
1126         int err;
1127
1128         LASSERT(req->rq_reqmsg != NULL);
1129         opc = lustre_msg_get_opc(req->rq_reqmsg);
1130
1131         /* Suppress particular reconnect errors which are to be expected.  No
1132          * errors are suppressed for the initial connection on an import */
1133         if ((lustre_handle_is_used(&req->rq_import->imp_remote_handle)) &&
1134             (opc == OST_CONNECT || opc == MDS_CONNECT || opc == MGS_CONNECT)) {
1135
1136                 /* Suppress timed out reconnect requests */
1137                 if (req->rq_timedout)
1138                         return 0;
1139
1140                 /* Suppress unavailable/again reconnect requests */
1141                 err = lustre_msg_get_status(req->rq_repmsg);
1142                 if (err == -ENODEV || err == -EAGAIN)
1143                         return 0;
1144         }
1145
1146         return 1;
1147 }
1148
1149 /**
1150  * Check request processing status.
1151  * Returns the status.
1152  */
1153 static int ptlrpc_check_status(struct ptlrpc_request *req)
1154 {
1155         int err;
1156         ENTRY;
1157
1158         err = lustre_msg_get_status(req->rq_repmsg);
1159         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
1160                 struct obd_import *imp = req->rq_import;
1161                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
1162                 if (ptlrpc_console_allow(req))
1163                         LCONSOLE_ERROR_MSG(0x011, "%s: Communicating with %s,"
1164                                            " operation %s failed with %d.\n",
1165                                            imp->imp_obd->obd_name,
1166                                            libcfs_nid2str(
1167                                            imp->imp_connection->c_peer.nid),
1168                                            ll_opcode2str(opc), err);
1169                 RETURN(err < 0 ? err : -EINVAL);
1170         }
1171
1172         if (err < 0) {
1173                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1174         } else if (err > 0) {
1175                 /* XXX: translate this error from net to host */
1176                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1177         }
1178
1179         RETURN(err);
1180 }
1181
1182 /**
1183  * save pre-versions of objects into request for replay.
1184  * Versions are obtained from server reply.
1185  * used for VBR.
1186  */
1187 static void ptlrpc_save_versions(struct ptlrpc_request *req)
1188 {
1189         struct lustre_msg *repmsg = req->rq_repmsg;
1190         struct lustre_msg *reqmsg = req->rq_reqmsg;
1191         __u64 *versions = lustre_msg_get_versions(repmsg);
1192         ENTRY;
1193
1194         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1195                 return;
1196
1197         LASSERT(versions);
1198         lustre_msg_set_versions(reqmsg, versions);
1199         CDEBUG(D_INFO, "Client save versions ["LPX64"/"LPX64"]\n",
1200                versions[0], versions[1]);
1201
1202         EXIT;
1203 }
1204
1205 /**
1206  * Callback function called when client receives RPC reply for \a req.
1207  * Returns 0 on success or error code.
1208  * The return alue would be assigned to req->rq_status by the caller
1209  * as request processing status.
1210  * This function also decides if the request needs to be saved for later replay.
1211  */
1212 static int after_reply(struct ptlrpc_request *req)
1213 {
1214         struct obd_import *imp = req->rq_import;
1215         struct obd_device *obd = req->rq_import->imp_obd;
1216         int rc;
1217         struct timeval work_start;
1218         long timediff;
1219         ENTRY;
1220
1221         LASSERT(obd != NULL);
1222         /* repbuf must be unlinked */
1223         LASSERT(!req->rq_receiving_reply && !req->rq_must_unlink);
1224
1225         if (req->rq_reply_truncate) {
1226                 if (ptlrpc_no_resend(req)) {
1227                         DEBUG_REQ(D_ERROR, req, "reply buffer overflow,"
1228                                   " expected: %d, actual size: %d",
1229                                   req->rq_nob_received, req->rq_repbuf_len);
1230                         RETURN(-EOVERFLOW);
1231                 }
1232
1233                 sptlrpc_cli_free_repbuf(req);
1234                 /* Pass the required reply buffer size (include
1235                  * space for early reply).
1236                  * NB: no need to roundup because alloc_repbuf
1237                  * will roundup it */
1238                 req->rq_replen       = req->rq_nob_received;
1239                 req->rq_nob_received = 0;
1240                 spin_lock(&req->rq_lock);
1241                 req->rq_resend       = 1;
1242                 spin_unlock(&req->rq_lock);
1243                 RETURN(0);
1244         }
1245
1246         /*
1247          * NB Until this point, the whole of the incoming message,
1248          * including buflens, status etc is in the sender's byte order.
1249          */
1250         rc = sptlrpc_cli_unwrap_reply(req);
1251         if (rc) {
1252                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1253                 RETURN(rc);
1254         }
1255
1256         /*
1257          * Security layer unwrap might ask resend this request.
1258          */
1259         if (req->rq_resend)
1260                 RETURN(0);
1261
1262         rc = unpack_reply(req);
1263         if (rc)
1264                 RETURN(rc);
1265
1266         /* retry indefinitely on EINPROGRESS */
1267         if (lustre_msg_get_status(req->rq_repmsg) == -EINPROGRESS &&
1268             ptlrpc_no_resend(req) == 0 && !req->rq_no_retry_einprogress) {
1269                 time_t  now = cfs_time_current_sec();
1270
1271                 DEBUG_REQ(D_RPCTRACE, req, "Resending request on EINPROGRESS");
1272                 req->rq_resend = 1;
1273                 req->rq_nr_resend++;
1274
1275                 /* allocate new xid to avoid reply reconstruction */
1276                 if (!req->rq_bulk) {
1277                         /* new xid is already allocated for bulk in
1278                          * ptlrpc_check_set() */
1279                         req->rq_xid = ptlrpc_next_xid();
1280                         DEBUG_REQ(D_RPCTRACE, req, "Allocating new xid for "
1281                                   "resend on EINPROGRESS");
1282                 }
1283
1284                 /* Readjust the timeout for current conditions */
1285                 ptlrpc_at_set_req_timeout(req);
1286                 /* delay resend to give a chance to the server to get ready.
1287                  * The delay is increased by 1s on every resend and is capped to
1288                  * the current request timeout (i.e. obd_timeout if AT is off,
1289                  * or AT service time x 125% + 5s, see at_est2timeout) */
1290                 if (req->rq_nr_resend > req->rq_timeout)
1291                         req->rq_sent = now + req->rq_timeout;
1292                 else
1293                         req->rq_sent = now + req->rq_nr_resend;
1294
1295                 RETURN(0);
1296         }
1297
1298         do_gettimeofday(&work_start);
1299         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
1300         if (obd->obd_svc_stats != NULL) {
1301                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1302                                     timediff);
1303                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1304         }
1305
1306         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1307             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1308                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1309                           lustre_msg_get_type(req->rq_repmsg));
1310                 RETURN(-EPROTO);
1311         }
1312
1313         if (lustre_msg_get_opc(req->rq_reqmsg) != OBD_PING)
1314                 CFS_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, cfs_fail_val);
1315         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1316         ptlrpc_at_adj_net_latency(req,
1317                                   lustre_msg_get_service_time(req->rq_repmsg));
1318
1319         rc = ptlrpc_check_status(req);
1320         imp->imp_connect_error = rc;
1321
1322         if (rc) {
1323                 /*
1324                  * Either we've been evicted, or the server has failed for
1325                  * some reason. Try to reconnect, and if that fails, punt to
1326                  * the upcall.
1327                  */
1328                 if (ll_rpc_recoverable_error(rc)) {
1329                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1330                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1331                                 RETURN(rc);
1332                         }
1333                         ptlrpc_request_handle_notconn(req);
1334                         RETURN(rc);
1335                 }
1336         } else {
1337                 /*
1338                  * Let's look if server sent slv. Do it only for RPC with
1339                  * rc == 0.
1340                  */
1341                 ldlm_cli_update_pool(req);
1342         }
1343
1344         /*
1345          * Store transno in reqmsg for replay.
1346          */
1347         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1348                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1349                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1350         }
1351
1352         if (imp->imp_replayable) {
1353                 spin_lock(&imp->imp_lock);
1354                 /*
1355                  * No point in adding already-committed requests to the replay
1356                  * list, we will just remove them immediately. b=9829
1357                  */
1358                 if (req->rq_transno != 0 &&
1359                     (req->rq_transno >
1360                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1361                      req->rq_replay)) {
1362                         /** version recovery */
1363                         ptlrpc_save_versions(req);
1364                         ptlrpc_retain_replayable_request(req, imp);
1365                 } else if (req->rq_commit_cb != NULL) {
1366                         spin_unlock(&imp->imp_lock);
1367                         req->rq_commit_cb(req);
1368                         spin_lock(&imp->imp_lock);
1369                 }
1370
1371                 /*
1372                  * Replay-enabled imports return commit-status information.
1373                  */
1374                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1375                         imp->imp_peer_committed_transno =
1376                                 lustre_msg_get_last_committed(req->rq_repmsg);
1377                 }
1378
1379                 ptlrpc_free_committed(imp);
1380
1381                 if (!cfs_list_empty(&imp->imp_replay_list)) {
1382                         struct ptlrpc_request *last;
1383
1384                         last = cfs_list_entry(imp->imp_replay_list.prev,
1385                                               struct ptlrpc_request,
1386                                               rq_replay_list);
1387                         /*
1388                          * Requests with rq_replay stay on the list even if no
1389                          * commit is expected.
1390                          */
1391                         if (last->rq_transno > imp->imp_peer_committed_transno)
1392                                 ptlrpc_pinger_commit_expected(imp);
1393                 }
1394
1395                 spin_unlock(&imp->imp_lock);
1396         }
1397
1398         RETURN(rc);
1399 }
1400
1401 /**
1402  * Helper function to send request \a req over the network for the first time
1403  * Also adjusts request phase.
1404  * Returns 0 on success or error code.
1405  */
1406 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1407 {
1408         struct obd_import     *imp = req->rq_import;
1409         int rc;
1410         ENTRY;
1411
1412         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1413         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()) &&
1414             (!req->rq_generation_set ||
1415              req->rq_import_generation == imp->imp_generation))
1416                 RETURN (0);
1417
1418         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1419
1420         spin_lock(&imp->imp_lock);
1421
1422         if (!req->rq_generation_set)
1423                 req->rq_import_generation = imp->imp_generation;
1424
1425         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1426                 spin_lock(&req->rq_lock);
1427                 req->rq_waiting = 1;
1428                 spin_unlock(&req->rq_lock);
1429
1430                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1431                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1432                           ptlrpc_import_state_name(req->rq_send_state),
1433                           ptlrpc_import_state_name(imp->imp_state));
1434                 LASSERT(cfs_list_empty(&req->rq_list));
1435                 cfs_list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1436                 cfs_atomic_inc(&req->rq_import->imp_inflight);
1437                 spin_unlock(&imp->imp_lock);
1438                 RETURN(0);
1439         }
1440
1441         if (rc != 0) {
1442                 spin_unlock(&imp->imp_lock);
1443                 req->rq_status = rc;
1444                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1445                 RETURN(rc);
1446         }
1447
1448         LASSERT(cfs_list_empty(&req->rq_list));
1449         cfs_list_add_tail(&req->rq_list, &imp->imp_sending_list);
1450         cfs_atomic_inc(&req->rq_import->imp_inflight);
1451         spin_unlock(&imp->imp_lock);
1452
1453         lustre_msg_set_status(req->rq_reqmsg, current_pid());
1454
1455         rc = sptlrpc_req_refresh_ctx(req, -1);
1456         if (rc) {
1457                 if (req->rq_err) {
1458                         req->rq_status = rc;
1459                         RETURN(1);
1460                 } else {
1461                         spin_lock(&req->rq_lock);
1462                         req->rq_wait_ctx = 1;
1463                         spin_unlock(&req->rq_lock);
1464                         RETURN(0);
1465                 }
1466         }
1467
1468         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1469                " %s:%s:%d:"LPU64":%s:%d\n", current_comm(),
1470                imp->imp_obd->obd_uuid.uuid,
1471                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1472                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1473                lustre_msg_get_opc(req->rq_reqmsg));
1474
1475         rc = ptl_send_rpc(req, 0);
1476         if (rc) {
1477                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1478                 spin_lock(&req->rq_lock);
1479                 req->rq_net_err = 1;
1480                 spin_unlock(&req->rq_lock);
1481                 RETURN(rc);
1482         }
1483         RETURN(0);
1484 }
1485
1486 static inline int ptlrpc_set_producer(struct ptlrpc_request_set *set)
1487 {
1488         int remaining, rc;
1489         ENTRY;
1490
1491         LASSERT(set->set_producer != NULL);
1492
1493         remaining = cfs_atomic_read(&set->set_remaining);
1494
1495         /* populate the ->set_requests list with requests until we
1496          * reach the maximum number of RPCs in flight for this set */
1497         while (cfs_atomic_read(&set->set_remaining) < set->set_max_inflight) {
1498                 rc = set->set_producer(set, set->set_producer_arg);
1499                 if (rc == -ENOENT) {
1500                         /* no more RPC to produce */
1501                         set->set_producer     = NULL;
1502                         set->set_producer_arg = NULL;
1503                         RETURN(0);
1504                 }
1505         }
1506
1507         RETURN((cfs_atomic_read(&set->set_remaining) - remaining));
1508 }
1509
1510 /**
1511  * this sends any unsent RPCs in \a set and returns 1 if all are sent
1512  * and no more replies are expected.
1513  * (it is possible to get less replies than requests sent e.g. due to timed out
1514  * requests or requests that we had trouble to send out)
1515  */
1516 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1517 {
1518         cfs_list_t *tmp, *next;
1519         int force_timer_recalc = 0;
1520         ENTRY;
1521
1522         if (cfs_atomic_read(&set->set_remaining) == 0)
1523                 RETURN(1);
1524
1525         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
1526                 struct ptlrpc_request *req =
1527                         cfs_list_entry(tmp, struct ptlrpc_request,
1528                                        rq_set_chain);
1529                 struct obd_import *imp = req->rq_import;
1530                 int unregistered = 0;
1531                 int rc = 0;
1532
1533                 if (req->rq_phase == RQ_PHASE_NEW &&
1534                     ptlrpc_send_new_req(req)) {
1535                         force_timer_recalc = 1;
1536                 }
1537
1538                 /* delayed send - skip */
1539                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1540                         continue;
1541
1542                 /* delayed resend - skip */
1543                 if (req->rq_phase == RQ_PHASE_RPC && req->rq_resend &&
1544                     req->rq_sent > cfs_time_current_sec())
1545                         continue;
1546
1547                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1548                       req->rq_phase == RQ_PHASE_BULK ||
1549                       req->rq_phase == RQ_PHASE_INTERPRET ||
1550                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1551                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1552                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1553                         LBUG();
1554                 }
1555
1556                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1557                         LASSERT(req->rq_next_phase != req->rq_phase);
1558                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1559
1560                         /*
1561                          * Skip processing until reply is unlinked. We
1562                          * can't return to pool before that and we can't
1563                          * call interpret before that. We need to make
1564                          * sure that all rdma transfers finished and will
1565                          * not corrupt any data.
1566                          */
1567                         if (ptlrpc_client_recv_or_unlink(req) ||
1568                             ptlrpc_client_bulk_active(req))
1569                                 continue;
1570
1571                         /*
1572                          * Turn fail_loc off to prevent it from looping
1573                          * forever.
1574                          */
1575                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1576                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1577                                                      OBD_FAIL_ONCE);
1578                         }
1579                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1580                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1581                                                      OBD_FAIL_ONCE);
1582                         }
1583
1584                         /*
1585                          * Move to next phase if reply was successfully
1586                          * unlinked.
1587                          */
1588                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1589                 }
1590
1591                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1592                         continue;
1593
1594                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1595                         GOTO(interpret, req->rq_status);
1596
1597                 /*
1598                  * Note that this also will start async reply unlink.
1599                  */
1600                 if (req->rq_net_err && !req->rq_timedout) {
1601                         ptlrpc_expire_one_request(req, 1);
1602
1603                         /*
1604                          * Check if we still need to wait for unlink.
1605                          */
1606                         if (ptlrpc_client_recv_or_unlink(req) ||
1607                             ptlrpc_client_bulk_active(req))
1608                                 continue;
1609                         /* If there is no need to resend, fail it now. */
1610                         if (req->rq_no_resend) {
1611                                 if (req->rq_status == 0)
1612                                         req->rq_status = -EIO;
1613                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1614                                 GOTO(interpret, req->rq_status);
1615                         } else {
1616                                 continue;
1617                         }
1618                 }
1619
1620                 if (req->rq_err) {
1621                         spin_lock(&req->rq_lock);
1622                         req->rq_replied = 0;
1623                         spin_unlock(&req->rq_lock);
1624                         if (req->rq_status == 0)
1625                                 req->rq_status = -EIO;
1626                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1627                         GOTO(interpret, req->rq_status);
1628                 }
1629
1630                 /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
1631                  * so it sets rq_intr regardless of individual rpc
1632                  * timeouts. The synchronous IO waiting path sets 
1633                  * rq_intr irrespective of whether ptlrpcd
1634                  * has seen a timeout.  Our policy is to only interpret
1635                  * interrupted rpcs after they have timed out, so we
1636                  * need to enforce that here.
1637                  */
1638
1639                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1640                                      req->rq_wait_ctx)) {
1641                         req->rq_status = -EINTR;
1642                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1643                         GOTO(interpret, req->rq_status);
1644                 }
1645
1646                 if (req->rq_phase == RQ_PHASE_RPC) {
1647                         if (req->rq_timedout || req->rq_resend ||
1648                             req->rq_waiting || req->rq_wait_ctx) {
1649                                 int status;
1650
1651                                 if (!ptlrpc_unregister_reply(req, 1))
1652                                         continue;
1653
1654                                 spin_lock(&imp->imp_lock);
1655                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1656                                         /* put on delay list - only if we wait
1657                                          * recovery finished - before send */
1658                                         cfs_list_del_init(&req->rq_list);
1659                                         cfs_list_add_tail(&req->rq_list,
1660                                                           &imp->
1661                                                           imp_delayed_list);
1662                                         spin_unlock(&imp->imp_lock);
1663                                         continue;
1664                                 }
1665
1666                                 if (status != 0)  {
1667                                         req->rq_status = status;
1668                                         ptlrpc_rqphase_move(req,
1669                                                 RQ_PHASE_INTERPRET);
1670                                         spin_unlock(&imp->imp_lock);
1671                                         GOTO(interpret, req->rq_status);
1672                                 }
1673                                 if (ptlrpc_no_resend(req) &&
1674                                     !req->rq_wait_ctx) {
1675                                         req->rq_status = -ENOTCONN;
1676                                         ptlrpc_rqphase_move(req,
1677                                                             RQ_PHASE_INTERPRET);
1678                                         spin_unlock(&imp->imp_lock);
1679                                         GOTO(interpret, req->rq_status);
1680                                 }
1681
1682                                 cfs_list_del_init(&req->rq_list);
1683                                 cfs_list_add_tail(&req->rq_list,
1684                                                   &imp->imp_sending_list);
1685
1686                                 spin_unlock(&imp->imp_lock);
1687
1688                                 spin_lock(&req->rq_lock);
1689                                 req->rq_waiting = 0;
1690                                 spin_unlock(&req->rq_lock);
1691
1692                                 if (req->rq_timedout || req->rq_resend) {
1693                                         /* This is re-sending anyways,
1694                                          * let's mark req as resend. */
1695                                         spin_lock(&req->rq_lock);
1696                                         req->rq_resend = 1;
1697                                         spin_unlock(&req->rq_lock);
1698                                         if (req->rq_bulk) {
1699                                                 __u64 old_xid;
1700
1701                                                 if (!ptlrpc_unregister_bulk(req, 1))
1702                                                         continue;
1703
1704                                                 /* ensure previous bulk fails */
1705                                                 old_xid = req->rq_xid;
1706                                                 req->rq_xid = ptlrpc_next_xid();
1707                                                 CDEBUG(D_HA, "resend bulk "
1708                                                        "old x"LPU64
1709                                                        " new x"LPU64"\n",
1710                                                        old_xid, req->rq_xid);
1711                                         }
1712                                 }
1713                                 /*
1714                                  * rq_wait_ctx is only touched by ptlrpcd,
1715                                  * so no lock is needed here.
1716                                  */
1717                                 status = sptlrpc_req_refresh_ctx(req, -1);
1718                                 if (status) {
1719                                         if (req->rq_err) {
1720                                                 req->rq_status = status;
1721                                                 spin_lock(&req->rq_lock);
1722                                                 req->rq_wait_ctx = 0;
1723                                                 spin_unlock(&req->rq_lock);
1724                                                 force_timer_recalc = 1;
1725                                         } else {
1726                                                 spin_lock(&req->rq_lock);
1727                                                 req->rq_wait_ctx = 1;
1728                                                 spin_unlock(&req->rq_lock);
1729                                         }
1730
1731                                         continue;
1732                                 } else {
1733                                         spin_lock(&req->rq_lock);
1734                                         req->rq_wait_ctx = 0;
1735                                         spin_unlock(&req->rq_lock);
1736                                 }
1737
1738                                 rc = ptl_send_rpc(req, 0);
1739                                 if (rc) {
1740                                         DEBUG_REQ(D_HA, req,
1741                                                   "send failed: rc = %d", rc);
1742                                         force_timer_recalc = 1;
1743                                         spin_lock(&req->rq_lock);
1744                                         req->rq_net_err = 1;
1745                                         spin_unlock(&req->rq_lock);
1746                                         continue;
1747                                 }
1748                                 /* need to reset the timeout */
1749                                 force_timer_recalc = 1;
1750                         }
1751
1752                         spin_lock(&req->rq_lock);
1753
1754                         if (ptlrpc_client_early(req)) {
1755                                 ptlrpc_at_recv_early_reply(req);
1756                                 spin_unlock(&req->rq_lock);
1757                                 continue;
1758                         }
1759
1760                         /* Still waiting for a reply? */
1761                         if (ptlrpc_client_recv(req)) {
1762                                 spin_unlock(&req->rq_lock);
1763                                 continue;
1764                         }
1765
1766                         /* Did we actually receive a reply? */
1767                         if (!ptlrpc_client_replied(req)) {
1768                                 spin_unlock(&req->rq_lock);
1769                                 continue;
1770                         }
1771
1772                         spin_unlock(&req->rq_lock);
1773
1774                         /* unlink from net because we are going to
1775                          * swab in-place of reply buffer */
1776                         unregistered = ptlrpc_unregister_reply(req, 1);
1777                         if (!unregistered)
1778                                 continue;
1779
1780                         req->rq_status = after_reply(req);
1781                         if (req->rq_resend)
1782                                 continue;
1783
1784                         /* If there is no bulk associated with this request,
1785                          * then we're done and should let the interpreter
1786                          * process the reply. Similarly if the RPC returned
1787                          * an error, and therefore the bulk will never arrive.
1788                          */
1789                         if (req->rq_bulk == NULL || req->rq_status < 0) {
1790                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1791                                 GOTO(interpret, req->rq_status);
1792                         }
1793
1794                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1795                 }
1796
1797                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1798                 if (ptlrpc_client_bulk_active(req))
1799                         continue;
1800
1801                 if (req->rq_bulk->bd_failure) {
1802                         /* The RPC reply arrived OK, but the bulk screwed
1803                          * up!  Dead weird since the server told us the RPC
1804                          * was good after getting the REPLY for her GET or
1805                          * the ACK for her PUT. */
1806                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1807                         req->rq_status = -EIO;
1808                 }
1809
1810                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1811
1812         interpret:
1813                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1814
1815                 /* This moves to "unregistering" phase we need to wait for
1816                  * reply unlink. */
1817                 if (!unregistered && !ptlrpc_unregister_reply(req, 1)) {
1818                         /* start async bulk unlink too */
1819                         ptlrpc_unregister_bulk(req, 1);
1820                         continue;
1821                 }
1822
1823                 if (!ptlrpc_unregister_bulk(req, 1))
1824                         continue;
1825
1826                 /* When calling interpret receiving already should be
1827                  * finished. */
1828                 LASSERT(!req->rq_receiving_reply);
1829
1830                 ptlrpc_req_interpret(env, req, req->rq_status);
1831
1832                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1833
1834                 CDEBUG(req->rq_reqmsg != NULL ? D_RPCTRACE : 0,
1835                         "Completed RPC pname:cluuid:pid:xid:nid:"
1836                         "opc %s:%s:%d:"LPU64":%s:%d\n",
1837                         current_comm(), imp->imp_obd->obd_uuid.uuid,
1838                         lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1839                         libcfs_nid2str(imp->imp_connection->c_peer.nid),
1840                         lustre_msg_get_opc(req->rq_reqmsg));
1841
1842                 spin_lock(&imp->imp_lock);
1843                 /* Request already may be not on sending or delaying list. This
1844                  * may happen in the case of marking it erroneous for the case
1845                  * ptlrpc_import_delay_req(req, status) find it impossible to
1846                  * allow sending this rpc and returns *status != 0. */
1847                 if (!cfs_list_empty(&req->rq_list)) {
1848                         cfs_list_del_init(&req->rq_list);
1849                         cfs_atomic_dec(&imp->imp_inflight);
1850                 }
1851                 spin_unlock(&imp->imp_lock);
1852
1853                 cfs_atomic_dec(&set->set_remaining);
1854                 wake_up_all(&imp->imp_recovery_waitq);
1855
1856                 if (set->set_producer) {
1857                         /* produce a new request if possible */
1858                         if (ptlrpc_set_producer(set) > 0)
1859                                 force_timer_recalc = 1;
1860
1861                         /* free the request that has just been completed
1862                          * in order not to pollute set->set_requests */
1863                         cfs_list_del_init(&req->rq_set_chain);
1864                         spin_lock(&req->rq_lock);
1865                         req->rq_set = NULL;
1866                         req->rq_invalid_rqset = 0;
1867                         spin_unlock(&req->rq_lock);
1868
1869                         /* record rq_status to compute the final status later */
1870                         if (req->rq_status != 0)
1871                                 set->set_rc = req->rq_status;
1872                         ptlrpc_req_finished(req);
1873                 }
1874         }
1875
1876         /* If we hit an error, we want to recover promptly. */
1877         RETURN(cfs_atomic_read(&set->set_remaining) == 0 || force_timer_recalc);
1878 }
1879 EXPORT_SYMBOL(ptlrpc_check_set);
1880
1881 /**
1882  * Time out request \a req. is \a async_unlink is set, that means do not wait
1883  * until LNet actually confirms network buffer unlinking.
1884  * Return 1 if we should give up further retrying attempts or 0 otherwise.
1885  */
1886 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1887 {
1888         struct obd_import *imp = req->rq_import;
1889         int rc = 0;
1890         ENTRY;
1891
1892         spin_lock(&req->rq_lock);
1893         req->rq_timedout = 1;
1894         spin_unlock(&req->rq_lock);
1895
1896         DEBUG_REQ(D_WARNING, req, "Request sent has %s: [sent "CFS_DURATION_T
1897                   "/real "CFS_DURATION_T"]",
1898                   req->rq_net_err ? "failed due to network error" :
1899                      ((req->rq_real_sent == 0 ||
1900                        cfs_time_before(req->rq_real_sent, req->rq_sent) ||
1901                        cfs_time_aftereq(req->rq_real_sent, req->rq_deadline)) ?
1902                       "timed out for sent delay" : "timed out for slow reply"),
1903                   req->rq_sent, req->rq_real_sent);
1904
1905         if (imp != NULL && obd_debug_peer_on_timeout)
1906                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1907
1908         ptlrpc_unregister_reply(req, async_unlink);
1909         ptlrpc_unregister_bulk(req, async_unlink);
1910
1911         if (obd_dump_on_timeout)
1912                 libcfs_debug_dumplog();
1913
1914         if (imp == NULL) {
1915                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1916                 RETURN(1);
1917         }
1918
1919         cfs_atomic_inc(&imp->imp_timeouts);
1920
1921         /* The DLM server doesn't want recovery run on its imports. */
1922         if (imp->imp_dlm_fake)
1923                 RETURN(1);
1924
1925         /* If this request is for recovery or other primordial tasks,
1926          * then error it out here. */
1927         if (req->rq_ctx_init || req->rq_ctx_fini ||
1928             req->rq_send_state != LUSTRE_IMP_FULL ||
1929             imp->imp_obd->obd_no_recov) {
1930                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1931                           ptlrpc_import_state_name(req->rq_send_state),
1932                           ptlrpc_import_state_name(imp->imp_state));
1933                 spin_lock(&req->rq_lock);
1934                 req->rq_status = -ETIMEDOUT;
1935                 req->rq_err = 1;
1936                 spin_unlock(&req->rq_lock);
1937                 RETURN(1);
1938         }
1939
1940         /* if a request can't be resent we can't wait for an answer after
1941            the timeout */
1942         if (ptlrpc_no_resend(req)) {
1943                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1944                 rc = 1;
1945         }
1946
1947         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1948
1949         RETURN(rc);
1950 }
1951
1952 /**
1953  * Time out all uncompleted requests in request set pointed by \a data
1954  * Callback used when waiting on sets with l_wait_event.
1955  * Always returns 1.
1956  */
1957 int ptlrpc_expired_set(void *data)
1958 {
1959         struct ptlrpc_request_set *set = data;
1960         cfs_list_t                *tmp;
1961         time_t                     now = cfs_time_current_sec();
1962         ENTRY;
1963
1964         LASSERT(set != NULL);
1965
1966         /*
1967          * A timeout expired. See which reqs it applies to...
1968          */
1969         cfs_list_for_each (tmp, &set->set_requests) {
1970                 struct ptlrpc_request *req =
1971                         cfs_list_entry(tmp, struct ptlrpc_request,
1972                                        rq_set_chain);
1973
1974                 /* don't expire request waiting for context */
1975                 if (req->rq_wait_ctx)
1976                         continue;
1977
1978                 /* Request in-flight? */
1979                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1980                        !req->rq_waiting && !req->rq_resend) ||
1981                       (req->rq_phase == RQ_PHASE_BULK)))
1982                         continue;
1983
1984                 if (req->rq_timedout ||     /* already dealt with */
1985                     req->rq_deadline > now) /* not expired */
1986                         continue;
1987
1988                 /* Deal with this guy. Do it asynchronously to not block
1989                  * ptlrpcd thread. */
1990                 ptlrpc_expire_one_request(req, 1);
1991         }
1992
1993         /*
1994          * When waiting for a whole set, we always break out of the
1995          * sleep so we can recalculate the timeout, or enable interrupts
1996          * if everyone's timed out.
1997          */
1998         RETURN(1);
1999 }
2000 EXPORT_SYMBOL(ptlrpc_expired_set);
2001
2002 /**
2003  * Sets rq_intr flag in \a req under spinlock.
2004  */
2005 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
2006 {
2007         spin_lock(&req->rq_lock);
2008         req->rq_intr = 1;
2009         spin_unlock(&req->rq_lock);
2010 }
2011 EXPORT_SYMBOL(ptlrpc_mark_interrupted);
2012
2013 /**
2014  * Interrupts (sets interrupted flag) all uncompleted requests in
2015  * a set \a data. Callback for l_wait_event for interruptible waits.
2016  */
2017 void ptlrpc_interrupted_set(void *data)
2018 {
2019         struct ptlrpc_request_set *set = data;
2020         cfs_list_t *tmp;
2021
2022         LASSERT(set != NULL);
2023         CDEBUG(D_RPCTRACE, "INTERRUPTED SET %p\n", set);
2024
2025         cfs_list_for_each(tmp, &set->set_requests) {
2026                 struct ptlrpc_request *req =
2027                         cfs_list_entry(tmp, struct ptlrpc_request,
2028                                        rq_set_chain);
2029
2030                 if (req->rq_phase != RQ_PHASE_RPC &&
2031                     req->rq_phase != RQ_PHASE_UNREGISTERING)
2032                         continue;
2033
2034                 ptlrpc_mark_interrupted(req);
2035         }
2036 }
2037 EXPORT_SYMBOL(ptlrpc_interrupted_set);
2038
2039 /**
2040  * Get the smallest timeout in the set; this does NOT set a timeout.
2041  */
2042 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
2043 {
2044         cfs_list_t            *tmp;
2045         time_t                 now = cfs_time_current_sec();
2046         int                    timeout = 0;
2047         struct ptlrpc_request *req;
2048         int                    deadline;
2049         ENTRY;
2050
2051         cfs_list_for_each(tmp, &set->set_requests) {
2052                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2053
2054                 /*
2055                  * Request in-flight?
2056                  */
2057                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
2058                       (req->rq_phase == RQ_PHASE_BULK) ||
2059                       (req->rq_phase == RQ_PHASE_NEW)))
2060                         continue;
2061
2062                 /*
2063                  * Already timed out.
2064                  */
2065                 if (req->rq_timedout)
2066                         continue;
2067
2068                 /*
2069                  * Waiting for ctx.
2070                  */
2071                 if (req->rq_wait_ctx)
2072                         continue;
2073
2074                 if (req->rq_phase == RQ_PHASE_NEW)
2075                         deadline = req->rq_sent;
2076                 else if (req->rq_phase == RQ_PHASE_RPC && req->rq_resend)
2077                         deadline = req->rq_sent;
2078                 else
2079                         deadline = req->rq_sent + req->rq_timeout;
2080
2081                 if (deadline <= now)    /* actually expired already */
2082                         timeout = 1;    /* ASAP */
2083                 else if (timeout == 0 || timeout > deadline - now)
2084                         timeout = deadline - now;
2085         }
2086         RETURN(timeout);
2087 }
2088 EXPORT_SYMBOL(ptlrpc_set_next_timeout);
2089
2090 /**
2091  * Send all unset request from the set and then wait untill all
2092  * requests in the set complete (either get a reply, timeout, get an
2093  * error or otherwise be interrupted).
2094  * Returns 0 on success or error code otherwise.
2095  */
2096 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
2097 {
2098         cfs_list_t            *tmp;
2099         struct ptlrpc_request *req;
2100         struct l_wait_info     lwi;
2101         int                    rc, timeout;
2102         ENTRY;
2103
2104         if (set->set_producer)
2105                 (void)ptlrpc_set_producer(set);
2106         else
2107                 cfs_list_for_each(tmp, &set->set_requests) {
2108                         req = cfs_list_entry(tmp, struct ptlrpc_request,
2109                                              rq_set_chain);
2110                         if (req->rq_phase == RQ_PHASE_NEW)
2111                                 (void)ptlrpc_send_new_req(req);
2112                 }
2113
2114         if (cfs_list_empty(&set->set_requests))
2115                 RETURN(0);
2116
2117         do {
2118                 timeout = ptlrpc_set_next_timeout(set);
2119
2120                 /* wait until all complete, interrupted, or an in-flight
2121                  * req times out */
2122                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
2123                        set, timeout);
2124
2125                 if (timeout == 0 && !cfs_signal_pending())
2126                         /*
2127                          * No requests are in-flight (ether timed out
2128                          * or delayed), so we can allow interrupts.
2129                          * We still want to block for a limited time,
2130                          * so we allow interrupts during the timeout.
2131                          */
2132                         lwi = LWI_TIMEOUT_INTR_ALL(cfs_time_seconds(1), 
2133                                                    ptlrpc_expired_set,
2134                                                    ptlrpc_interrupted_set, set);
2135                 else
2136                         /*
2137                          * At least one request is in flight, so no
2138                          * interrupts are allowed. Wait until all
2139                          * complete, or an in-flight req times out. 
2140                          */
2141                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
2142                                           ptlrpc_expired_set, set);
2143
2144                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
2145
2146                 /* LU-769 - if we ignored the signal because it was already
2147                  * pending when we started, we need to handle it now or we risk
2148                  * it being ignored forever */
2149                 if (rc == -ETIMEDOUT && !lwi.lwi_allow_intr &&
2150                     cfs_signal_pending()) {
2151                         sigset_t blocked_sigs =
2152                                            cfs_block_sigsinv(LUSTRE_FATAL_SIGS);
2153
2154                         /* In fact we only interrupt for the "fatal" signals
2155                          * like SIGINT or SIGKILL. We still ignore less
2156                          * important signals since ptlrpc set is not easily
2157                          * reentrant from userspace again */
2158                         if (cfs_signal_pending())
2159                                 ptlrpc_interrupted_set(set);
2160                         cfs_restore_sigs(blocked_sigs);
2161                 }
2162
2163                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
2164
2165                 /* -EINTR => all requests have been flagged rq_intr so next
2166                  * check completes.
2167                  * -ETIMEDOUT => someone timed out.  When all reqs have
2168                  * timed out, signals are enabled allowing completion with
2169                  * EINTR.
2170                  * I don't really care if we go once more round the loop in
2171                  * the error cases -eeb. */
2172                 if (rc == 0 && cfs_atomic_read(&set->set_remaining) == 0) {
2173                         cfs_list_for_each(tmp, &set->set_requests) {
2174                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2175                                                      rq_set_chain);
2176                                 spin_lock(&req->rq_lock);
2177                                 req->rq_invalid_rqset = 1;
2178                                 spin_unlock(&req->rq_lock);
2179                         }
2180                 }
2181         } while (rc != 0 || cfs_atomic_read(&set->set_remaining) != 0);
2182
2183         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
2184
2185         rc = set->set_rc; /* rq_status of already freed requests if any */
2186         cfs_list_for_each(tmp, &set->set_requests) {
2187                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2188
2189                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
2190                 if (req->rq_status != 0)
2191                         rc = req->rq_status;
2192         }
2193
2194         if (set->set_interpret != NULL) {
2195                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
2196                         set->set_interpret;
2197                 rc = interpreter (set, set->set_arg, rc);
2198         } else {
2199                 struct ptlrpc_set_cbdata *cbdata, *n;
2200                 int err;
2201
2202                 cfs_list_for_each_entry_safe(cbdata, n,
2203                                          &set->set_cblist, psc_item) {
2204                         cfs_list_del_init(&cbdata->psc_item);
2205                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
2206                         if (err && !rc)
2207                                 rc = err;
2208                         OBD_FREE_PTR(cbdata);
2209                 }
2210         }
2211
2212         RETURN(rc);
2213 }
2214 EXPORT_SYMBOL(ptlrpc_set_wait);
2215
2216 /**
2217  * Helper fuction for request freeing.
2218  * Called when request count reached zero and request needs to be freed.
2219  * Removes request from all sorts of sending/replay lists it might be on,
2220  * frees network buffers if any are present.
2221  * If \a locked is set, that means caller is already holding import imp_lock
2222  * and so we no longer need to reobtain it (for certain lists manipulations)
2223  */
2224 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
2225 {
2226         ENTRY;
2227         if (request == NULL) {
2228                 EXIT;
2229                 return;
2230         }
2231
2232         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
2233         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
2234         LASSERTF(cfs_list_empty(&request->rq_list), "req %p\n", request);
2235         LASSERTF(cfs_list_empty(&request->rq_set_chain), "req %p\n", request);
2236         LASSERTF(cfs_list_empty(&request->rq_exp_list), "req %p\n", request);
2237         LASSERTF(!request->rq_replay, "req %p\n", request);
2238
2239         req_capsule_fini(&request->rq_pill);
2240
2241         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
2242          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
2243         if (request->rq_import != NULL) {
2244                 if (!locked)
2245                         spin_lock(&request->rq_import->imp_lock);
2246                 cfs_list_del_init(&request->rq_replay_list);
2247                 if (!locked)
2248                         spin_unlock(&request->rq_import->imp_lock);
2249         }
2250         LASSERTF(cfs_list_empty(&request->rq_replay_list), "req %p\n", request);
2251
2252         if (cfs_atomic_read(&request->rq_refcount) != 0) {
2253                 DEBUG_REQ(D_ERROR, request,
2254                           "freeing request with nonzero refcount");
2255                 LBUG();
2256         }
2257
2258         if (request->rq_repbuf != NULL)
2259                 sptlrpc_cli_free_repbuf(request);
2260         if (request->rq_export != NULL) {
2261                 class_export_put(request->rq_export);
2262                 request->rq_export = NULL;
2263         }
2264         if (request->rq_import != NULL) {
2265                 class_import_put(request->rq_import);
2266                 request->rq_import = NULL;
2267         }
2268         if (request->rq_bulk != NULL)
2269                 ptlrpc_free_bulk_pin(request->rq_bulk);
2270
2271         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
2272                 sptlrpc_cli_free_reqbuf(request);
2273
2274         if (request->rq_cli_ctx)
2275                 sptlrpc_req_put_ctx(request, !locked);
2276
2277         if (request->rq_pool)
2278                 __ptlrpc_free_req_to_pool(request);
2279         else
2280                 ptlrpc_request_cache_free(request);
2281         EXIT;
2282 }
2283
2284 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
2285 /**
2286  * Drop one request reference. Must be called with import imp_lock held.
2287  * When reference count drops to zero, reuqest is freed.
2288  */
2289 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
2290 {
2291         LASSERT(spin_is_locked(&request->rq_import->imp_lock));
2292         (void)__ptlrpc_req_finished(request, 1);
2293 }
2294 EXPORT_SYMBOL(ptlrpc_req_finished_with_imp_lock);
2295
2296 /**
2297  * Helper function
2298  * Drops one reference count for request \a request.
2299  * \a locked set indicates that caller holds import imp_lock.
2300  * Frees the request whe reference count reaches zero.
2301  */
2302 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
2303 {
2304         ENTRY;
2305         if (request == NULL)
2306                 RETURN(1);
2307
2308         if (request == LP_POISON ||
2309             request->rq_reqmsg == LP_POISON) {
2310                 CERROR("dereferencing freed request (bug 575)\n");
2311                 LBUG();
2312                 RETURN(1);
2313         }
2314
2315         DEBUG_REQ(D_INFO, request, "refcount now %u",
2316                   cfs_atomic_read(&request->rq_refcount) - 1);
2317
2318         if (cfs_atomic_dec_and_test(&request->rq_refcount)) {
2319                 __ptlrpc_free_req(request, locked);
2320                 RETURN(1);
2321         }
2322
2323         RETURN(0);
2324 }
2325
2326 /**
2327  * Drops one reference count for a request.
2328  */
2329 void ptlrpc_req_finished(struct ptlrpc_request *request)
2330 {
2331         __ptlrpc_req_finished(request, 0);
2332 }
2333 EXPORT_SYMBOL(ptlrpc_req_finished);
2334
2335 /**
2336  * Returns xid of a \a request
2337  */
2338 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
2339 {
2340         return request->rq_xid;
2341 }
2342 EXPORT_SYMBOL(ptlrpc_req_xid);
2343
2344 /**
2345  * Disengage the client's reply buffer from the network
2346  * NB does _NOT_ unregister any client-side bulk.
2347  * IDEMPOTENT, but _not_ safe against concurrent callers.
2348  * The request owner (i.e. the thread doing the I/O) must call...
2349  * Returns 0 on success or 1 if unregistering cannot be made.
2350  */
2351 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
2352 {
2353         int                rc;
2354         struct l_wait_info lwi;
2355
2356         /*
2357          * Might sleep.
2358          */
2359         LASSERT(!in_interrupt());
2360
2361         /*
2362          * Let's setup deadline for reply unlink.
2363          */
2364         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
2365             async && request->rq_reply_deadline == 0)
2366                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
2367
2368         /*
2369          * Nothing left to do.
2370          */
2371         if (!ptlrpc_client_recv_or_unlink(request))
2372                 RETURN(1);
2373
2374         LNetMDUnlink(request->rq_reply_md_h);
2375
2376         /*
2377          * Let's check it once again.
2378          */
2379         if (!ptlrpc_client_recv_or_unlink(request))
2380                 RETURN(1);
2381
2382         /*
2383          * Move to "Unregistering" phase as reply was not unlinked yet.
2384          */
2385         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
2386
2387         /*
2388          * Do not wait for unlink to finish.
2389          */
2390         if (async)
2391                 RETURN(0);
2392
2393         /*
2394          * We have to l_wait_event() whatever the result, to give liblustre
2395          * a chance to run reply_in_callback(), and to make sure we've
2396          * unlinked before returning a req to the pool.
2397          */
2398         for (;;) {
2399 #ifdef __KERNEL__
2400                 /* The wq argument is ignored by user-space wait_event macros */
2401                 wait_queue_head_t *wq = (request->rq_set != NULL) ?
2402                                         &request->rq_set->set_waitq :
2403                                         &request->rq_reply_waitq;
2404 #endif
2405                 /* Network access will complete in finite time but the HUGE
2406                  * timeout lets us CWARN for visibility of sluggish NALs */
2407                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2408                                            cfs_time_seconds(1), NULL, NULL);
2409                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
2410                                   &lwi);
2411                 if (rc == 0) {
2412                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2413                         RETURN(1);
2414                 }
2415
2416                 LASSERT(rc == -ETIMEDOUT);
2417                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2418                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
2419                           request->rq_must_unlink);
2420         }
2421         RETURN(0);
2422 }
2423 EXPORT_SYMBOL(ptlrpc_unregister_reply);
2424
2425 static void ptlrpc_free_request(struct ptlrpc_request *req)
2426 {
2427         spin_lock(&req->rq_lock);
2428         req->rq_replay = 0;
2429         spin_unlock(&req->rq_lock);
2430
2431         if (req->rq_commit_cb != NULL)
2432                 req->rq_commit_cb(req);
2433         cfs_list_del_init(&req->rq_replay_list);
2434
2435         __ptlrpc_req_finished(req, 1);
2436 }
2437
2438 /**
2439  * the request is committed and dropped from the replay list of its import
2440  */
2441 void ptlrpc_request_committed(struct ptlrpc_request *req, int force)
2442 {
2443         struct obd_import       *imp = req->rq_import;
2444
2445         spin_lock(&imp->imp_lock);
2446         if (cfs_list_empty(&req->rq_replay_list)) {
2447                 spin_unlock(&imp->imp_lock);
2448                 return;
2449         }
2450
2451         if (force || req->rq_transno <= imp->imp_peer_committed_transno)
2452                 ptlrpc_free_request(req);
2453
2454         spin_unlock(&imp->imp_lock);
2455 }
2456 EXPORT_SYMBOL(ptlrpc_request_committed);
2457
2458 /**
2459  * Iterates through replay_list on import and prunes
2460  * all requests have transno smaller than last_committed for the
2461  * import and don't have rq_replay set.
2462  * Since requests are sorted in transno order, stops when meetign first
2463  * transno bigger than last_committed.
2464  * caller must hold imp->imp_lock
2465  */
2466 void ptlrpc_free_committed(struct obd_import *imp)
2467 {
2468         struct ptlrpc_request   *req, *saved;
2469         struct ptlrpc_request   *last_req = NULL; /* temporary fire escape */
2470         bool                     skip_committed_list = true;
2471         ENTRY;
2472
2473         LASSERT(imp != NULL);
2474         LASSERT(spin_is_locked(&imp->imp_lock));
2475
2476
2477         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2478             imp->imp_generation == imp->imp_last_generation_checked) {
2479                 CDEBUG(D_INFO, "%s: skip recheck: last_committed "LPU64"\n",
2480                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2481                 RETURN_EXIT;
2482         }
2483         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2484                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2485                imp->imp_generation);
2486
2487         if (imp->imp_generation != imp->imp_last_generation_checked)
2488                 skip_committed_list = false;
2489
2490         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2491         imp->imp_last_generation_checked = imp->imp_generation;
2492
2493         cfs_list_for_each_entry_safe(req, saved, &imp->imp_replay_list,
2494                                      rq_replay_list) {
2495                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2496                 LASSERT(req != last_req);
2497                 last_req = req;
2498
2499                 if (req->rq_transno == 0) {
2500                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2501                         LBUG();
2502                 }
2503                 if (req->rq_import_generation < imp->imp_generation) {
2504                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2505                         GOTO(free_req, 0);
2506                 }
2507
2508                 /* not yet committed */
2509                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2510                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2511                         break;
2512                 }
2513
2514                 if (req->rq_replay) {
2515                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2516                         cfs_list_move_tail(&req->rq_replay_list,
2517                                            &imp->imp_committed_list);
2518                         continue;
2519                 }
2520
2521                 DEBUG_REQ(D_INFO, req, "commit (last_committed "LPU64")",
2522                           imp->imp_peer_committed_transno);
2523 free_req:
2524                 ptlrpc_free_request(req);
2525         }
2526
2527         if (skip_committed_list)
2528                 GOTO(out, 0);
2529
2530         cfs_list_for_each_entry_safe(req, saved, &imp->imp_committed_list,
2531                                      rq_replay_list) {
2532                 LASSERT(req->rq_transno != 0);
2533                 if (req->rq_import_generation < imp->imp_generation) {
2534                         DEBUG_REQ(D_RPCTRACE, req, "free stale open request");
2535                         ptlrpc_free_request(req);
2536                 }
2537         }
2538 out:
2539         EXIT;
2540 }
2541
2542 void ptlrpc_cleanup_client(struct obd_import *imp)
2543 {
2544         ENTRY;
2545         EXIT;
2546 }
2547 EXPORT_SYMBOL(ptlrpc_cleanup_client);
2548
2549 /**
2550  * Schedule previously sent request for resend.
2551  * For bulk requests we assign new xid (to avoid problems with
2552  * lost replies and therefore several transfers landing into same buffer
2553  * from different sending attempts).
2554  */
2555 void ptlrpc_resend_req(struct ptlrpc_request *req)
2556 {
2557         DEBUG_REQ(D_HA, req, "going to resend");
2558         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2559         req->rq_status = -EAGAIN;
2560
2561         spin_lock(&req->rq_lock);
2562         req->rq_resend = 1;
2563         req->rq_net_err = 0;
2564         req->rq_timedout = 0;
2565         if (req->rq_bulk) {
2566                 __u64 old_xid = req->rq_xid;
2567
2568                 /* ensure previous bulk fails */
2569                 req->rq_xid = ptlrpc_next_xid();
2570                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2571                        old_xid, req->rq_xid);
2572         }
2573         ptlrpc_client_wake_req(req);
2574         spin_unlock(&req->rq_lock);
2575 }
2576 EXPORT_SYMBOL(ptlrpc_resend_req);
2577
2578 /* XXX: this function and rq_status are currently unused */
2579 void ptlrpc_restart_req(struct ptlrpc_request *req)
2580 {
2581         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2582         req->rq_status = -ERESTARTSYS;
2583
2584         spin_lock(&req->rq_lock);
2585         req->rq_restart = 1;
2586         req->rq_timedout = 0;
2587         ptlrpc_client_wake_req(req);
2588         spin_unlock(&req->rq_lock);
2589 }
2590 EXPORT_SYMBOL(ptlrpc_restart_req);
2591
2592 /**
2593  * Grab additional reference on a request \a req
2594  */
2595 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2596 {
2597         ENTRY;
2598         cfs_atomic_inc(&req->rq_refcount);
2599         RETURN(req);
2600 }
2601 EXPORT_SYMBOL(ptlrpc_request_addref);
2602
2603 /**
2604  * Add a request to import replay_list.
2605  * Must be called under imp_lock
2606  */
2607 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2608                                       struct obd_import *imp)
2609 {
2610         cfs_list_t *tmp;
2611
2612         LASSERT(spin_is_locked(&imp->imp_lock));
2613
2614         if (req->rq_transno == 0) {
2615                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2616                 LBUG();
2617         }
2618
2619         /* clear this for new requests that were resent as well
2620            as resent replayed requests. */
2621         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2622
2623         /* don't re-add requests that have been replayed */
2624         if (!cfs_list_empty(&req->rq_replay_list))
2625                 return;
2626
2627         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2628
2629         LASSERT(imp->imp_replayable);
2630         /* Balanced in ptlrpc_free_committed, usually. */
2631         ptlrpc_request_addref(req);
2632         cfs_list_for_each_prev(tmp, &imp->imp_replay_list) {
2633                 struct ptlrpc_request *iter =
2634                         cfs_list_entry(tmp, struct ptlrpc_request,
2635                                        rq_replay_list);
2636
2637                 /* We may have duplicate transnos if we create and then
2638                  * open a file, or for closes retained if to match creating
2639                  * opens, so use req->rq_xid as a secondary key.
2640                  * (See bugs 684, 685, and 428.)
2641                  * XXX no longer needed, but all opens need transnos!
2642                  */
2643                 if (iter->rq_transno > req->rq_transno)
2644                         continue;
2645
2646                 if (iter->rq_transno == req->rq_transno) {
2647                         LASSERT(iter->rq_xid != req->rq_xid);
2648                         if (iter->rq_xid > req->rq_xid)
2649                                 continue;
2650                 }
2651
2652                 cfs_list_add(&req->rq_replay_list, &iter->rq_replay_list);
2653                 return;
2654         }
2655
2656         cfs_list_add(&req->rq_replay_list, &imp->imp_replay_list);
2657 }
2658 EXPORT_SYMBOL(ptlrpc_retain_replayable_request);
2659
2660 /**
2661  * Send request and wait until it completes.
2662  * Returns request processing status.
2663  */
2664 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2665 {
2666         struct ptlrpc_request_set *set;
2667         int rc;
2668         ENTRY;
2669
2670         LASSERT(req->rq_set == NULL);
2671         LASSERT(!req->rq_receiving_reply);
2672
2673         set = ptlrpc_prep_set();
2674         if (set == NULL) {
2675                 CERROR("Unable to allocate ptlrpc set.");
2676                 RETURN(-ENOMEM);
2677         }
2678
2679         /* for distributed debugging */
2680         lustre_msg_set_status(req->rq_reqmsg, current_pid());
2681
2682         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2683         ptlrpc_request_addref(req);
2684         ptlrpc_set_add_req(set, req);
2685         rc = ptlrpc_set_wait(set);
2686         ptlrpc_set_destroy(set);
2687
2688         RETURN(rc);
2689 }
2690 EXPORT_SYMBOL(ptlrpc_queue_wait);
2691
2692 struct ptlrpc_replay_async_args {
2693         int praa_old_state;
2694         int praa_old_status;
2695 };
2696
2697 /**
2698  * Callback used for replayed requests reply processing.
2699  * In case of succesful reply calls registeresd request replay callback.
2700  * In case of error restart replay process.
2701  */
2702 static int ptlrpc_replay_interpret(const struct lu_env *env,
2703                                    struct ptlrpc_request *req,
2704                                    void * data, int rc)
2705 {
2706         struct ptlrpc_replay_async_args *aa = data;
2707         struct obd_import *imp = req->rq_import;
2708
2709         ENTRY;
2710         cfs_atomic_dec(&imp->imp_replay_inflight);
2711
2712         if (!ptlrpc_client_replied(req)) {
2713                 CERROR("request replay timed out, restarting recovery\n");
2714                 GOTO(out, rc = -ETIMEDOUT);
2715         }
2716
2717         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2718             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2719              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2720                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2721
2722         /** VBR: check version failure */
2723         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2724                 /** replay was failed due to version mismatch */
2725                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2726                 spin_lock(&imp->imp_lock);
2727                 imp->imp_vbr_failed = 1;
2728                 imp->imp_no_lock_replay = 1;
2729                 spin_unlock(&imp->imp_lock);
2730                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2731         } else {
2732                 /** The transno had better not change over replay. */
2733                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2734                          lustre_msg_get_transno(req->rq_repmsg) ||
2735                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2736                          LPX64"/"LPX64"\n",
2737                          lustre_msg_get_transno(req->rq_reqmsg),
2738                          lustre_msg_get_transno(req->rq_repmsg));
2739         }
2740
2741         spin_lock(&imp->imp_lock);
2742         /** if replays by version then gap occur on server, no trust to locks */
2743         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2744                 imp->imp_no_lock_replay = 1;
2745         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2746         spin_unlock(&imp->imp_lock);
2747         LASSERT(imp->imp_last_replay_transno);
2748
2749         /* transaction number shouldn't be bigger than the latest replayed */
2750         if (req->rq_transno > lustre_msg_get_transno(req->rq_reqmsg)) {
2751                 DEBUG_REQ(D_ERROR, req,
2752                           "Reported transno "LPU64" is bigger than the "
2753                           "replayed one: "LPU64, req->rq_transno,
2754                           lustre_msg_get_transno(req->rq_reqmsg));
2755                 GOTO(out, rc = -EINVAL);
2756         }
2757
2758         DEBUG_REQ(D_HA, req, "got rep");
2759
2760         /* let the callback do fixups, possibly including in the request */
2761         if (req->rq_replay_cb)
2762                 req->rq_replay_cb(req);
2763
2764         if (ptlrpc_client_replied(req) &&
2765             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2766                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2767                           lustre_msg_get_status(req->rq_repmsg),
2768                           aa->praa_old_status);
2769         } else {
2770                 /* Put it back for re-replay. */
2771                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2772         }
2773
2774         /*
2775          * Errors while replay can set transno to 0, but
2776          * imp_last_replay_transno shouldn't be set to 0 anyway
2777          */
2778         if (req->rq_transno == 0)
2779                 CERROR("Transno is 0 during replay!\n");
2780
2781         /* continue with recovery */
2782         rc = ptlrpc_import_recovery_state_machine(imp);
2783  out:
2784         req->rq_send_state = aa->praa_old_state;
2785
2786         if (rc != 0)
2787                 /* this replay failed, so restart recovery */
2788                 ptlrpc_connect_import(imp);
2789
2790         RETURN(rc);
2791 }
2792
2793 /**
2794  * Prepares and queues request for replay.
2795  * Adds it to ptlrpcd queue for actual sending.
2796  * Returns 0 on success.
2797  */
2798 int ptlrpc_replay_req(struct ptlrpc_request *req)
2799 {
2800         struct ptlrpc_replay_async_args *aa;
2801         ENTRY;
2802
2803         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2804
2805         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2806         aa = ptlrpc_req_async_args(req);
2807         memset(aa, 0, sizeof *aa);
2808
2809         /* Prepare request to be resent with ptlrpcd */
2810         aa->praa_old_state = req->rq_send_state;
2811         req->rq_send_state = LUSTRE_IMP_REPLAY;
2812         req->rq_phase = RQ_PHASE_NEW;
2813         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2814         if (req->rq_repmsg)
2815                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2816         req->rq_status = 0;
2817         req->rq_interpret_reply = ptlrpc_replay_interpret;
2818         /* Readjust the timeout for current conditions */
2819         ptlrpc_at_set_req_timeout(req);
2820
2821         /* Tell server the net_latency, so the server can calculate how long
2822          * it should wait for next replay */
2823         lustre_msg_set_service_time(req->rq_reqmsg,
2824                                     ptlrpc_at_get_net_latency(req));
2825         DEBUG_REQ(D_HA, req, "REPLAY");
2826
2827         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2828         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2829
2830         ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
2831         RETURN(0);
2832 }
2833 EXPORT_SYMBOL(ptlrpc_replay_req);
2834
2835 /**
2836  * Aborts all in-flight request on import \a imp sending and delayed lists
2837  */
2838 void ptlrpc_abort_inflight(struct obd_import *imp)
2839 {
2840         cfs_list_t *tmp, *n;
2841         ENTRY;
2842
2843         /* Make sure that no new requests get processed for this import.
2844          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2845          * this flag and then putting requests on sending_list or delayed_list.
2846          */
2847         spin_lock(&imp->imp_lock);
2848
2849         /* XXX locking?  Maybe we should remove each request with the list
2850          * locked?  Also, how do we know if the requests on the list are
2851          * being freed at this time?
2852          */
2853         cfs_list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2854                 struct ptlrpc_request *req =
2855                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2856
2857                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2858
2859                 spin_lock(&req->rq_lock);
2860                 if (req->rq_import_generation < imp->imp_generation) {
2861                         req->rq_err = 1;
2862                         req->rq_status = -EIO;
2863                         ptlrpc_client_wake_req(req);
2864                 }
2865                 spin_unlock(&req->rq_lock);
2866         }
2867
2868         cfs_list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2869                 struct ptlrpc_request *req =
2870                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2871
2872                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2873
2874                 spin_lock(&req->rq_lock);
2875                 if (req->rq_import_generation < imp->imp_generation) {
2876                         req->rq_err = 1;
2877                         req->rq_status = -EIO;
2878                         ptlrpc_client_wake_req(req);
2879                 }
2880                 spin_unlock(&req->rq_lock);
2881         }
2882
2883         /* Last chance to free reqs left on the replay list, but we
2884          * will still leak reqs that haven't committed.  */
2885         if (imp->imp_replayable)
2886                 ptlrpc_free_committed(imp);
2887
2888         spin_unlock(&imp->imp_lock);
2889
2890         EXIT;
2891 }
2892 EXPORT_SYMBOL(ptlrpc_abort_inflight);
2893
2894 /**
2895  * Abort all uncompleted requests in request set \a set
2896  */
2897 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2898 {
2899         cfs_list_t *tmp, *pos;
2900
2901         LASSERT(set != NULL);
2902
2903         cfs_list_for_each_safe(pos, tmp, &set->set_requests) {
2904                 struct ptlrpc_request *req =
2905                         cfs_list_entry(pos, struct ptlrpc_request,
2906                                        rq_set_chain);
2907
2908                 spin_lock(&req->rq_lock);
2909                 if (req->rq_phase != RQ_PHASE_RPC) {
2910                         spin_unlock(&req->rq_lock);
2911                         continue;
2912                 }
2913
2914                 req->rq_err = 1;
2915                 req->rq_status = -EINTR;
2916                 ptlrpc_client_wake_req(req);
2917                 spin_unlock(&req->rq_lock);
2918         }
2919 }
2920
2921 static __u64 ptlrpc_last_xid;
2922 static spinlock_t ptlrpc_last_xid_lock;
2923
2924 /**
2925  * Initialize the XID for the node.  This is common among all requests on
2926  * this node, and only requires the property that it is monotonically
2927  * increasing.  It does not need to be sequential.  Since this is also used
2928  * as the RDMA match bits, it is important that a single client NOT have
2929  * the same match bits for two different in-flight requests, hence we do
2930  * NOT want to have an XID per target or similar.
2931  *
2932  * To avoid an unlikely collision between match bits after a client reboot
2933  * (which would deliver old data into the wrong RDMA buffer) initialize
2934  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2935  * If the time is clearly incorrect, we instead use a 62-bit random number.
2936  * In the worst case the random number will overflow 1M RPCs per second in
2937  * 9133 years, or permutations thereof.
2938  */
2939 #define YEAR_2004 (1ULL << 30)
2940 void ptlrpc_init_xid(void)
2941 {
2942         time_t now = cfs_time_current_sec();
2943
2944         spin_lock_init(&ptlrpc_last_xid_lock);
2945         if (now < YEAR_2004) {
2946                 cfs_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2947                 ptlrpc_last_xid >>= 2;
2948                 ptlrpc_last_xid |= (1ULL << 61);
2949         } else {
2950                 ptlrpc_last_xid = (__u64)now << 20;
2951         }
2952
2953         /* Need to always be aligned to a power-of-two for mutli-bulk BRW */
2954         CLASSERT((PTLRPC_BULK_OPS_COUNT & (PTLRPC_BULK_OPS_COUNT - 1)) == 0);
2955         ptlrpc_last_xid &= PTLRPC_BULK_OPS_MASK;
2956 }
2957
2958 /**
2959  * Increase xid and returns resulting new value to the caller.
2960  *
2961  * Multi-bulk BRW RPCs consume multiple XIDs for each bulk transfer, starting
2962  * at the returned xid, up to xid + PTLRPC_BULK_OPS_COUNT - 1. The BRW RPC
2963  * itself uses the last bulk xid needed, so the server can determine the
2964  * the number of bulk transfers from the RPC XID and a bitmask.  The starting
2965  * xid must align to a power-of-two value.
2966  *
2967  * This is assumed to be true due to the initial ptlrpc_last_xid
2968  * value also being initialized to a power-of-two value. LU-1431
2969  */
2970 __u64 ptlrpc_next_xid(void)
2971 {
2972         __u64 next;
2973
2974         spin_lock(&ptlrpc_last_xid_lock);
2975         next = ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
2976         ptlrpc_last_xid = next;
2977         spin_unlock(&ptlrpc_last_xid_lock);
2978
2979         return next;
2980 }
2981 EXPORT_SYMBOL(ptlrpc_next_xid);
2982
2983 /**
2984  * Get a glimpse at what next xid value might have been.
2985  * Returns possible next xid.
2986  */
2987 __u64 ptlrpc_sample_next_xid(void)
2988 {
2989 #if BITS_PER_LONG == 32
2990         /* need to avoid possible word tearing on 32-bit systems */
2991         __u64 next;
2992
2993         spin_lock(&ptlrpc_last_xid_lock);
2994         next = ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
2995         spin_unlock(&ptlrpc_last_xid_lock);
2996
2997         return next;
2998 #else
2999         /* No need to lock, since returned value is racy anyways */
3000         return ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
3001 #endif
3002 }
3003 EXPORT_SYMBOL(ptlrpc_sample_next_xid);
3004
3005 /**
3006  * Functions for operating ptlrpc workers.
3007  *
3008  * A ptlrpc work is a function which will be running inside ptlrpc context.
3009  * The callback shouldn't sleep otherwise it will block that ptlrpcd thread.
3010  *
3011  * 1. after a work is created, it can be used many times, that is:
3012  *         handler = ptlrpcd_alloc_work();
3013  *         ptlrpcd_queue_work();
3014  *
3015  *    queue it again when necessary:
3016  *         ptlrpcd_queue_work();
3017  *         ptlrpcd_destroy_work();
3018  * 2. ptlrpcd_queue_work() can be called by multiple processes meanwhile, but
3019  *    it will only be queued once in any time. Also as its name implies, it may
3020  *    have delay before it really runs by ptlrpcd thread.
3021  */
3022 struct ptlrpc_work_async_args {
3023         __u64   magic;
3024         int   (*cb)(const struct lu_env *, void *);
3025         void   *cbdata;
3026 };
3027
3028 #define PTLRPC_WORK_MAGIC 0x6655436b676f4f44ULL /* magic code */
3029
3030 static int work_interpreter(const struct lu_env *env,
3031                             struct ptlrpc_request *req, void *data, int rc)
3032 {
3033         struct ptlrpc_work_async_args *arg = data;
3034
3035         LASSERT(arg->magic == PTLRPC_WORK_MAGIC);
3036         LASSERT(arg->cb != NULL);
3037
3038         return arg->cb(env, arg->cbdata);
3039 }
3040
3041 /**
3042  * Create a work for ptlrpc.
3043  */
3044 void *ptlrpcd_alloc_work(struct obd_import *imp,
3045                          int (*cb)(const struct lu_env *, void *), void *cbdata)
3046 {
3047         struct ptlrpc_request         *req = NULL;
3048         struct ptlrpc_work_async_args *args;
3049         ENTRY;
3050
3051         might_sleep();
3052
3053         if (cb == NULL)
3054                 RETURN(ERR_PTR(-EINVAL));
3055
3056         /* copy some code from deprecated fakereq. */
3057         req = ptlrpc_request_cache_alloc(__GFP_IO);
3058         if (req == NULL) {
3059                 CERROR("ptlrpc: run out of memory!\n");
3060                 RETURN(ERR_PTR(-ENOMEM));
3061         }
3062
3063         req->rq_send_state = LUSTRE_IMP_FULL;
3064         req->rq_type = PTL_RPC_MSG_REQUEST;
3065         req->rq_import = class_import_get(imp);
3066         req->rq_export = NULL;
3067         req->rq_interpret_reply = work_interpreter;
3068         /* don't want reply */
3069         req->rq_receiving_reply = 0;
3070         req->rq_must_unlink = 0;
3071         req->rq_no_delay = req->rq_no_resend = 1;
3072
3073         spin_lock_init(&req->rq_lock);
3074         CFS_INIT_LIST_HEAD(&req->rq_list);
3075         CFS_INIT_LIST_HEAD(&req->rq_replay_list);
3076         CFS_INIT_LIST_HEAD(&req->rq_set_chain);
3077         CFS_INIT_LIST_HEAD(&req->rq_history_list);
3078         CFS_INIT_LIST_HEAD(&req->rq_exp_list);
3079         init_waitqueue_head(&req->rq_reply_waitq);
3080         init_waitqueue_head(&req->rq_set_waitq);
3081         cfs_atomic_set(&req->rq_refcount, 1);
3082
3083         CLASSERT (sizeof(*args) <= sizeof(req->rq_async_args));
3084         args = ptlrpc_req_async_args(req);
3085         args->magic  = PTLRPC_WORK_MAGIC;
3086         args->cb     = cb;
3087         args->cbdata = cbdata;
3088
3089         RETURN(req);
3090 }
3091 EXPORT_SYMBOL(ptlrpcd_alloc_work);
3092
3093 void ptlrpcd_destroy_work(void *handler)
3094 {
3095         struct ptlrpc_request *req = handler;
3096
3097         if (req)
3098                 ptlrpc_req_finished(req);
3099 }
3100 EXPORT_SYMBOL(ptlrpcd_destroy_work);
3101
3102 int ptlrpcd_queue_work(void *handler)
3103 {
3104         struct ptlrpc_request *req = handler;
3105
3106         /*
3107          * Check if the req is already being queued.
3108          *
3109          * Here comes a trick: it lacks a way of checking if a req is being
3110          * processed reliably in ptlrpc. Here I have to use refcount of req
3111          * for this purpose. This is okay because the caller should use this
3112          * req as opaque data. - Jinshan
3113          */
3114         LASSERT(cfs_atomic_read(&req->rq_refcount) > 0);
3115         if (cfs_atomic_read(&req->rq_refcount) > 1)
3116                 return -EBUSY;
3117
3118         if (cfs_atomic_inc_return(&req->rq_refcount) > 2) { /* race */
3119                 cfs_atomic_dec(&req->rq_refcount);
3120                 return -EBUSY;
3121         }
3122
3123         /* re-initialize the req */
3124         req->rq_timeout        = obd_timeout;
3125         req->rq_sent           = cfs_time_current_sec();
3126         req->rq_deadline       = req->rq_sent + req->rq_timeout;
3127         req->rq_reply_deadline = req->rq_deadline;
3128         req->rq_phase          = RQ_PHASE_INTERPRET;
3129         req->rq_next_phase     = RQ_PHASE_COMPLETE;
3130         req->rq_xid            = ptlrpc_next_xid();
3131         req->rq_import_generation = req->rq_import->imp_generation;
3132
3133         ptlrpcd_add_req(req, PDL_POLICY_ROUND, -1);
3134         return 0;
3135 }
3136 EXPORT_SYMBOL(ptlrpcd_queue_work);