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