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