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