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