Whamcloud - gitweb
LU-1346 libcfs: tcpip/time/type related cleanup
[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         cfs_waitq_init(&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         cfs_waitq_init(&request->rq_reply_waitq);
631         cfs_waitq_init(&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         cfs_waitq_init(&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                 cfs_waitq_signal(&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                         cfs_waitq_signal(&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                 req->rq_resend       = 1;
1241                 RETURN(0);
1242         }
1243
1244         /*
1245          * NB Until this point, the whole of the incoming message,
1246          * including buflens, status etc is in the sender's byte order.
1247          */
1248         rc = sptlrpc_cli_unwrap_reply(req);
1249         if (rc) {
1250                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1251                 RETURN(rc);
1252         }
1253
1254         /*
1255          * Security layer unwrap might ask resend this request.
1256          */
1257         if (req->rq_resend)
1258                 RETURN(0);
1259
1260         rc = unpack_reply(req);
1261         if (rc)
1262                 RETURN(rc);
1263
1264         /* retry indefinitely on EINPROGRESS */
1265         if (lustre_msg_get_status(req->rq_repmsg) == -EINPROGRESS &&
1266             ptlrpc_no_resend(req) == 0 && !req->rq_no_retry_einprogress) {
1267                 time_t  now = cfs_time_current_sec();
1268
1269                 DEBUG_REQ(D_RPCTRACE, req, "Resending request on EINPROGRESS");
1270                 req->rq_resend = 1;
1271                 req->rq_nr_resend++;
1272
1273                 /* allocate new xid to avoid reply reconstruction */
1274                 if (!req->rq_bulk) {
1275                         /* new xid is already allocated for bulk in
1276                          * ptlrpc_check_set() */
1277                         req->rq_xid = ptlrpc_next_xid();
1278                         DEBUG_REQ(D_RPCTRACE, req, "Allocating new xid for "
1279                                   "resend on EINPROGRESS");
1280                 }
1281
1282                 /* Readjust the timeout for current conditions */
1283                 ptlrpc_at_set_req_timeout(req);
1284                 /* delay resend to give a chance to the server to get ready.
1285                  * The delay is increased by 1s on every resend and is capped to
1286                  * the current request timeout (i.e. obd_timeout if AT is off,
1287                  * or AT service time x 125% + 5s, see at_est2timeout) */
1288                 if (req->rq_nr_resend > req->rq_timeout)
1289                         req->rq_sent = now + req->rq_timeout;
1290                 else
1291                         req->rq_sent = now + req->rq_nr_resend;
1292
1293                 RETURN(0);
1294         }
1295
1296         do_gettimeofday(&work_start);
1297         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
1298         if (obd->obd_svc_stats != NULL) {
1299                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1300                                     timediff);
1301                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1302         }
1303
1304         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1305             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1306                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1307                           lustre_msg_get_type(req->rq_repmsg));
1308                 RETURN(-EPROTO);
1309         }
1310
1311         if (lustre_msg_get_opc(req->rq_reqmsg) != OBD_PING)
1312                 CFS_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, cfs_fail_val);
1313         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1314         ptlrpc_at_adj_net_latency(req,
1315                                   lustre_msg_get_service_time(req->rq_repmsg));
1316
1317         rc = ptlrpc_check_status(req);
1318         imp->imp_connect_error = rc;
1319
1320         if (rc) {
1321                 /*
1322                  * Either we've been evicted, or the server has failed for
1323                  * some reason. Try to reconnect, and if that fails, punt to
1324                  * the upcall.
1325                  */
1326                 if (ll_rpc_recoverable_error(rc)) {
1327                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1328                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1329                                 RETURN(rc);
1330                         }
1331                         ptlrpc_request_handle_notconn(req);
1332                         RETURN(rc);
1333                 }
1334         } else {
1335                 /*
1336                  * Let's look if server sent slv. Do it only for RPC with
1337                  * rc == 0.
1338                  */
1339                 ldlm_cli_update_pool(req);
1340         }
1341
1342         /*
1343          * Store transno in reqmsg for replay.
1344          */
1345         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1346                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1347                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1348         }
1349
1350         if (imp->imp_replayable) {
1351                 spin_lock(&imp->imp_lock);
1352                 /*
1353                  * No point in adding already-committed requests to the replay
1354                  * list, we will just remove them immediately. b=9829
1355                  */
1356                 if (req->rq_transno != 0 &&
1357                     (req->rq_transno >
1358                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1359                      req->rq_replay)) {
1360                         /** version recovery */
1361                         ptlrpc_save_versions(req);
1362                         ptlrpc_retain_replayable_request(req, imp);
1363                 } else if (req->rq_commit_cb != NULL) {
1364                         spin_unlock(&imp->imp_lock);
1365                         req->rq_commit_cb(req);
1366                         spin_lock(&imp->imp_lock);
1367                 }
1368
1369                 /*
1370                  * Replay-enabled imports return commit-status information.
1371                  */
1372                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1373                         imp->imp_peer_committed_transno =
1374                                 lustre_msg_get_last_committed(req->rq_repmsg);
1375                 }
1376
1377                 ptlrpc_free_committed(imp);
1378
1379                 if (!cfs_list_empty(&imp->imp_replay_list)) {
1380                         struct ptlrpc_request *last;
1381
1382                         last = cfs_list_entry(imp->imp_replay_list.prev,
1383                                               struct ptlrpc_request,
1384                                               rq_replay_list);
1385                         /*
1386                          * Requests with rq_replay stay on the list even if no
1387                          * commit is expected.
1388                          */
1389                         if (last->rq_transno > imp->imp_peer_committed_transno)
1390                                 ptlrpc_pinger_commit_expected(imp);
1391                 }
1392
1393                 spin_unlock(&imp->imp_lock);
1394         }
1395
1396         RETURN(rc);
1397 }
1398
1399 /**
1400  * Helper function to send request \a req over the network for the first time
1401  * Also adjusts request phase.
1402  * Returns 0 on success or error code.
1403  */
1404 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1405 {
1406         struct obd_import     *imp = req->rq_import;
1407         int rc;
1408         ENTRY;
1409
1410         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1411         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()) &&
1412             (!req->rq_generation_set ||
1413              req->rq_import_generation == imp->imp_generation))
1414                 RETURN (0);
1415
1416         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1417
1418         spin_lock(&imp->imp_lock);
1419
1420         if (!req->rq_generation_set)
1421                 req->rq_import_generation = imp->imp_generation;
1422
1423         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1424                 spin_lock(&req->rq_lock);
1425                 req->rq_waiting = 1;
1426                 spin_unlock(&req->rq_lock);
1427
1428                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1429                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1430                           ptlrpc_import_state_name(req->rq_send_state),
1431                           ptlrpc_import_state_name(imp->imp_state));
1432                 LASSERT(cfs_list_empty(&req->rq_list));
1433                 cfs_list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1434                 cfs_atomic_inc(&req->rq_import->imp_inflight);
1435                 spin_unlock(&imp->imp_lock);
1436                 RETURN(0);
1437         }
1438
1439         if (rc != 0) {
1440                 spin_unlock(&imp->imp_lock);
1441                 req->rq_status = rc;
1442                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1443                 RETURN(rc);
1444         }
1445
1446         LASSERT(cfs_list_empty(&req->rq_list));
1447         cfs_list_add_tail(&req->rq_list, &imp->imp_sending_list);
1448         cfs_atomic_inc(&req->rq_import->imp_inflight);
1449         spin_unlock(&imp->imp_lock);
1450
1451         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1452
1453         rc = sptlrpc_req_refresh_ctx(req, -1);
1454         if (rc) {
1455                 if (req->rq_err) {
1456                         req->rq_status = rc;
1457                         RETURN(1);
1458                 } else {
1459                         req->rq_wait_ctx = 1;
1460                         RETURN(0);
1461                 }
1462         }
1463
1464         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1465                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1466                imp->imp_obd->obd_uuid.uuid,
1467                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1468                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1469                lustre_msg_get_opc(req->rq_reqmsg));
1470
1471         rc = ptl_send_rpc(req, 0);
1472         if (rc) {
1473                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1474                 req->rq_net_err = 1;
1475                 RETURN(rc);
1476         }
1477         RETURN(0);
1478 }
1479
1480 static inline int ptlrpc_set_producer(struct ptlrpc_request_set *set)
1481 {
1482         int remaining, rc;
1483         ENTRY;
1484
1485         LASSERT(set->set_producer != NULL);
1486
1487         remaining = cfs_atomic_read(&set->set_remaining);
1488
1489         /* populate the ->set_requests list with requests until we
1490          * reach the maximum number of RPCs in flight for this set */
1491         while (cfs_atomic_read(&set->set_remaining) < set->set_max_inflight) {
1492                 rc = set->set_producer(set, set->set_producer_arg);
1493                 if (rc == -ENOENT) {
1494                         /* no more RPC to produce */
1495                         set->set_producer     = NULL;
1496                         set->set_producer_arg = NULL;
1497                         RETURN(0);
1498                 }
1499         }
1500
1501         RETURN((cfs_atomic_read(&set->set_remaining) - remaining));
1502 }
1503
1504 /**
1505  * this sends any unsent RPCs in \a set and returns 1 if all are sent
1506  * and no more replies are expected.
1507  * (it is possible to get less replies than requests sent e.g. due to timed out
1508  * requests or requests that we had trouble to send out)
1509  */
1510 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1511 {
1512         cfs_list_t *tmp, *next;
1513         int force_timer_recalc = 0;
1514         ENTRY;
1515
1516         if (cfs_atomic_read(&set->set_remaining) == 0)
1517                 RETURN(1);
1518
1519         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
1520                 struct ptlrpc_request *req =
1521                         cfs_list_entry(tmp, struct ptlrpc_request,
1522                                        rq_set_chain);
1523                 struct obd_import *imp = req->rq_import;
1524                 int unregistered = 0;
1525                 int rc = 0;
1526
1527                 if (req->rq_phase == RQ_PHASE_NEW &&
1528                     ptlrpc_send_new_req(req)) {
1529                         force_timer_recalc = 1;
1530                 }
1531
1532                 /* delayed send - skip */
1533                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1534                         continue;
1535
1536                 /* delayed resend - skip */
1537                 if (req->rq_phase == RQ_PHASE_RPC && req->rq_resend &&
1538                     req->rq_sent > cfs_time_current_sec())
1539                         continue;
1540
1541                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1542                       req->rq_phase == RQ_PHASE_BULK ||
1543                       req->rq_phase == RQ_PHASE_INTERPRET ||
1544                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1545                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1546                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1547                         LBUG();
1548                 }
1549
1550                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1551                         LASSERT(req->rq_next_phase != req->rq_phase);
1552                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1553
1554                         /*
1555                          * Skip processing until reply is unlinked. We
1556                          * can't return to pool before that and we can't
1557                          * call interpret before that. We need to make
1558                          * sure that all rdma transfers finished and will
1559                          * not corrupt any data.
1560                          */
1561                         if (ptlrpc_client_recv_or_unlink(req) ||
1562                             ptlrpc_client_bulk_active(req))
1563                                 continue;
1564
1565                         /*
1566                          * Turn fail_loc off to prevent it from looping
1567                          * forever.
1568                          */
1569                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1570                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1571                                                      OBD_FAIL_ONCE);
1572                         }
1573                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1574                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1575                                                      OBD_FAIL_ONCE);
1576                         }
1577
1578                         /*
1579                          * Move to next phase if reply was successfully
1580                          * unlinked.
1581                          */
1582                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1583                 }
1584
1585                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1586                         continue;
1587
1588                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1589                         GOTO(interpret, req->rq_status);
1590
1591                 /*
1592                  * Note that this also will start async reply unlink.
1593                  */
1594                 if (req->rq_net_err && !req->rq_timedout) {
1595                         ptlrpc_expire_one_request(req, 1);
1596
1597                         /*
1598                          * Check if we still need to wait for unlink.
1599                          */
1600                         if (ptlrpc_client_recv_or_unlink(req) ||
1601                             ptlrpc_client_bulk_active(req))
1602                                 continue;
1603                         /* If there is no need to resend, fail it now. */
1604                         if (req->rq_no_resend) {
1605                                 if (req->rq_status == 0)
1606                                         req->rq_status = -EIO;
1607                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1608                                 GOTO(interpret, req->rq_status);
1609                         } else {
1610                                 continue;
1611                         }
1612                 }
1613
1614                 if (req->rq_err) {
1615                         spin_lock(&req->rq_lock);
1616                         req->rq_replied = 0;
1617                         spin_unlock(&req->rq_lock);
1618                         if (req->rq_status == 0)
1619                                 req->rq_status = -EIO;
1620                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1621                         GOTO(interpret, req->rq_status);
1622                 }
1623
1624                 /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
1625                  * so it sets rq_intr regardless of individual rpc
1626                  * timeouts. The synchronous IO waiting path sets 
1627                  * rq_intr irrespective of whether ptlrpcd
1628                  * has seen a timeout.  Our policy is to only interpret
1629                  * interrupted rpcs after they have timed out, so we
1630                  * need to enforce that here.
1631                  */
1632
1633                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1634                                      req->rq_wait_ctx)) {
1635                         req->rq_status = -EINTR;
1636                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1637                         GOTO(interpret, req->rq_status);
1638                 }
1639
1640                 if (req->rq_phase == RQ_PHASE_RPC) {
1641                         if (req->rq_timedout || req->rq_resend ||
1642                             req->rq_waiting || req->rq_wait_ctx) {
1643                                 int status;
1644
1645                                 if (!ptlrpc_unregister_reply(req, 1))
1646                                         continue;
1647
1648                                 spin_lock(&imp->imp_lock);
1649                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1650                                         /* put on delay list - only if we wait
1651                                          * recovery finished - before send */
1652                                         cfs_list_del_init(&req->rq_list);
1653                                         cfs_list_add_tail(&req->rq_list,
1654                                                           &imp->
1655                                                           imp_delayed_list);
1656                                         spin_unlock(&imp->imp_lock);
1657                                         continue;
1658                                 }
1659
1660                                 if (status != 0)  {
1661                                         req->rq_status = status;
1662                                         ptlrpc_rqphase_move(req,
1663                                                 RQ_PHASE_INTERPRET);
1664                                         spin_unlock(&imp->imp_lock);
1665                                         GOTO(interpret, req->rq_status);
1666                                 }
1667                                 if (ptlrpc_no_resend(req) &&
1668                                     !req->rq_wait_ctx) {
1669                                         req->rq_status = -ENOTCONN;
1670                                         ptlrpc_rqphase_move(req,
1671                                                             RQ_PHASE_INTERPRET);
1672                                         spin_unlock(&imp->imp_lock);
1673                                         GOTO(interpret, req->rq_status);
1674                                 }
1675
1676                                 cfs_list_del_init(&req->rq_list);
1677                                 cfs_list_add_tail(&req->rq_list,
1678                                                   &imp->imp_sending_list);
1679
1680                                 spin_unlock(&imp->imp_lock);
1681
1682                                 spin_lock(&req->rq_lock);
1683                                 req->rq_waiting = 0;
1684                                 spin_unlock(&req->rq_lock);
1685
1686                                 if (req->rq_timedout || req->rq_resend) {
1687                                         /* This is re-sending anyways,
1688                                          * let's mark req as resend. */
1689                                         spin_lock(&req->rq_lock);
1690                                         req->rq_resend = 1;
1691                                         spin_unlock(&req->rq_lock);
1692                                         if (req->rq_bulk) {
1693                                                 __u64 old_xid;
1694
1695                                                 if (!ptlrpc_unregister_bulk(req, 1))
1696                                                         continue;
1697
1698                                                 /* ensure previous bulk fails */
1699                                                 old_xid = req->rq_xid;
1700                                                 req->rq_xid = ptlrpc_next_xid();
1701                                                 CDEBUG(D_HA, "resend bulk "
1702                                                        "old x"LPU64
1703                                                        " new x"LPU64"\n",
1704                                                        old_xid, req->rq_xid);
1705                                         }
1706                                 }
1707                                 /*
1708                                  * rq_wait_ctx is only touched by ptlrpcd,
1709                                  * so no lock is needed here.
1710                                  */
1711                                 status = sptlrpc_req_refresh_ctx(req, -1);
1712                                 if (status) {
1713                                         if (req->rq_err) {
1714                                                 req->rq_status = status;
1715                                                 spin_lock(&req->rq_lock);
1716                                                 req->rq_wait_ctx = 0;
1717                                                 spin_unlock(&req->rq_lock);
1718                                                 force_timer_recalc = 1;
1719                                         } else {
1720                                                 spin_lock(&req->rq_lock);
1721                                                 req->rq_wait_ctx = 1;
1722                                                 spin_unlock(&req->rq_lock);
1723                                         }
1724
1725                                         continue;
1726                                 } else {
1727                                         spin_lock(&req->rq_lock);
1728                                         req->rq_wait_ctx = 0;
1729                                         spin_unlock(&req->rq_lock);
1730                                 }
1731
1732                                 rc = ptl_send_rpc(req, 0);
1733                                 if (rc) {
1734                                         DEBUG_REQ(D_HA, req,
1735                                                   "send failed: rc = %d", rc);
1736                                         force_timer_recalc = 1;
1737                                         spin_lock(&req->rq_lock);
1738                                         req->rq_net_err = 1;
1739                                         spin_unlock(&req->rq_lock);
1740                                 }
1741                                 /* need to reset the timeout */
1742                                 force_timer_recalc = 1;
1743                         }
1744
1745                         spin_lock(&req->rq_lock);
1746
1747                         if (ptlrpc_client_early(req)) {
1748                                 ptlrpc_at_recv_early_reply(req);
1749                                 spin_unlock(&req->rq_lock);
1750                                 continue;
1751                         }
1752
1753                         /* Still waiting for a reply? */
1754                         if (ptlrpc_client_recv(req)) {
1755                                 spin_unlock(&req->rq_lock);
1756                                 continue;
1757                         }
1758
1759                         /* Did we actually receive a reply? */
1760                         if (!ptlrpc_client_replied(req)) {
1761                                 spin_unlock(&req->rq_lock);
1762                                 continue;
1763                         }
1764
1765                         spin_unlock(&req->rq_lock);
1766
1767                         /* unlink from net because we are going to
1768                          * swab in-place of reply buffer */
1769                         unregistered = ptlrpc_unregister_reply(req, 1);
1770                         if (!unregistered)
1771                                 continue;
1772
1773                         req->rq_status = after_reply(req);
1774                         if (req->rq_resend)
1775                                 continue;
1776
1777                         /* If there is no bulk associated with this request,
1778                          * then we're done and should let the interpreter
1779                          * process the reply. Similarly if the RPC returned
1780                          * an error, and therefore the bulk will never arrive.
1781                          */
1782                         if (req->rq_bulk == NULL || req->rq_status < 0) {
1783                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1784                                 GOTO(interpret, req->rq_status);
1785                         }
1786
1787                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1788                 }
1789
1790                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1791                 if (ptlrpc_client_bulk_active(req))
1792                         continue;
1793
1794                 if (req->rq_bulk->bd_failure) {
1795                         /* The RPC reply arrived OK, but the bulk screwed
1796                          * up!  Dead weird since the server told us the RPC
1797                          * was good after getting the REPLY for her GET or
1798                          * the ACK for her PUT. */
1799                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1800                         req->rq_status = -EIO;
1801                 }
1802
1803                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1804
1805         interpret:
1806                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1807
1808                 /* This moves to "unregistering" phase we need to wait for
1809                  * reply unlink. */
1810                 if (!unregistered && !ptlrpc_unregister_reply(req, 1)) {
1811                         /* start async bulk unlink too */
1812                         ptlrpc_unregister_bulk(req, 1);
1813                         continue;
1814                 }
1815
1816                 if (!ptlrpc_unregister_bulk(req, 1))
1817                         continue;
1818
1819                 /* When calling interpret receiving already should be
1820                  * finished. */
1821                 LASSERT(!req->rq_receiving_reply);
1822
1823                 ptlrpc_req_interpret(env, req, req->rq_status);
1824
1825                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1826
1827                 CDEBUG(req->rq_reqmsg != NULL ? D_RPCTRACE : 0,
1828                         "Completed RPC pname:cluuid:pid:xid:nid:"
1829                         "opc %s:%s:%d:"LPU64":%s:%d\n",
1830                         cfs_curproc_comm(), imp->imp_obd->obd_uuid.uuid,
1831                         lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1832                         libcfs_nid2str(imp->imp_connection->c_peer.nid),
1833                         lustre_msg_get_opc(req->rq_reqmsg));
1834
1835                 spin_lock(&imp->imp_lock);
1836                 /* Request already may be not on sending or delaying list. This
1837                  * may happen in the case of marking it erroneous for the case
1838                  * ptlrpc_import_delay_req(req, status) find it impossible to
1839                  * allow sending this rpc and returns *status != 0. */
1840                 if (!cfs_list_empty(&req->rq_list)) {
1841                         cfs_list_del_init(&req->rq_list);
1842                         cfs_atomic_dec(&imp->imp_inflight);
1843                 }
1844                 spin_unlock(&imp->imp_lock);
1845
1846                 cfs_atomic_dec(&set->set_remaining);
1847                 cfs_waitq_broadcast(&imp->imp_recovery_waitq);
1848
1849                 if (set->set_producer) {
1850                         /* produce a new request if possible */
1851                         if (ptlrpc_set_producer(set) > 0)
1852                                 force_timer_recalc = 1;
1853
1854                         /* free the request that has just been completed
1855                          * in order not to pollute set->set_requests */
1856                         cfs_list_del_init(&req->rq_set_chain);
1857                         spin_lock(&req->rq_lock);
1858                         req->rq_set = NULL;
1859                         req->rq_invalid_rqset = 0;
1860                         spin_unlock(&req->rq_lock);
1861
1862                         /* record rq_status to compute the final status later */
1863                         if (req->rq_status != 0)
1864                                 set->set_rc = req->rq_status;
1865                         ptlrpc_req_finished(req);
1866                 }
1867         }
1868
1869         /* If we hit an error, we want to recover promptly. */
1870         RETURN(cfs_atomic_read(&set->set_remaining) == 0 || force_timer_recalc);
1871 }
1872 EXPORT_SYMBOL(ptlrpc_check_set);
1873
1874 /**
1875  * Time out request \a req. is \a async_unlink is set, that means do not wait
1876  * until LNet actually confirms network buffer unlinking.
1877  * Return 1 if we should give up further retrying attempts or 0 otherwise.
1878  */
1879 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1880 {
1881         struct obd_import *imp = req->rq_import;
1882         int rc = 0;
1883         ENTRY;
1884
1885         spin_lock(&req->rq_lock);
1886         req->rq_timedout = 1;
1887         spin_unlock(&req->rq_lock);
1888
1889         DEBUG_REQ(D_WARNING, req, "Request sent has %s: [sent "CFS_DURATION_T
1890                   "/real "CFS_DURATION_T"]",
1891                   req->rq_net_err ? "failed due to network error" :
1892                      ((req->rq_real_sent == 0 ||
1893                        cfs_time_before(req->rq_real_sent, req->rq_sent) ||
1894                        cfs_time_aftereq(req->rq_real_sent, req->rq_deadline)) ?
1895                       "timed out for sent delay" : "timed out for slow reply"),
1896                   req->rq_sent, req->rq_real_sent);
1897
1898         if (imp != NULL && obd_debug_peer_on_timeout)
1899                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1900
1901         ptlrpc_unregister_reply(req, async_unlink);
1902         ptlrpc_unregister_bulk(req, async_unlink);
1903
1904         if (obd_dump_on_timeout)
1905                 libcfs_debug_dumplog();
1906
1907         if (imp == NULL) {
1908                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1909                 RETURN(1);
1910         }
1911
1912         cfs_atomic_inc(&imp->imp_timeouts);
1913
1914         /* The DLM server doesn't want recovery run on its imports. */
1915         if (imp->imp_dlm_fake)
1916                 RETURN(1);
1917
1918         /* If this request is for recovery or other primordial tasks,
1919          * then error it out here. */
1920         if (req->rq_ctx_init || req->rq_ctx_fini ||
1921             req->rq_send_state != LUSTRE_IMP_FULL ||
1922             imp->imp_obd->obd_no_recov) {
1923                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1924                           ptlrpc_import_state_name(req->rq_send_state),
1925                           ptlrpc_import_state_name(imp->imp_state));
1926                 spin_lock(&req->rq_lock);
1927                 req->rq_status = -ETIMEDOUT;
1928                 req->rq_err = 1;
1929                 spin_unlock(&req->rq_lock);
1930                 RETURN(1);
1931         }
1932
1933         /* if a request can't be resent we can't wait for an answer after
1934            the timeout */
1935         if (ptlrpc_no_resend(req)) {
1936                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1937                 rc = 1;
1938         }
1939
1940         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1941
1942         RETURN(rc);
1943 }
1944
1945 /**
1946  * Time out all uncompleted requests in request set pointed by \a data
1947  * Callback used when waiting on sets with l_wait_event.
1948  * Always returns 1.
1949  */
1950 int ptlrpc_expired_set(void *data)
1951 {
1952         struct ptlrpc_request_set *set = data;
1953         cfs_list_t                *tmp;
1954         time_t                     now = cfs_time_current_sec();
1955         ENTRY;
1956
1957         LASSERT(set != NULL);
1958
1959         /*
1960          * A timeout expired. See which reqs it applies to...
1961          */
1962         cfs_list_for_each (tmp, &set->set_requests) {
1963                 struct ptlrpc_request *req =
1964                         cfs_list_entry(tmp, struct ptlrpc_request,
1965                                        rq_set_chain);
1966
1967                 /* don't expire request waiting for context */
1968                 if (req->rq_wait_ctx)
1969                         continue;
1970
1971                 /* Request in-flight? */
1972                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1973                        !req->rq_waiting && !req->rq_resend) ||
1974                       (req->rq_phase == RQ_PHASE_BULK)))
1975                         continue;
1976
1977                 if (req->rq_timedout ||     /* already dealt with */
1978                     req->rq_deadline > now) /* not expired */
1979                         continue;
1980
1981                 /* Deal with this guy. Do it asynchronously to not block
1982                  * ptlrpcd thread. */
1983                 ptlrpc_expire_one_request(req, 1);
1984         }
1985
1986         /*
1987          * When waiting for a whole set, we always break out of the
1988          * sleep so we can recalculate the timeout, or enable interrupts
1989          * if everyone's timed out.
1990          */
1991         RETURN(1);
1992 }
1993 EXPORT_SYMBOL(ptlrpc_expired_set);
1994
1995 /**
1996  * Sets rq_intr flag in \a req under spinlock.
1997  */
1998 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1999 {
2000         spin_lock(&req->rq_lock);
2001         req->rq_intr = 1;
2002         spin_unlock(&req->rq_lock);
2003 }
2004 EXPORT_SYMBOL(ptlrpc_mark_interrupted);
2005
2006 /**
2007  * Interrupts (sets interrupted flag) all uncompleted requests in
2008  * a set \a data. Callback for l_wait_event for interruptible waits.
2009  */
2010 void ptlrpc_interrupted_set(void *data)
2011 {
2012         struct ptlrpc_request_set *set = data;
2013         cfs_list_t *tmp;
2014
2015         LASSERT(set != NULL);
2016         CDEBUG(D_RPCTRACE, "INTERRUPTED SET %p\n", set);
2017
2018         cfs_list_for_each(tmp, &set->set_requests) {
2019                 struct ptlrpc_request *req =
2020                         cfs_list_entry(tmp, struct ptlrpc_request,
2021                                        rq_set_chain);
2022
2023                 if (req->rq_phase != RQ_PHASE_RPC &&
2024                     req->rq_phase != RQ_PHASE_UNREGISTERING)
2025                         continue;
2026
2027                 ptlrpc_mark_interrupted(req);
2028         }
2029 }
2030 EXPORT_SYMBOL(ptlrpc_interrupted_set);
2031
2032 /**
2033  * Get the smallest timeout in the set; this does NOT set a timeout.
2034  */
2035 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
2036 {
2037         cfs_list_t            *tmp;
2038         time_t                 now = cfs_time_current_sec();
2039         int                    timeout = 0;
2040         struct ptlrpc_request *req;
2041         int                    deadline;
2042         ENTRY;
2043
2044         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
2045
2046         cfs_list_for_each(tmp, &set->set_requests) {
2047                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2048
2049                 /*
2050                  * Request in-flight?
2051                  */
2052                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
2053                       (req->rq_phase == RQ_PHASE_BULK) ||
2054                       (req->rq_phase == RQ_PHASE_NEW)))
2055                         continue;
2056
2057                 /*
2058                  * Already timed out.
2059                  */
2060                 if (req->rq_timedout)
2061                         continue;
2062
2063                 /*
2064                  * Waiting for ctx.
2065                  */
2066                 if (req->rq_wait_ctx)
2067                         continue;
2068
2069                 if (req->rq_phase == RQ_PHASE_NEW)
2070                         deadline = req->rq_sent;
2071                 else if (req->rq_phase == RQ_PHASE_RPC && req->rq_resend)
2072                         deadline = req->rq_sent;
2073                 else
2074                         deadline = req->rq_sent + req->rq_timeout;
2075
2076                 if (deadline <= now)    /* actually expired already */
2077                         timeout = 1;    /* ASAP */
2078                 else if (timeout == 0 || timeout > deadline - now)
2079                         timeout = deadline - now;
2080         }
2081         RETURN(timeout);
2082 }
2083 EXPORT_SYMBOL(ptlrpc_set_next_timeout);
2084
2085 /**
2086  * Send all unset request from the set and then wait untill all
2087  * requests in the set complete (either get a reply, timeout, get an
2088  * error or otherwise be interrupted).
2089  * Returns 0 on success or error code otherwise.
2090  */
2091 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
2092 {
2093         cfs_list_t            *tmp;
2094         struct ptlrpc_request *req;
2095         struct l_wait_info     lwi;
2096         int                    rc, timeout;
2097         ENTRY;
2098
2099         if (set->set_producer)
2100                 (void)ptlrpc_set_producer(set);
2101         else
2102                 cfs_list_for_each(tmp, &set->set_requests) {
2103                         req = cfs_list_entry(tmp, struct ptlrpc_request,
2104                                              rq_set_chain);
2105                         if (req->rq_phase == RQ_PHASE_NEW)
2106                                 (void)ptlrpc_send_new_req(req);
2107                 }
2108
2109         if (cfs_list_empty(&set->set_requests))
2110                 RETURN(0);
2111
2112         do {
2113                 timeout = ptlrpc_set_next_timeout(set);
2114
2115                 /* wait until all complete, interrupted, or an in-flight
2116                  * req times out */
2117                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
2118                        set, timeout);
2119
2120                 if (timeout == 0 && !cfs_signal_pending())
2121                         /*
2122                          * No requests are in-flight (ether timed out
2123                          * or delayed), so we can allow interrupts.
2124                          * We still want to block for a limited time,
2125                          * so we allow interrupts during the timeout.
2126                          */
2127                         lwi = LWI_TIMEOUT_INTR_ALL(cfs_time_seconds(1), 
2128                                                    ptlrpc_expired_set,
2129                                                    ptlrpc_interrupted_set, set);
2130                 else
2131                         /*
2132                          * At least one request is in flight, so no
2133                          * interrupts are allowed. Wait until all
2134                          * complete, or an in-flight req times out. 
2135                          */
2136                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
2137                                           ptlrpc_expired_set, set);
2138
2139                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
2140
2141                 /* LU-769 - if we ignored the signal because it was already
2142                  * pending when we started, we need to handle it now or we risk
2143                  * it being ignored forever */
2144                 if (rc == -ETIMEDOUT && !lwi.lwi_allow_intr &&
2145                     cfs_signal_pending()) {
2146                         cfs_sigset_t blocked_sigs =
2147                                            cfs_block_sigsinv(LUSTRE_FATAL_SIGS);
2148
2149                         /* In fact we only interrupt for the "fatal" signals
2150                          * like SIGINT or SIGKILL. We still ignore less
2151                          * important signals since ptlrpc set is not easily
2152                          * reentrant from userspace again */
2153                         if (cfs_signal_pending())
2154                                 ptlrpc_interrupted_set(set);
2155                         cfs_restore_sigs(blocked_sigs);
2156                 }
2157
2158                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
2159
2160                 /* -EINTR => all requests have been flagged rq_intr so next
2161                  * check completes.
2162                  * -ETIMEDOUT => someone timed out.  When all reqs have
2163                  * timed out, signals are enabled allowing completion with
2164                  * EINTR.
2165                  * I don't really care if we go once more round the loop in
2166                  * the error cases -eeb. */
2167                 if (rc == 0 && cfs_atomic_read(&set->set_remaining) == 0) {
2168                         cfs_list_for_each(tmp, &set->set_requests) {
2169                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2170                                                      rq_set_chain);
2171                                 spin_lock(&req->rq_lock);
2172                                 req->rq_invalid_rqset = 1;
2173                                 spin_unlock(&req->rq_lock);
2174                         }
2175                 }
2176         } while (rc != 0 || cfs_atomic_read(&set->set_remaining) != 0);
2177
2178         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
2179
2180         rc = set->set_rc; /* rq_status of already freed requests if any */
2181         cfs_list_for_each(tmp, &set->set_requests) {
2182                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2183
2184                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
2185                 if (req->rq_status != 0)
2186                         rc = req->rq_status;
2187         }
2188
2189         if (set->set_interpret != NULL) {
2190                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
2191                         set->set_interpret;
2192                 rc = interpreter (set, set->set_arg, rc);
2193         } else {
2194                 struct ptlrpc_set_cbdata *cbdata, *n;
2195                 int err;
2196
2197                 cfs_list_for_each_entry_safe(cbdata, n,
2198                                          &set->set_cblist, psc_item) {
2199                         cfs_list_del_init(&cbdata->psc_item);
2200                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
2201                         if (err && !rc)
2202                                 rc = err;
2203                         OBD_FREE_PTR(cbdata);
2204                 }
2205         }
2206
2207         RETURN(rc);
2208 }
2209 EXPORT_SYMBOL(ptlrpc_set_wait);
2210
2211 /**
2212  * Helper fuction for request freeing.
2213  * Called when request count reached zero and request needs to be freed.
2214  * Removes request from all sorts of sending/replay lists it might be on,
2215  * frees network buffers if any are present.
2216  * If \a locked is set, that means caller is already holding import imp_lock
2217  * and so we no longer need to reobtain it (for certain lists manipulations)
2218  */
2219 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
2220 {
2221         ENTRY;
2222         if (request == NULL) {
2223                 EXIT;
2224                 return;
2225         }
2226
2227         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
2228         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
2229         LASSERTF(cfs_list_empty(&request->rq_list), "req %p\n", request);
2230         LASSERTF(cfs_list_empty(&request->rq_set_chain), "req %p\n", request);
2231         LASSERTF(cfs_list_empty(&request->rq_exp_list), "req %p\n", request);
2232         LASSERTF(!request->rq_replay, "req %p\n", request);
2233
2234         req_capsule_fini(&request->rq_pill);
2235
2236         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
2237          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
2238         if (request->rq_import != NULL) {
2239                 if (!locked)
2240                         spin_lock(&request->rq_import->imp_lock);
2241                 cfs_list_del_init(&request->rq_replay_list);
2242                 if (!locked)
2243                         spin_unlock(&request->rq_import->imp_lock);
2244         }
2245         LASSERTF(cfs_list_empty(&request->rq_replay_list), "req %p\n", request);
2246
2247         if (cfs_atomic_read(&request->rq_refcount) != 0) {
2248                 DEBUG_REQ(D_ERROR, request,
2249                           "freeing request with nonzero refcount");
2250                 LBUG();
2251         }
2252
2253         if (request->rq_repbuf != NULL)
2254                 sptlrpc_cli_free_repbuf(request);
2255         if (request->rq_export != NULL) {
2256                 class_export_put(request->rq_export);
2257                 request->rq_export = NULL;
2258         }
2259         if (request->rq_import != NULL) {
2260                 class_import_put(request->rq_import);
2261                 request->rq_import = NULL;
2262         }
2263         if (request->rq_bulk != NULL)
2264                 ptlrpc_free_bulk_pin(request->rq_bulk);
2265
2266         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
2267                 sptlrpc_cli_free_reqbuf(request);
2268
2269         if (request->rq_cli_ctx)
2270                 sptlrpc_req_put_ctx(request, !locked);
2271
2272         if (request->rq_pool)
2273                 __ptlrpc_free_req_to_pool(request);
2274         else
2275                 ptlrpc_request_cache_free(request);
2276         EXIT;
2277 }
2278
2279 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
2280 /**
2281  * Drop one request reference. Must be called with import imp_lock held.
2282  * When reference count drops to zero, reuqest is freed.
2283  */
2284 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
2285 {
2286         LASSERT(spin_is_locked(&request->rq_import->imp_lock));
2287         (void)__ptlrpc_req_finished(request, 1);
2288 }
2289 EXPORT_SYMBOL(ptlrpc_req_finished_with_imp_lock);
2290
2291 /**
2292  * Helper function
2293  * Drops one reference count for request \a request.
2294  * \a locked set indicates that caller holds import imp_lock.
2295  * Frees the request whe reference count reaches zero.
2296  */
2297 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
2298 {
2299         ENTRY;
2300         if (request == NULL)
2301                 RETURN(1);
2302
2303         if (request == LP_POISON ||
2304             request->rq_reqmsg == LP_POISON) {
2305                 CERROR("dereferencing freed request (bug 575)\n");
2306                 LBUG();
2307                 RETURN(1);
2308         }
2309
2310         DEBUG_REQ(D_INFO, request, "refcount now %u",
2311                   cfs_atomic_read(&request->rq_refcount) - 1);
2312
2313         if (cfs_atomic_dec_and_test(&request->rq_refcount)) {
2314                 __ptlrpc_free_req(request, locked);
2315                 RETURN(1);
2316         }
2317
2318         RETURN(0);
2319 }
2320
2321 /**
2322  * Drops one reference count for a request.
2323  */
2324 void ptlrpc_req_finished(struct ptlrpc_request *request)
2325 {
2326         __ptlrpc_req_finished(request, 0);
2327 }
2328 EXPORT_SYMBOL(ptlrpc_req_finished);
2329
2330 /**
2331  * Returns xid of a \a request
2332  */
2333 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
2334 {
2335         return request->rq_xid;
2336 }
2337 EXPORT_SYMBOL(ptlrpc_req_xid);
2338
2339 /**
2340  * Disengage the client's reply buffer from the network
2341  * NB does _NOT_ unregister any client-side bulk.
2342  * IDEMPOTENT, but _not_ safe against concurrent callers.
2343  * The request owner (i.e. the thread doing the I/O) must call...
2344  * Returns 0 on success or 1 if unregistering cannot be made.
2345  */
2346 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
2347 {
2348         int                rc;
2349         struct l_wait_info lwi;
2350
2351         /*
2352          * Might sleep.
2353          */
2354         LASSERT(!cfs_in_interrupt());
2355
2356         /*
2357          * Let's setup deadline for reply unlink.
2358          */
2359         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
2360             async && request->rq_reply_deadline == 0)
2361                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
2362
2363         /*
2364          * Nothing left to do.
2365          */
2366         if (!ptlrpc_client_recv_or_unlink(request))
2367                 RETURN(1);
2368
2369         LNetMDUnlink(request->rq_reply_md_h);
2370
2371         /*
2372          * Let's check it once again.
2373          */
2374         if (!ptlrpc_client_recv_or_unlink(request))
2375                 RETURN(1);
2376
2377         /*
2378          * Move to "Unregistering" phase as reply was not unlinked yet.
2379          */
2380         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
2381
2382         /*
2383          * Do not wait for unlink to finish.
2384          */
2385         if (async)
2386                 RETURN(0);
2387
2388         /*
2389          * We have to l_wait_event() whatever the result, to give liblustre
2390          * a chance to run reply_in_callback(), and to make sure we've
2391          * unlinked before returning a req to the pool.
2392          */
2393         for (;;) {
2394 #ifdef __KERNEL__
2395                 /* The wq argument is ignored by user-space wait_event macros */
2396                 cfs_waitq_t *wq = (request->rq_set != NULL) ?
2397                                   &request->rq_set->set_waitq :
2398                                   &request->rq_reply_waitq;
2399 #endif
2400                 /* Network access will complete in finite time but the HUGE
2401                  * timeout lets us CWARN for visibility of sluggish NALs */
2402                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2403                                            cfs_time_seconds(1), NULL, NULL);
2404                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
2405                                   &lwi);
2406                 if (rc == 0) {
2407                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2408                         RETURN(1);
2409                 }
2410
2411                 LASSERT(rc == -ETIMEDOUT);
2412                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2413                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
2414                           request->rq_must_unlink);
2415         }
2416         RETURN(0);
2417 }
2418 EXPORT_SYMBOL(ptlrpc_unregister_reply);
2419
2420 /**
2421  * Iterates through replay_list on import and prunes
2422  * all requests have transno smaller than last_committed for the
2423  * import and don't have rq_replay set.
2424  * Since requests are sorted in transno order, stops when meetign first
2425  * transno bigger than last_committed.
2426  * caller must hold imp->imp_lock
2427  */
2428 void ptlrpc_free_committed(struct obd_import *imp)
2429 {
2430         cfs_list_t *tmp, *saved;
2431         struct ptlrpc_request *req;
2432         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
2433         ENTRY;
2434
2435         LASSERT(imp != NULL);
2436         LASSERT(spin_is_locked(&imp->imp_lock));
2437
2438
2439         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2440             imp->imp_generation == imp->imp_last_generation_checked) {
2441                 CDEBUG(D_INFO, "%s: skip recheck: last_committed "LPU64"\n",
2442                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2443                 EXIT;
2444                 return;
2445         }
2446         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2447                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2448                imp->imp_generation);
2449         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2450         imp->imp_last_generation_checked = imp->imp_generation;
2451
2452         cfs_list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
2453                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2454                                      rq_replay_list);
2455
2456                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2457                 LASSERT(req != last_req);
2458                 last_req = req;
2459
2460                 if (req->rq_transno == 0) {
2461                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2462                         LBUG();
2463                 }
2464                 if (req->rq_import_generation < imp->imp_generation) {
2465                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2466                         GOTO(free_req, 0);
2467                 }
2468
2469                 if (req->rq_replay) {
2470                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2471                         continue;
2472                 }
2473
2474                 /* not yet committed */
2475                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2476                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2477                         break;
2478                 }
2479
2480                 DEBUG_REQ(D_INFO, req, "commit (last_committed "LPU64")",
2481                           imp->imp_peer_committed_transno);
2482 free_req:
2483                 spin_lock(&req->rq_lock);
2484                 req->rq_replay = 0;
2485                 spin_unlock(&req->rq_lock);
2486                 if (req->rq_commit_cb != NULL)
2487                         req->rq_commit_cb(req);
2488                 cfs_list_del_init(&req->rq_replay_list);
2489                 __ptlrpc_req_finished(req, 1);
2490         }
2491
2492         EXIT;
2493         return;
2494 }
2495
2496 void ptlrpc_cleanup_client(struct obd_import *imp)
2497 {
2498         ENTRY;
2499         EXIT;
2500         return;
2501 }
2502 EXPORT_SYMBOL(ptlrpc_cleanup_client);
2503
2504 /**
2505  * Schedule previously sent request for resend.
2506  * For bulk requests we assign new xid (to avoid problems with
2507  * lost replies and therefore several transfers landing into same buffer
2508  * from different sending attempts).
2509  */
2510 void ptlrpc_resend_req(struct ptlrpc_request *req)
2511 {
2512         DEBUG_REQ(D_HA, req, "going to resend");
2513         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2514         req->rq_status = -EAGAIN;
2515
2516         spin_lock(&req->rq_lock);
2517         req->rq_resend = 1;
2518         req->rq_net_err = 0;
2519         req->rq_timedout = 0;
2520         if (req->rq_bulk) {
2521                 __u64 old_xid = req->rq_xid;
2522
2523                 /* ensure previous bulk fails */
2524                 req->rq_xid = ptlrpc_next_xid();
2525                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2526                        old_xid, req->rq_xid);
2527         }
2528         ptlrpc_client_wake_req(req);
2529         spin_unlock(&req->rq_lock);
2530 }
2531 EXPORT_SYMBOL(ptlrpc_resend_req);
2532
2533 /* XXX: this function and rq_status are currently unused */
2534 void ptlrpc_restart_req(struct ptlrpc_request *req)
2535 {
2536         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2537         req->rq_status = -ERESTARTSYS;
2538
2539         spin_lock(&req->rq_lock);
2540         req->rq_restart = 1;
2541         req->rq_timedout = 0;
2542         ptlrpc_client_wake_req(req);
2543         spin_unlock(&req->rq_lock);
2544 }
2545 EXPORT_SYMBOL(ptlrpc_restart_req);
2546
2547 /**
2548  * Grab additional reference on a request \a req
2549  */
2550 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2551 {
2552         ENTRY;
2553         cfs_atomic_inc(&req->rq_refcount);
2554         RETURN(req);
2555 }
2556 EXPORT_SYMBOL(ptlrpc_request_addref);
2557
2558 /**
2559  * Add a request to import replay_list.
2560  * Must be called under imp_lock
2561  */
2562 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2563                                       struct obd_import *imp)
2564 {
2565         cfs_list_t *tmp;
2566
2567         LASSERT(spin_is_locked(&imp->imp_lock));
2568
2569         if (req->rq_transno == 0) {
2570                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2571                 LBUG();
2572         }
2573
2574         /* clear this for new requests that were resent as well
2575            as resent replayed requests. */
2576         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2577
2578         /* don't re-add requests that have been replayed */
2579         if (!cfs_list_empty(&req->rq_replay_list))
2580                 return;
2581
2582         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2583
2584         LASSERT(imp->imp_replayable);
2585         /* Balanced in ptlrpc_free_committed, usually. */
2586         ptlrpc_request_addref(req);
2587         cfs_list_for_each_prev(tmp, &imp->imp_replay_list) {
2588                 struct ptlrpc_request *iter =
2589                         cfs_list_entry(tmp, struct ptlrpc_request,
2590                                        rq_replay_list);
2591
2592                 /* We may have duplicate transnos if we create and then
2593                  * open a file, or for closes retained if to match creating
2594                  * opens, so use req->rq_xid as a secondary key.
2595                  * (See bugs 684, 685, and 428.)
2596                  * XXX no longer needed, but all opens need transnos!
2597                  */
2598                 if (iter->rq_transno > req->rq_transno)
2599                         continue;
2600
2601                 if (iter->rq_transno == req->rq_transno) {
2602                         LASSERT(iter->rq_xid != req->rq_xid);
2603                         if (iter->rq_xid > req->rq_xid)
2604                                 continue;
2605                 }
2606
2607                 cfs_list_add(&req->rq_replay_list, &iter->rq_replay_list);
2608                 return;
2609         }
2610
2611         cfs_list_add(&req->rq_replay_list, &imp->imp_replay_list);
2612 }
2613 EXPORT_SYMBOL(ptlrpc_retain_replayable_request);
2614
2615 /**
2616  * Send request and wait until it completes.
2617  * Returns request processing status.
2618  */
2619 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2620 {
2621         struct ptlrpc_request_set *set;
2622         int rc;
2623         ENTRY;
2624
2625         LASSERT(req->rq_set == NULL);
2626         LASSERT(!req->rq_receiving_reply);
2627
2628         set = ptlrpc_prep_set();
2629         if (set == NULL) {
2630                 CERROR("Unable to allocate ptlrpc set.");
2631                 RETURN(-ENOMEM);
2632         }
2633
2634         /* for distributed debugging */
2635         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2636
2637         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2638         ptlrpc_request_addref(req);
2639         ptlrpc_set_add_req(set, req);
2640         rc = ptlrpc_set_wait(set);
2641         ptlrpc_set_destroy(set);
2642
2643         RETURN(rc);
2644 }
2645 EXPORT_SYMBOL(ptlrpc_queue_wait);
2646
2647 struct ptlrpc_replay_async_args {
2648         int praa_old_state;
2649         int praa_old_status;
2650 };
2651
2652 /**
2653  * Callback used for replayed requests reply processing.
2654  * In case of succesful reply calls registeresd request replay callback.
2655  * In case of error restart replay process.
2656  */
2657 static int ptlrpc_replay_interpret(const struct lu_env *env,
2658                                    struct ptlrpc_request *req,
2659                                    void * data, int rc)
2660 {
2661         struct ptlrpc_replay_async_args *aa = data;
2662         struct obd_import *imp = req->rq_import;
2663
2664         ENTRY;
2665         cfs_atomic_dec(&imp->imp_replay_inflight);
2666
2667         if (!ptlrpc_client_replied(req)) {
2668                 CERROR("request replay timed out, restarting recovery\n");
2669                 GOTO(out, rc = -ETIMEDOUT);
2670         }
2671
2672         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2673             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2674              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2675                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2676
2677         /** VBR: check version failure */
2678         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2679                 /** replay was failed due to version mismatch */
2680                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2681                 spin_lock(&imp->imp_lock);
2682                 imp->imp_vbr_failed = 1;
2683                 imp->imp_no_lock_replay = 1;
2684                 spin_unlock(&imp->imp_lock);
2685                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2686         } else {
2687                 /** The transno had better not change over replay. */
2688                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2689                          lustre_msg_get_transno(req->rq_repmsg) ||
2690                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2691                          LPX64"/"LPX64"\n",
2692                          lustre_msg_get_transno(req->rq_reqmsg),
2693                          lustre_msg_get_transno(req->rq_repmsg));
2694         }
2695
2696         spin_lock(&imp->imp_lock);
2697         /** if replays by version then gap occur on server, no trust to locks */
2698         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2699                 imp->imp_no_lock_replay = 1;
2700         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2701         spin_unlock(&imp->imp_lock);
2702         LASSERT(imp->imp_last_replay_transno);
2703
2704         /* transaction number shouldn't be bigger than the latest replayed */
2705         if (req->rq_transno > lustre_msg_get_transno(req->rq_reqmsg)) {
2706                 DEBUG_REQ(D_ERROR, req,
2707                           "Reported transno "LPU64" is bigger than the "
2708                           "replayed one: "LPU64, req->rq_transno,
2709                           lustre_msg_get_transno(req->rq_reqmsg));
2710                 GOTO(out, rc = -EINVAL);
2711         }
2712
2713         DEBUG_REQ(D_HA, req, "got rep");
2714
2715         /* let the callback do fixups, possibly including in the request */
2716         if (req->rq_replay_cb)
2717                 req->rq_replay_cb(req);
2718
2719         if (ptlrpc_client_replied(req) &&
2720             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2721                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2722                           lustre_msg_get_status(req->rq_repmsg),
2723                           aa->praa_old_status);
2724         } else {
2725                 /* Put it back for re-replay. */
2726                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2727         }
2728
2729         /*
2730          * Errors while replay can set transno to 0, but
2731          * imp_last_replay_transno shouldn't be set to 0 anyway
2732          */
2733         if (req->rq_transno == 0)
2734                 CERROR("Transno is 0 during replay!\n");
2735
2736         /* continue with recovery */
2737         rc = ptlrpc_import_recovery_state_machine(imp);
2738  out:
2739         req->rq_send_state = aa->praa_old_state;
2740
2741         if (rc != 0)
2742                 /* this replay failed, so restart recovery */
2743                 ptlrpc_connect_import(imp);
2744
2745         RETURN(rc);
2746 }
2747
2748 /**
2749  * Prepares and queues request for replay.
2750  * Adds it to ptlrpcd queue for actual sending.
2751  * Returns 0 on success.
2752  */
2753 int ptlrpc_replay_req(struct ptlrpc_request *req)
2754 {
2755         struct ptlrpc_replay_async_args *aa;
2756         ENTRY;
2757
2758         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2759
2760         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2761         aa = ptlrpc_req_async_args(req);
2762         memset(aa, 0, sizeof *aa);
2763
2764         /* Prepare request to be resent with ptlrpcd */
2765         aa->praa_old_state = req->rq_send_state;
2766         req->rq_send_state = LUSTRE_IMP_REPLAY;
2767         req->rq_phase = RQ_PHASE_NEW;
2768         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2769         if (req->rq_repmsg)
2770                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2771         req->rq_status = 0;
2772         req->rq_interpret_reply = ptlrpc_replay_interpret;
2773         /* Readjust the timeout for current conditions */
2774         ptlrpc_at_set_req_timeout(req);
2775
2776         /* Tell server the net_latency, so the server can calculate how long
2777          * it should wait for next replay */
2778         lustre_msg_set_service_time(req->rq_reqmsg,
2779                                     ptlrpc_at_get_net_latency(req));
2780         DEBUG_REQ(D_HA, req, "REPLAY");
2781
2782         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2783         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2784
2785         ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
2786         RETURN(0);
2787 }
2788 EXPORT_SYMBOL(ptlrpc_replay_req);
2789
2790 /**
2791  * Aborts all in-flight request on import \a imp sending and delayed lists
2792  */
2793 void ptlrpc_abort_inflight(struct obd_import *imp)
2794 {
2795         cfs_list_t *tmp, *n;
2796         ENTRY;
2797
2798         /* Make sure that no new requests get processed for this import.
2799          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2800          * this flag and then putting requests on sending_list or delayed_list.
2801          */
2802         spin_lock(&imp->imp_lock);
2803
2804         /* XXX locking?  Maybe we should remove each request with the list
2805          * locked?  Also, how do we know if the requests on the list are
2806          * being freed at this time?
2807          */
2808         cfs_list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2809                 struct ptlrpc_request *req =
2810                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2811
2812                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2813
2814                 spin_lock(&req->rq_lock);
2815                 if (req->rq_import_generation < imp->imp_generation) {
2816                         req->rq_err = 1;
2817                         req->rq_status = -EIO;
2818                         ptlrpc_client_wake_req(req);
2819                 }
2820                 spin_unlock(&req->rq_lock);
2821         }
2822
2823         cfs_list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2824                 struct ptlrpc_request *req =
2825                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2826
2827                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2828
2829                 spin_lock(&req->rq_lock);
2830                 if (req->rq_import_generation < imp->imp_generation) {
2831                         req->rq_err = 1;
2832                         req->rq_status = -EIO;
2833                         ptlrpc_client_wake_req(req);
2834                 }
2835                 spin_unlock(&req->rq_lock);
2836         }
2837
2838         /* Last chance to free reqs left on the replay list, but we
2839          * will still leak reqs that haven't committed.  */
2840         if (imp->imp_replayable)
2841                 ptlrpc_free_committed(imp);
2842
2843         spin_unlock(&imp->imp_lock);
2844
2845         EXIT;
2846 }
2847 EXPORT_SYMBOL(ptlrpc_abort_inflight);
2848
2849 /**
2850  * Abort all uncompleted requests in request set \a set
2851  */
2852 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2853 {
2854         cfs_list_t *tmp, *pos;
2855
2856         LASSERT(set != NULL);
2857
2858         cfs_list_for_each_safe(pos, tmp, &set->set_requests) {
2859                 struct ptlrpc_request *req =
2860                         cfs_list_entry(pos, struct ptlrpc_request,
2861                                        rq_set_chain);
2862
2863                 spin_lock(&req->rq_lock);
2864                 if (req->rq_phase != RQ_PHASE_RPC) {
2865                         spin_unlock(&req->rq_lock);
2866                         continue;
2867                 }
2868
2869                 req->rq_err = 1;
2870                 req->rq_status = -EINTR;
2871                 ptlrpc_client_wake_req(req);
2872                 spin_unlock(&req->rq_lock);
2873         }
2874 }
2875
2876 static __u64 ptlrpc_last_xid;
2877 static spinlock_t ptlrpc_last_xid_lock;
2878
2879 /**
2880  * Initialize the XID for the node.  This is common among all requests on
2881  * this node, and only requires the property that it is monotonically
2882  * increasing.  It does not need to be sequential.  Since this is also used
2883  * as the RDMA match bits, it is important that a single client NOT have
2884  * the same match bits for two different in-flight requests, hence we do
2885  * NOT want to have an XID per target or similar.
2886  *
2887  * To avoid an unlikely collision between match bits after a client reboot
2888  * (which would deliver old data into the wrong RDMA buffer) initialize
2889  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2890  * If the time is clearly incorrect, we instead use a 62-bit random number.
2891  * In the worst case the random number will overflow 1M RPCs per second in
2892  * 9133 years, or permutations thereof.
2893  */
2894 #define YEAR_2004 (1ULL << 30)
2895 void ptlrpc_init_xid(void)
2896 {
2897         time_t now = cfs_time_current_sec();
2898
2899         spin_lock_init(&ptlrpc_last_xid_lock);
2900         if (now < YEAR_2004) {
2901                 cfs_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2902                 ptlrpc_last_xid >>= 2;
2903                 ptlrpc_last_xid |= (1ULL << 61);
2904         } else {
2905                 ptlrpc_last_xid = (__u64)now << 20;
2906         }
2907
2908         /* Need to always be aligned to a power-of-two for mutli-bulk BRW */
2909         CLASSERT((PTLRPC_BULK_OPS_COUNT & (PTLRPC_BULK_OPS_COUNT - 1)) == 0);
2910         ptlrpc_last_xid &= PTLRPC_BULK_OPS_MASK;
2911 }
2912
2913 /**
2914  * Increase xid and returns resulting new value to the caller.
2915  *
2916  * Multi-bulk BRW RPCs consume multiple XIDs for each bulk transfer, starting
2917  * at the returned xid, up to xid + PTLRPC_BULK_OPS_COUNT - 1. The BRW RPC
2918  * itself uses the last bulk xid needed, so the server can determine the
2919  * the number of bulk transfers from the RPC XID and a bitmask.  The starting
2920  * xid must align to a power-of-two value.
2921  *
2922  * This is assumed to be true due to the initial ptlrpc_last_xid
2923  * value also being initialized to a power-of-two value. LU-1431
2924  */
2925 __u64 ptlrpc_next_xid(void)
2926 {
2927         __u64 next;
2928
2929         spin_lock(&ptlrpc_last_xid_lock);
2930         next = ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
2931         ptlrpc_last_xid = next;
2932         spin_unlock(&ptlrpc_last_xid_lock);
2933
2934         return next;
2935 }
2936 EXPORT_SYMBOL(ptlrpc_next_xid);
2937
2938 /**
2939  * Get a glimpse at what next xid value might have been.
2940  * Returns possible next xid.
2941  */
2942 __u64 ptlrpc_sample_next_xid(void)
2943 {
2944 #if BITS_PER_LONG == 32
2945         /* need to avoid possible word tearing on 32-bit systems */
2946         __u64 next;
2947
2948         spin_lock(&ptlrpc_last_xid_lock);
2949         next = ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
2950         spin_unlock(&ptlrpc_last_xid_lock);
2951
2952         return next;
2953 #else
2954         /* No need to lock, since returned value is racy anyways */
2955         return ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
2956 #endif
2957 }
2958 EXPORT_SYMBOL(ptlrpc_sample_next_xid);
2959
2960 /**
2961  * Functions for operating ptlrpc workers.
2962  *
2963  * A ptlrpc work is a function which will be running inside ptlrpc context.
2964  * The callback shouldn't sleep otherwise it will block that ptlrpcd thread.
2965  *
2966  * 1. after a work is created, it can be used many times, that is:
2967  *         handler = ptlrpcd_alloc_work();
2968  *         ptlrpcd_queue_work();
2969  *
2970  *    queue it again when necessary:
2971  *         ptlrpcd_queue_work();
2972  *         ptlrpcd_destroy_work();
2973  * 2. ptlrpcd_queue_work() can be called by multiple processes meanwhile, but
2974  *    it will only be queued once in any time. Also as its name implies, it may
2975  *    have delay before it really runs by ptlrpcd thread.
2976  */
2977 struct ptlrpc_work_async_args {
2978         __u64   magic;
2979         int   (*cb)(const struct lu_env *, void *);
2980         void   *cbdata;
2981 };
2982
2983 #define PTLRPC_WORK_MAGIC 0x6655436b676f4f44ULL /* magic code */
2984
2985 static int work_interpreter(const struct lu_env *env,
2986                             struct ptlrpc_request *req, void *data, int rc)
2987 {
2988         struct ptlrpc_work_async_args *arg = data;
2989
2990         LASSERT(arg->magic == PTLRPC_WORK_MAGIC);
2991         LASSERT(arg->cb != NULL);
2992
2993         return arg->cb(env, arg->cbdata);
2994 }
2995
2996 /**
2997  * Create a work for ptlrpc.
2998  */
2999 void *ptlrpcd_alloc_work(struct obd_import *imp,
3000                          int (*cb)(const struct lu_env *, void *), void *cbdata)
3001 {
3002         struct ptlrpc_request         *req = NULL;
3003         struct ptlrpc_work_async_args *args;
3004         ENTRY;
3005
3006         cfs_might_sleep();
3007
3008         if (cb == NULL)
3009                 RETURN(ERR_PTR(-EINVAL));
3010
3011         /* copy some code from deprecated fakereq. */
3012         req = ptlrpc_request_cache_alloc(__GFP_IO);
3013         if (req == NULL) {
3014                 CERROR("ptlrpc: run out of memory!\n");
3015                 RETURN(ERR_PTR(-ENOMEM));
3016         }
3017
3018         req->rq_send_state = LUSTRE_IMP_FULL;
3019         req->rq_type = PTL_RPC_MSG_REQUEST;
3020         req->rq_import = class_import_get(imp);
3021         req->rq_export = NULL;
3022         req->rq_interpret_reply = work_interpreter;
3023         /* don't want reply */
3024         req->rq_receiving_reply = 0;
3025         req->rq_must_unlink = 0;
3026         req->rq_no_delay = req->rq_no_resend = 1;
3027
3028         spin_lock_init(&req->rq_lock);
3029         CFS_INIT_LIST_HEAD(&req->rq_list);
3030         CFS_INIT_LIST_HEAD(&req->rq_replay_list);
3031         CFS_INIT_LIST_HEAD(&req->rq_set_chain);
3032         CFS_INIT_LIST_HEAD(&req->rq_history_list);
3033         CFS_INIT_LIST_HEAD(&req->rq_exp_list);
3034         cfs_waitq_init(&req->rq_reply_waitq);
3035         cfs_waitq_init(&req->rq_set_waitq);
3036         cfs_atomic_set(&req->rq_refcount, 1);
3037
3038         CLASSERT (sizeof(*args) <= sizeof(req->rq_async_args));
3039         args = ptlrpc_req_async_args(req);
3040         args->magic  = PTLRPC_WORK_MAGIC;
3041         args->cb     = cb;
3042         args->cbdata = cbdata;
3043
3044         RETURN(req);
3045 }
3046 EXPORT_SYMBOL(ptlrpcd_alloc_work);
3047
3048 void ptlrpcd_destroy_work(void *handler)
3049 {
3050         struct ptlrpc_request *req = handler;
3051
3052         if (req)
3053                 ptlrpc_req_finished(req);
3054 }
3055 EXPORT_SYMBOL(ptlrpcd_destroy_work);
3056
3057 int ptlrpcd_queue_work(void *handler)
3058 {
3059         struct ptlrpc_request *req = handler;
3060
3061         /*
3062          * Check if the req is already being queued.
3063          *
3064          * Here comes a trick: it lacks a way of checking if a req is being
3065          * processed reliably in ptlrpc. Here I have to use refcount of req
3066          * for this purpose. This is okay because the caller should use this
3067          * req as opaque data. - Jinshan
3068          */
3069         LASSERT(cfs_atomic_read(&req->rq_refcount) > 0);
3070         if (cfs_atomic_read(&req->rq_refcount) > 1)
3071                 return -EBUSY;
3072
3073         if (cfs_atomic_inc_return(&req->rq_refcount) > 2) { /* race */
3074                 cfs_atomic_dec(&req->rq_refcount);
3075                 return -EBUSY;
3076         }
3077
3078         /* re-initialize the req */
3079         req->rq_timeout        = obd_timeout;
3080         req->rq_sent           = cfs_time_current_sec();
3081         req->rq_deadline       = req->rq_sent + req->rq_timeout;
3082         req->rq_reply_deadline = req->rq_deadline;
3083         req->rq_phase          = RQ_PHASE_INTERPRET;
3084         req->rq_next_phase     = RQ_PHASE_COMPLETE;
3085         req->rq_xid            = ptlrpc_next_xid();
3086         req->rq_import_generation = req->rq_import->imp_generation;
3087
3088         ptlrpcd_add_req(req, PDL_POLICY_ROUND, -1);
3089         return 0;
3090 }
3091 EXPORT_SYMBOL(ptlrpcd_queue_work);