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