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