Whamcloud - gitweb
b=21877 protect modification of request flag's bitfield with rq_lock
[fs/lustre-release.git] / lustre / ptlrpc / client.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 #define DEBUG_SUBSYSTEM S_RPC
38 #ifndef __KERNEL__
39 #include <errno.h>
40 #include <signal.h>
41 #include <liblustre.h>
42 #endif
43
44 #include <obd_support.h>
45 #include <obd_class.h>
46 #include <lustre_lib.h>
47 #include <lustre_ha.h>
48 #include <lustre_import.h>
49 #include <lustre_req_layout.h>
50
51 #include "ptlrpc_internal.h"
52
53 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
54                         struct ptlrpc_client *cl)
55 {
56         cl->cli_request_portal = req_portal;
57         cl->cli_reply_portal   = rep_portal;
58         cl->cli_name           = name;
59 }
60
61 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid)
62 {
63         struct ptlrpc_connection *c;
64         lnet_nid_t                self;
65         lnet_process_id_t         peer;
66         int                       err;
67
68         err = ptlrpc_uuid_to_peer(uuid, &peer, &self);
69         if (err != 0) {
70                 CERROR("cannot find peer %s!\n", uuid->uuid);
71                 return NULL;
72         }
73
74         c = ptlrpc_connection_get(peer, self, uuid);
75         if (c) {
76                 memcpy(c->c_remote_uuid.uuid,
77                        uuid->uuid, sizeof(c->c_remote_uuid.uuid));
78         }
79
80         CDEBUG(D_INFO, "%s -> %p\n", uuid->uuid, c);
81
82         return c;
83 }
84
85 static inline struct ptlrpc_bulk_desc *new_bulk(int npages, int type, int portal)
86 {
87         struct ptlrpc_bulk_desc *desc;
88
89         OBD_ALLOC(desc, offsetof (struct ptlrpc_bulk_desc, bd_iov[npages]));
90         if (!desc)
91                 return NULL;
92
93         cfs_spin_lock_init(&desc->bd_lock);
94         cfs_waitq_init(&desc->bd_waitq);
95         desc->bd_max_iov = npages;
96         desc->bd_iov_count = 0;
97         LNetInvalidateHandle(&desc->bd_md_h);
98         desc->bd_portal = portal;
99         desc->bd_type = type;
100
101         return desc;
102 }
103
104 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp(struct ptlrpc_request *req,
105                                               int npages, int type, int portal)
106 {
107         struct obd_import *imp = req->rq_import;
108         struct ptlrpc_bulk_desc *desc;
109
110         ENTRY;
111         LASSERT(type == BULK_PUT_SINK || type == BULK_GET_SOURCE);
112         desc = new_bulk(npages, type, portal);
113         if (desc == NULL)
114                 RETURN(NULL);
115
116         desc->bd_import_generation = req->rq_import_generation;
117         desc->bd_import = class_import_get(imp);
118         desc->bd_req = req;
119
120         desc->bd_cbid.cbid_fn  = client_bulk_callback;
121         desc->bd_cbid.cbid_arg = desc;
122
123         /* This makes req own desc, and free it when she frees herself */
124         req->rq_bulk = desc;
125
126         return desc;
127 }
128
129 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
130                                               int npages, int type, int portal)
131 {
132         struct obd_export *exp = req->rq_export;
133         struct ptlrpc_bulk_desc *desc;
134
135         ENTRY;
136         LASSERT(type == BULK_PUT_SOURCE || type == BULK_GET_SINK);
137
138         desc = new_bulk(npages, type, portal);
139         if (desc == NULL)
140                 RETURN(NULL);
141
142         desc->bd_export = class_export_get(exp);
143         desc->bd_req = req;
144
145         desc->bd_cbid.cbid_fn  = server_bulk_callback;
146         desc->bd_cbid.cbid_arg = desc;
147
148         /* NB we don't assign rq_bulk here; server-side requests are
149          * re-used, and the handler frees the bulk desc explicitly. */
150
151         return desc;
152 }
153
154 void ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
155                            cfs_page_t *page, int pageoffset, int len)
156 {
157         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
158         LASSERT(page != NULL);
159         LASSERT(pageoffset >= 0);
160         LASSERT(len > 0);
161         LASSERT(pageoffset + len <= CFS_PAGE_SIZE);
162
163         desc->bd_nob += len;
164
165         ptlrpc_add_bulk_page(desc, page, pageoffset, len);
166 }
167
168 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *desc)
169 {
170         ENTRY;
171
172         LASSERT(desc != NULL);
173         LASSERT(desc->bd_iov_count != LI_POISON); /* not freed already */
174         LASSERT(!desc->bd_network_rw);         /* network hands off or */
175         LASSERT((desc->bd_export != NULL) ^ (desc->bd_import != NULL));
176
177         sptlrpc_enc_pool_put_pages(desc);
178
179         if (desc->bd_export)
180                 class_export_put(desc->bd_export);
181         else
182                 class_import_put(desc->bd_import);
183
184         OBD_FREE(desc, offsetof(struct ptlrpc_bulk_desc,
185                                 bd_iov[desc->bd_max_iov]));
186         EXIT;
187 }
188
189 /* Set server timelimit for this req */
190 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req)
191 {
192         __u32 serv_est;
193         int idx;
194         struct imp_at *at;
195
196         LASSERT(req->rq_import);
197
198         if (AT_OFF) {
199                 /* non-AT settings */
200                 req->rq_timeout = req->rq_import->imp_server_timeout ?
201                                   obd_timeout / 2 : obd_timeout;
202         } else {
203                 at = &req->rq_import->imp_at;
204                 idx = import_at_get_index(req->rq_import,
205                                           req->rq_request_portal);
206                 serv_est = at_get(&at->iat_service_estimate[idx]);
207                 req->rq_timeout = at_est2timeout(serv_est);
208         }
209         /* We could get even fancier here, using history to predict increased
210            loading... */
211
212         /* Let the server know what this RPC timeout is by putting it in the
213            reqmsg*/
214         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
215 }
216
217 /* Adjust max service estimate based on server value */
218 static void ptlrpc_at_adj_service(struct ptlrpc_request *req,
219                                   unsigned int serv_est)
220 {
221         int idx;
222         unsigned int oldse;
223         struct imp_at *at;
224
225         LASSERT(req->rq_import);
226         at = &req->rq_import->imp_at;
227
228         idx = import_at_get_index(req->rq_import, req->rq_request_portal);
229         /* max service estimates are tracked on the server side,
230            so just keep minimal history here */
231         oldse = at_measured(&at->iat_service_estimate[idx], serv_est);
232         if (oldse != 0)
233                 CDEBUG(D_ADAPTTO, "The RPC service estimate for %s ptl %d "
234                        "has changed from %d to %d\n",
235                        req->rq_import->imp_obd->obd_name,req->rq_request_portal,
236                        oldse, at_get(&at->iat_service_estimate[idx]));
237 }
238
239 /* Expected network latency per remote node (secs) */
240 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req)
241 {
242         return AT_OFF ? 0 : at_get(&req->rq_import->imp_at.iat_net_latency);
243 }
244
245 /* Adjust expected network latency */
246 static void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req,
247                                       unsigned int service_time)
248 {
249         unsigned int nl, oldnl;
250         struct imp_at *at;
251         time_t now = cfs_time_current_sec();
252
253         LASSERT(req->rq_import);
254         at = &req->rq_import->imp_at;
255
256         /* Network latency is total time less server processing time */
257         nl = max_t(int, now - req->rq_sent - service_time, 0) +1/*st rounding*/;
258         if (service_time > now - req->rq_sent + 3 /* bz16408 */)
259                 CWARN("Reported service time %u > total measured time "
260                       CFS_DURATION_T"\n", service_time,
261                       cfs_time_sub(now, req->rq_sent));
262
263         oldnl = at_measured(&at->iat_net_latency, nl);
264         if (oldnl != 0)
265                 CDEBUG(D_ADAPTTO, "The network latency for %s (nid %s) "
266                        "has changed from %d to %d\n",
267                        req->rq_import->imp_obd->obd_name,
268                        obd_uuid2str(
269                                &req->rq_import->imp_connection->c_remote_uuid),
270                        oldnl, at_get(&at->iat_net_latency));
271 }
272
273 static int unpack_reply(struct ptlrpc_request *req)
274 {
275         int rc;
276
277         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
278                 rc = ptlrpc_unpack_rep_msg(req, req->rq_replen);
279                 if (rc) {
280                         DEBUG_REQ(D_ERROR, req, "unpack_rep failed: %d", rc);
281                         return(-EPROTO);
282                 }
283         }
284
285         rc = lustre_unpack_rep_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
286         if (rc) {
287                 DEBUG_REQ(D_ERROR, req, "unpack ptlrpc body failed: %d", rc);
288                 return(-EPROTO);
289         }
290         return 0;
291 }
292
293 /*
294  * Handle an early reply message, called with the rq_lock held.
295  * If anything goes wrong just ignore it - same as if it never happened
296  */
297 static int ptlrpc_at_recv_early_reply(struct ptlrpc_request *req)
298 {
299         struct ptlrpc_request *early_req;
300         time_t                 olddl;
301         int                    rc;
302         ENTRY;
303
304         req->rq_early = 0;
305         cfs_spin_unlock(&req->rq_lock);
306
307         rc = sptlrpc_cli_unwrap_early_reply(req, &early_req);
308         if (rc) {
309                 cfs_spin_lock(&req->rq_lock);
310                 RETURN(rc);
311         }
312
313         rc = unpack_reply(early_req);
314         if (rc == 0) {
315                 /* Expecting to increase the service time estimate here */
316                 ptlrpc_at_adj_service(req,
317                         lustre_msg_get_timeout(early_req->rq_repmsg));
318                 ptlrpc_at_adj_net_latency(req,
319                         lustre_msg_get_service_time(early_req->rq_repmsg));
320         }
321
322         sptlrpc_cli_finish_early_reply(early_req);
323
324         cfs_spin_lock(&req->rq_lock);
325
326         if (rc == 0) {
327                 /* Adjust the local timeout for this req */
328                 ptlrpc_at_set_req_timeout(req);
329
330                 olddl = req->rq_deadline;
331                 /* server assumes it now has rq_timeout from when it sent the
332                    early reply, so client should give it at least that long. */
333                 req->rq_deadline = cfs_time_current_sec() + req->rq_timeout +
334                             ptlrpc_at_get_net_latency(req);
335
336                 DEBUG_REQ(D_ADAPTTO, req,
337                           "Early reply #%d, new deadline in "CFS_DURATION_T"s "
338                           "("CFS_DURATION_T"s)", req->rq_early_count,
339                           cfs_time_sub(req->rq_deadline,
340                                        cfs_time_current_sec()),
341                           cfs_time_sub(req->rq_deadline, olddl));
342         }
343
344         RETURN(rc);
345 }
346
347 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool)
348 {
349         cfs_list_t *l, *tmp;
350         struct ptlrpc_request *req;
351
352         LASSERT(pool != NULL);
353
354         cfs_spin_lock(&pool->prp_lock);
355         cfs_list_for_each_safe(l, tmp, &pool->prp_req_list) {
356                 req = cfs_list_entry(l, struct ptlrpc_request, rq_list);
357                 cfs_list_del(&req->rq_list);
358                 LASSERT(req->rq_reqbuf);
359                 LASSERT(req->rq_reqbuf_len == pool->prp_rq_size);
360                 OBD_FREE(req->rq_reqbuf, pool->prp_rq_size);
361                 OBD_FREE(req, sizeof(*req));
362         }
363         cfs_spin_unlock(&pool->prp_lock);
364         OBD_FREE(pool, sizeof(*pool));
365 }
366
367 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq)
368 {
369         int i;
370         int size = 1;
371
372         while (size < pool->prp_rq_size)
373                 size <<= 1;
374
375         LASSERTF(cfs_list_empty(&pool->prp_req_list) ||
376                  size == pool->prp_rq_size,
377                  "Trying to change pool size with nonempty pool "
378                  "from %d to %d bytes\n", pool->prp_rq_size, size);
379
380         cfs_spin_lock(&pool->prp_lock);
381         pool->prp_rq_size = size;
382         for (i = 0; i < num_rq; i++) {
383                 struct ptlrpc_request *req;
384                 struct lustre_msg *msg;
385
386                 cfs_spin_unlock(&pool->prp_lock);
387                 OBD_ALLOC(req, sizeof(struct ptlrpc_request));
388                 if (!req)
389                         return;
390                 OBD_ALLOC_GFP(msg, size, CFS_ALLOC_STD);
391                 if (!msg) {
392                         OBD_FREE(req, sizeof(struct ptlrpc_request));
393                         return;
394                 }
395                 req->rq_reqbuf = msg;
396                 req->rq_reqbuf_len = size;
397                 req->rq_pool = pool;
398                 cfs_spin_lock(&pool->prp_lock);
399                 cfs_list_add_tail(&req->rq_list, &pool->prp_req_list);
400         }
401         cfs_spin_unlock(&pool->prp_lock);
402         return;
403 }
404
405 struct ptlrpc_request_pool *
406 ptlrpc_init_rq_pool(int num_rq, int msgsize,
407                     void (*populate_pool)(struct ptlrpc_request_pool *, int))
408 {
409         struct ptlrpc_request_pool *pool;
410
411         OBD_ALLOC(pool, sizeof (struct ptlrpc_request_pool));
412         if (!pool)
413                 return NULL;
414
415         /* Request next power of two for the allocation, because internally
416            kernel would do exactly this */
417
418         cfs_spin_lock_init(&pool->prp_lock);
419         CFS_INIT_LIST_HEAD(&pool->prp_req_list);
420         pool->prp_rq_size = msgsize + SPTLRPC_MAX_PAYLOAD;
421         pool->prp_populate = populate_pool;
422
423         populate_pool(pool, num_rq);
424
425         if (cfs_list_empty(&pool->prp_req_list)) {
426                 /* have not allocated a single request for the pool */
427                 OBD_FREE(pool, sizeof (struct ptlrpc_request_pool));
428                 pool = NULL;
429         }
430         return pool;
431 }
432
433 static struct ptlrpc_request *
434 ptlrpc_prep_req_from_pool(struct ptlrpc_request_pool *pool)
435 {
436         struct ptlrpc_request *request;
437         struct lustre_msg *reqbuf;
438
439         if (!pool)
440                 return NULL;
441
442         cfs_spin_lock(&pool->prp_lock);
443
444         /* See if we have anything in a pool, and bail out if nothing,
445          * in writeout path, where this matters, this is safe to do, because
446          * nothing is lost in this case, and when some in-flight requests
447          * complete, this code will be called again. */
448         if (unlikely(cfs_list_empty(&pool->prp_req_list))) {
449                 cfs_spin_unlock(&pool->prp_lock);
450                 return NULL;
451         }
452
453         request = cfs_list_entry(pool->prp_req_list.next, struct ptlrpc_request,
454                                  rq_list);
455         cfs_list_del_init(&request->rq_list);
456         cfs_spin_unlock(&pool->prp_lock);
457
458         LASSERT(request->rq_reqbuf);
459         LASSERT(request->rq_pool);
460
461         reqbuf = request->rq_reqbuf;
462         memset(request, 0, sizeof(*request));
463         request->rq_reqbuf = reqbuf;
464         request->rq_reqbuf_len = pool->prp_rq_size;
465         request->rq_pool = pool;
466
467         return request;
468 }
469
470 static void __ptlrpc_free_req_to_pool(struct ptlrpc_request *request)
471 {
472         struct ptlrpc_request_pool *pool = request->rq_pool;
473
474         cfs_spin_lock(&pool->prp_lock);
475         LASSERT(cfs_list_empty(&request->rq_list));
476         LASSERT(!request->rq_receiving_reply);
477         cfs_list_add_tail(&request->rq_list, &pool->prp_req_list);
478         cfs_spin_unlock(&pool->prp_lock);
479 }
480
481 static int __ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
482                                       __u32 version, int opcode,
483                                       int count, __u32 *lengths, char **bufs,
484                                       struct ptlrpc_cli_ctx *ctx)
485 {
486         struct obd_import  *imp = request->rq_import;
487         int                 rc;
488         ENTRY;
489
490         if (unlikely(ctx))
491                 request->rq_cli_ctx = sptlrpc_cli_ctx_get(ctx);
492         else {
493                 rc = sptlrpc_req_get_ctx(request);
494                 if (rc)
495                         GOTO(out_free, rc);
496         }
497
498         sptlrpc_req_set_flavor(request, opcode);
499
500         rc = lustre_pack_request(request, imp->imp_msg_magic, count,
501                                  lengths, bufs);
502         if (rc) {
503                 LASSERT(!request->rq_pool);
504                 GOTO(out_ctx, rc);
505         }
506
507         lustre_msg_add_version(request->rq_reqmsg, version);
508         request->rq_send_state = LUSTRE_IMP_FULL;
509         request->rq_type = PTL_RPC_MSG_REQUEST;
510         request->rq_export = NULL;
511
512         request->rq_req_cbid.cbid_fn  = request_out_callback;
513         request->rq_req_cbid.cbid_arg = request;
514
515         request->rq_reply_cbid.cbid_fn  = reply_in_callback;
516         request->rq_reply_cbid.cbid_arg = request;
517
518         request->rq_reply_deadline = 0;
519         request->rq_phase = RQ_PHASE_NEW;
520         request->rq_next_phase = RQ_PHASE_UNDEFINED;
521
522         request->rq_request_portal = imp->imp_client->cli_request_portal;
523         request->rq_reply_portal = imp->imp_client->cli_reply_portal;
524
525         ptlrpc_at_set_req_timeout(request);
526
527         cfs_spin_lock_init(&request->rq_lock);
528         CFS_INIT_LIST_HEAD(&request->rq_list);
529         CFS_INIT_LIST_HEAD(&request->rq_timed_list);
530         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
531         CFS_INIT_LIST_HEAD(&request->rq_ctx_chain);
532         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
533         CFS_INIT_LIST_HEAD(&request->rq_history_list);
534         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
535         cfs_waitq_init(&request->rq_reply_waitq);
536         request->rq_xid = ptlrpc_next_xid();
537         cfs_atomic_set(&request->rq_refcount, 1);
538
539         lustre_msg_set_opc(request->rq_reqmsg, opcode);
540
541         RETURN(0);
542 out_ctx:
543         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
544 out_free:
545         class_import_put(imp);
546         return rc;
547 }
548
549 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
550                              __u32 version, int opcode, char **bufs,
551                              struct ptlrpc_cli_ctx *ctx)
552 {
553         int count;
554
555         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
556         return __ptlrpc_request_bufs_pack(request, version, opcode, count,
557                                           request->rq_pill.rc_area[RCL_CLIENT],
558                                           bufs, ctx);
559 }
560 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
561
562 int ptlrpc_request_pack(struct ptlrpc_request *request,
563                         __u32 version, int opcode)
564 {
565         return ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
566 }
567
568 static inline
569 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
570                                               struct ptlrpc_request_pool *pool)
571 {
572         struct ptlrpc_request *request = NULL;
573
574         if (pool)
575                 request = ptlrpc_prep_req_from_pool(pool);
576
577         if (!request)
578                 OBD_ALLOC_PTR(request);
579
580         if (request) {
581                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
582                 LASSERT(imp != LP_POISON);
583                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p",
584                         imp->imp_client);
585                 LASSERT(imp->imp_client != LP_POISON);
586
587                 request->rq_import = class_import_get(imp);
588         } else {
589                 CERROR("request allocation out of memory\n");
590         }
591
592         return request;
593 }
594
595 static struct ptlrpc_request *
596 ptlrpc_request_alloc_internal(struct obd_import *imp,
597                               struct ptlrpc_request_pool * pool,
598                               const struct req_format *format)
599 {
600         struct ptlrpc_request *request;
601
602         request = __ptlrpc_request_alloc(imp, pool);
603         if (request == NULL)
604                 return NULL;
605
606         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
607         req_capsule_set(&request->rq_pill, format);
608         return request;
609 }
610
611 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
612                                             const struct req_format *format)
613 {
614         return ptlrpc_request_alloc_internal(imp, NULL, format);
615 }
616
617 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
618                                             struct ptlrpc_request_pool * pool,
619                                             const struct req_format *format)
620 {
621         return ptlrpc_request_alloc_internal(imp, pool, format);
622 }
623
624 void ptlrpc_request_free(struct ptlrpc_request *request)
625 {
626         if (request->rq_pool)
627                 __ptlrpc_free_req_to_pool(request);
628         else
629                 OBD_FREE_PTR(request);
630 }
631
632 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
633                                                 const struct req_format *format,
634                                                 __u32 version, int opcode)
635 {
636         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
637         int                    rc;
638
639         if (req) {
640                 rc = ptlrpc_request_pack(req, version, opcode);
641                 if (rc) {
642                         ptlrpc_request_free(req);
643                         req = NULL;
644                 }
645         }
646         return req;
647 }
648
649 struct ptlrpc_request *
650 ptlrpc_prep_req_pool(struct obd_import *imp,
651                      __u32 version, int opcode,
652                      int count, __u32 *lengths, char **bufs,
653                      struct ptlrpc_request_pool *pool)
654 {
655         struct ptlrpc_request *request;
656         int                    rc;
657
658         request = __ptlrpc_request_alloc(imp, pool);
659         if (!request)
660                 return NULL;
661
662         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
663                                         lengths, bufs, NULL);
664         if (rc) {
665                 ptlrpc_request_free(request);
666                 request = NULL;
667         }
668         return request;
669 }
670
671 struct ptlrpc_request *
672 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
673                 __u32 *lengths, char **bufs)
674 {
675         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
676                                     NULL);
677 }
678
679 struct ptlrpc_request *ptlrpc_prep_fakereq(struct obd_import *imp,
680                                            unsigned int timeout,
681                                            ptlrpc_interpterer_t interpreter)
682 {
683         struct ptlrpc_request *request = NULL;
684         ENTRY;
685
686         OBD_ALLOC(request, sizeof(*request));
687         if (!request) {
688                 CERROR("request allocation out of memory\n");
689                 RETURN(NULL);
690         }
691
692         request->rq_send_state = LUSTRE_IMP_FULL;
693         request->rq_type = PTL_RPC_MSG_REQUEST;
694         request->rq_import = class_import_get(imp);
695         request->rq_export = NULL;
696         request->rq_import_generation = imp->imp_generation;
697
698         request->rq_timeout = timeout;
699         request->rq_sent = cfs_time_current_sec();
700         request->rq_deadline = request->rq_sent + timeout;
701         request->rq_reply_deadline = request->rq_deadline;
702         request->rq_interpret_reply = interpreter;
703         request->rq_phase = RQ_PHASE_RPC;
704         request->rq_next_phase = RQ_PHASE_INTERPRET;
705         /* don't want reply */
706         request->rq_receiving_reply = 0;
707         request->rq_must_unlink = 0;
708         request->rq_no_delay = request->rq_no_resend = 1;
709         request->rq_fake = 1;
710
711         cfs_spin_lock_init(&request->rq_lock);
712         CFS_INIT_LIST_HEAD(&request->rq_list);
713         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
714         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
715         CFS_INIT_LIST_HEAD(&request->rq_history_list);
716         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
717         cfs_waitq_init(&request->rq_reply_waitq);
718
719         request->rq_xid = ptlrpc_next_xid();
720         cfs_atomic_set(&request->rq_refcount, 1);
721
722         RETURN(request);
723 }
724
725 void ptlrpc_fakereq_finished(struct ptlrpc_request *req)
726 {
727         /* if we kill request before timeout - need adjust counter */
728         if (req->rq_phase == RQ_PHASE_RPC) {
729                 struct ptlrpc_request_set *set = req->rq_set;
730
731                 if (set)
732                         set->set_remaining --;
733         }
734
735         ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
736         cfs_list_del_init(&req->rq_list);
737 }
738
739
740 struct ptlrpc_request_set *ptlrpc_prep_set(void)
741 {
742         struct ptlrpc_request_set *set;
743
744         ENTRY;
745         OBD_ALLOC(set, sizeof *set);
746         if (!set)
747                 RETURN(NULL);
748         CFS_INIT_LIST_HEAD(&set->set_requests);
749         cfs_waitq_init(&set->set_waitq);
750         set->set_remaining = 0;
751         cfs_spin_lock_init(&set->set_new_req_lock);
752         CFS_INIT_LIST_HEAD(&set->set_new_requests);
753         CFS_INIT_LIST_HEAD(&set->set_cblist);
754
755         RETURN(set);
756 }
757
758 /* Finish with this set; opposite of prep_set. */
759 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
760 {
761         cfs_list_t       *tmp;
762         cfs_list_t       *next;
763         int               expected_phase;
764         int               n = 0;
765         ENTRY;
766
767         /* Requests on the set should either all be completed, or all be new */
768         expected_phase = (set->set_remaining == 0) ?
769                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
770         cfs_list_for_each (tmp, &set->set_requests) {
771                 struct ptlrpc_request *req =
772                         cfs_list_entry(tmp, struct ptlrpc_request,
773                                        rq_set_chain);
774
775                 LASSERT(req->rq_phase == expected_phase);
776                 n++;
777         }
778
779         LASSERTF(set->set_remaining == 0 || set->set_remaining == n, "%d / %d\n",
780                  set->set_remaining, n);
781
782         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
783                 struct ptlrpc_request *req =
784                         cfs_list_entry(tmp, struct ptlrpc_request,
785                                        rq_set_chain);
786                 cfs_list_del_init(&req->rq_set_chain);
787
788                 LASSERT(req->rq_phase == expected_phase);
789
790                 if (req->rq_phase == RQ_PHASE_NEW) {
791                         ptlrpc_req_interpret(NULL, req, -EBADR);
792                         set->set_remaining--;
793                 }
794
795                 req->rq_set = NULL;
796                 ptlrpc_req_finished (req);
797         }
798
799         LASSERT(set->set_remaining == 0);
800
801         OBD_FREE(set, sizeof(*set));
802         EXIT;
803 }
804
805 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
806                       set_interpreter_func fn, void *data)
807 {
808         struct ptlrpc_set_cbdata *cbdata;
809
810         OBD_ALLOC_PTR(cbdata);
811         if (cbdata == NULL)
812                 RETURN(-ENOMEM);
813
814         cbdata->psc_interpret = fn;
815         cbdata->psc_data = data;
816         cfs_list_add_tail(&cbdata->psc_item, &set->set_cblist);
817
818         RETURN(0);
819 }
820
821 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
822                         struct ptlrpc_request *req)
823 {
824         /* The set takes over the caller's request reference */
825         cfs_list_add_tail(&req->rq_set_chain, &set->set_requests);
826         req->rq_set = set;
827         set->set_remaining++;
828 }
829
830 /**
831  * Lock so many callers can add things, the context that owns the set
832  * is supposed to notice these and move them into the set proper.
833  */
834 int ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
835                            struct ptlrpc_request *req)
836 {
837         struct ptlrpc_request_set *set = pc->pc_set;
838
839         /*
840          * Let caller know that we stopped and will not handle this request.
841          * It needs to take care itself of request.
842          */
843         if (cfs_test_bit(LIOD_STOP, &pc->pc_flags))
844                 return -EALREADY;
845
846         cfs_spin_lock(&set->set_new_req_lock);
847         /*
848          * The set takes over the caller's request reference.
849          */
850         cfs_list_add_tail(&req->rq_set_chain, &set->set_new_requests);
851         req->rq_set = set;
852         cfs_spin_unlock(&set->set_new_req_lock);
853
854         cfs_waitq_signal(&set->set_waitq);
855         return 0;
856 }
857
858 /*
859  * Based on the current state of the import, determine if the request
860  * can be sent, is an error, or should be delayed.
861  *
862  * Returns true if this request should be delayed. If false, and
863  * *status is set, then the request can not be sent and *status is the
864  * error code.  If false and status is 0, then request can be sent.
865  *
866  * The imp->imp_lock must be held.
867  */
868 static int ptlrpc_import_delay_req(struct obd_import *imp,
869                                    struct ptlrpc_request *req, int *status)
870 {
871         int delay = 0;
872         ENTRY;
873
874         LASSERT (status != NULL);
875         *status = 0;
876
877         if (req->rq_ctx_init || req->rq_ctx_fini) {
878                 /* always allow ctx init/fini rpc go through */
879         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
880                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
881                 *status = -EIO;
882                 LBUG();
883         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
884                 DEBUG_REQ(D_ERROR, req, "IMP_CLOSED ");
885                 *status = -EIO;
886         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
887                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
888                 /* allow CONNECT even if import is invalid */ ;
889                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
890                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
891                         *status = -EIO;
892                 }
893         } else if ((imp->imp_invalid && (!imp->imp_recon_bk)) ||
894                                          imp->imp_obd->obd_no_recov) {
895                 /* If the import has been invalidated (such as by an OST
896                  * failure), and if the import(MGC) tried all of its connection
897                  * list (Bug 13464), the request must fail with -ESHUTDOWN.
898                  * This indicates the requests should be discarded; an -EIO
899                  * may result in a resend of the request. */
900                 if (!imp->imp_deactive)
901                           DEBUG_REQ(D_ERROR, req, "IMP_INVALID");
902                 *status = -ESHUTDOWN; /* bz 12940 */
903         } else if (req->rq_import_generation != imp->imp_generation) {
904                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
905                 *status = -EIO;
906         } else if (req->rq_send_state != imp->imp_state) {
907                 /* invalidate in progress - any requests should be drop */
908                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
909                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
910                         *status = -EIO;
911                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
912                         *status = -EWOULDBLOCK;
913                 } else {
914                         delay = 1;
915                 }
916         }
917
918         RETURN(delay);
919 }
920
921 /* Conditionally suppress specific console messages */
922 static int ptlrpc_console_allow(struct ptlrpc_request *req)
923 {
924         __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
925         int err;
926
927         /* Suppress particular reconnect errors which are to be expected.  No
928          * errors are suppressed for the initial connection on an import */
929         if ((lustre_handle_is_used(&req->rq_import->imp_remote_handle)) &&
930             (opc == OST_CONNECT || opc == MDS_CONNECT || opc == MGS_CONNECT)) {
931
932                 /* Suppress timed out reconnect requests */
933                 if (req->rq_timedout)
934                         return 0;
935
936                 /* Suppress unavailable/again reconnect requests */
937                 err = lustre_msg_get_status(req->rq_repmsg);
938                 if (err == -ENODEV || err == -EAGAIN)
939                         return 0;
940         }
941
942         return 1;
943 }
944
945 static int ptlrpc_check_status(struct ptlrpc_request *req)
946 {
947         int err;
948         ENTRY;
949
950         err = lustre_msg_get_status(req->rq_repmsg);
951         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
952                 struct obd_import *imp = req->rq_import;
953                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
954                 LCONSOLE_ERROR_MSG(0x011,"an error occurred while communicating"
955                                 " with %s. The %s operation failed with %d\n",
956                                 libcfs_nid2str(imp->imp_connection->c_peer.nid),
957                                 ll_opcode2str(opc), err);
958                 RETURN(err < 0 ? err : -EINVAL);
959         }
960
961         if (err < 0) {
962                 DEBUG_REQ(D_INFO, req, "status is %d", err);
963         } else if (err > 0) {
964                 /* XXX: translate this error from net to host */
965                 DEBUG_REQ(D_INFO, req, "status is %d", err);
966         }
967
968         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
969                 struct obd_import *imp = req->rq_import;
970                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
971
972                 if (ptlrpc_console_allow(req))
973                         LCONSOLE_ERROR_MSG(0x011,"an error occurred while "
974                                            "communicating with %s. The %s "
975                                            "operation failed with %d\n",
976                                            libcfs_nid2str(
977                                            imp->imp_connection->c_peer.nid),
978                                            ll_opcode2str(opc), err);
979
980                 RETURN(err < 0 ? err : -EINVAL);
981         }
982
983         RETURN(err);
984 }
985
986 /**
987  * save pre-versions for replay
988  */
989 static void ptlrpc_save_versions(struct ptlrpc_request *req)
990 {
991         struct lustre_msg *repmsg = req->rq_repmsg;
992         struct lustre_msg *reqmsg = req->rq_reqmsg;
993         __u64 *versions = lustre_msg_get_versions(repmsg);
994         ENTRY;
995
996         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
997                 return;
998
999         LASSERT(versions);
1000         lustre_msg_set_versions(reqmsg, versions);
1001         CDEBUG(D_INFO, "Client save versions ["LPX64"/"LPX64"]\n",
1002                versions[0], versions[1]);
1003
1004         EXIT;
1005 }
1006
1007 /**
1008  * Callback function called when client receives RPC reply for \a req.
1009  */
1010 static int after_reply(struct ptlrpc_request *req)
1011 {
1012         struct obd_import *imp = req->rq_import;
1013         struct obd_device *obd = req->rq_import->imp_obd;
1014         int rc;
1015         struct timeval work_start;
1016         long timediff;
1017         ENTRY;
1018
1019         LASSERT(obd != NULL);
1020         /* repbuf must be unlinked */
1021         LASSERT(!req->rq_receiving_reply && !req->rq_must_unlink);
1022
1023         if (req->rq_reply_truncate) {
1024                 if (req->rq_no_resend) {
1025                         DEBUG_REQ(D_ERROR, req, "reply buffer overflow,"
1026                                   " expected: %d, actual size: %d",
1027                                   req->rq_nob_received, req->rq_repbuf_len);
1028                         RETURN(-EOVERFLOW);
1029                 }
1030
1031                 sptlrpc_cli_free_repbuf(req);
1032                 /* Pass the required reply buffer size (include
1033                  * space for early reply).
1034                  * NB: no need to roundup because alloc_repbuf
1035                  * will roundup it */
1036                 req->rq_replen       = req->rq_nob_received;
1037                 req->rq_nob_received = 0;
1038                 req->rq_resend       = 1;
1039                 RETURN(0);
1040         }
1041
1042         /*
1043          * NB Until this point, the whole of the incoming message,
1044          * including buflens, status etc is in the sender's byte order.
1045          */
1046         rc = sptlrpc_cli_unwrap_reply(req);
1047         if (rc) {
1048                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1049                 RETURN(rc);
1050         }
1051
1052         /*
1053          * Security layer unwrap might ask resend this request.
1054          */
1055         if (req->rq_resend)
1056                 RETURN(0);
1057
1058         rc = unpack_reply(req);
1059         if (rc)
1060                 RETURN(rc);
1061
1062         cfs_gettimeofday(&work_start);
1063         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
1064         if (obd->obd_svc_stats != NULL) {
1065                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1066                                     timediff);
1067                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1068         }
1069
1070         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1071             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1072                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1073                           lustre_msg_get_type(req->rq_repmsg));
1074                 RETURN(-EPROTO);
1075         }
1076
1077         if (lustre_msg_get_opc(req->rq_reqmsg) != OBD_PING)
1078                 OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, obd_fail_val);
1079         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1080         ptlrpc_at_adj_net_latency(req,
1081                                   lustre_msg_get_service_time(req->rq_repmsg));
1082
1083         rc = ptlrpc_check_status(req);
1084         imp->imp_connect_error = rc;
1085
1086         if (rc) {
1087                 /*
1088                  * Either we've been evicted, or the server has failed for
1089                  * some reason. Try to reconnect, and if that fails, punt to
1090                  * the upcall.
1091                  */
1092                 if (ll_rpc_recoverable_error(rc)) {
1093                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1094                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1095                                 RETURN(rc);
1096                         }
1097                         ptlrpc_request_handle_notconn(req);
1098                         RETURN(rc);
1099                 }
1100         } else {
1101                 /*
1102                  * Let's look if server sent slv. Do it only for RPC with
1103                  * rc == 0.
1104                  */
1105                 ldlm_cli_update_pool(req);
1106         }
1107
1108         /*
1109          * Store transno in reqmsg for replay.
1110          */
1111         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1112                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1113                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1114         }
1115
1116         if (imp->imp_replayable) {
1117                 cfs_spin_lock(&imp->imp_lock);
1118                 /*
1119                  * No point in adding already-committed requests to the replay
1120                  * list, we will just remove them immediately. b=9829
1121                  */
1122                 if (req->rq_transno != 0 &&
1123                     (req->rq_transno >
1124                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1125                      req->rq_replay)) {
1126                         /** version recovery */
1127                         ptlrpc_save_versions(req);
1128                         ptlrpc_retain_replayable_request(req, imp);
1129                 } else if (req->rq_commit_cb != NULL) {
1130                         cfs_spin_unlock(&imp->imp_lock);
1131                         req->rq_commit_cb(req);
1132                         cfs_spin_lock(&imp->imp_lock);
1133                 }
1134
1135                 /*
1136                  * Replay-enabled imports return commit-status information.
1137                  */
1138                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1139                         imp->imp_peer_committed_transno =
1140                                 lustre_msg_get_last_committed(req->rq_repmsg);
1141                 }
1142                 ptlrpc_free_committed(imp);
1143                 cfs_spin_unlock(&imp->imp_lock);
1144         }
1145
1146         RETURN(rc);
1147 }
1148
1149 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1150 {
1151         struct obd_import     *imp;
1152         int rc;
1153         ENTRY;
1154
1155         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1156         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()))
1157                 RETURN (0);
1158
1159         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1160
1161         imp = req->rq_import;
1162         cfs_spin_lock(&imp->imp_lock);
1163
1164         req->rq_import_generation = imp->imp_generation;
1165
1166         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1167                 cfs_spin_lock(&req->rq_lock);
1168                 req->rq_waiting = 1;
1169                 cfs_spin_unlock(&req->rq_lock);
1170
1171                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1172                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1173                           ptlrpc_import_state_name(req->rq_send_state),
1174                           ptlrpc_import_state_name(imp->imp_state));
1175                 LASSERT(cfs_list_empty(&req->rq_list));
1176                 cfs_list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1177                 cfs_atomic_inc(&req->rq_import->imp_inflight);
1178                 cfs_spin_unlock(&imp->imp_lock);
1179                 RETURN(0);
1180         }
1181
1182         if (rc != 0) {
1183                 cfs_spin_unlock(&imp->imp_lock);
1184                 req->rq_status = rc;
1185                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1186                 RETURN(rc);
1187         }
1188
1189         LASSERT(cfs_list_empty(&req->rq_list));
1190         cfs_list_add_tail(&req->rq_list, &imp->imp_sending_list);
1191         cfs_atomic_inc(&req->rq_import->imp_inflight);
1192         cfs_spin_unlock(&imp->imp_lock);
1193
1194         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1195
1196         rc = sptlrpc_req_refresh_ctx(req, -1);
1197         if (rc) {
1198                 if (req->rq_err) {
1199                         req->rq_status = rc;
1200                         RETURN(1);
1201                 } else {
1202                         req->rq_wait_ctx = 1;
1203                         RETURN(0);
1204                 }
1205         }
1206
1207         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1208                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1209                imp->imp_obd->obd_uuid.uuid,
1210                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1211                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1212                lustre_msg_get_opc(req->rq_reqmsg));
1213
1214         rc = ptl_send_rpc(req, 0);
1215         if (rc) {
1216                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1217                 req->rq_net_err = 1;
1218                 RETURN(rc);
1219         }
1220         RETURN(0);
1221 }
1222
1223 /* this sends any unsent RPCs in @set and returns TRUE if all are sent */
1224 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1225 {
1226         cfs_list_t *tmp;
1227         int force_timer_recalc = 0;
1228         ENTRY;
1229
1230         if (set->set_remaining == 0)
1231                 RETURN(1);
1232
1233         cfs_list_for_each(tmp, &set->set_requests) {
1234                 struct ptlrpc_request *req =
1235                         cfs_list_entry(tmp, struct ptlrpc_request,
1236                                        rq_set_chain);
1237                 struct obd_import *imp = req->rq_import;
1238                 int unregistered = 0;
1239                 int rc = 0;
1240
1241                 if (req->rq_phase == RQ_PHASE_NEW &&
1242                     ptlrpc_send_new_req(req)) {
1243                         force_timer_recalc = 1;
1244                 }
1245
1246                 /* delayed send - skip */
1247                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1248                         continue;
1249
1250                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1251                       req->rq_phase == RQ_PHASE_BULK ||
1252                       req->rq_phase == RQ_PHASE_INTERPRET ||
1253                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1254                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1255                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1256                         LBUG();
1257                 }
1258
1259                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1260                         LASSERT(req->rq_next_phase != req->rq_phase);
1261                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1262
1263                         /*
1264                          * Skip processing until reply is unlinked. We
1265                          * can't return to pool before that and we can't
1266                          * call interpret before that. We need to make
1267                          * sure that all rdma transfers finished and will
1268                          * not corrupt any data.
1269                          */
1270                         if (ptlrpc_client_recv_or_unlink(req) ||
1271                             ptlrpc_client_bulk_active(req))
1272                                 continue;
1273
1274                         /*
1275                          * Turn fail_loc off to prevent it from looping
1276                          * forever.
1277                          */
1278                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1279                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1280                                                      OBD_FAIL_ONCE);
1281                         }
1282                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1283                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1284                                                      OBD_FAIL_ONCE);
1285                         }
1286
1287                         /*
1288                          * Move to next phase if reply was successfully
1289                          * unlinked.
1290                          */
1291                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1292                 }
1293
1294                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1295                         continue;
1296
1297                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1298                         GOTO(interpret, req->rq_status);
1299
1300                 /*
1301                  * Note that this also will start async reply unlink.
1302                  */
1303                 if (req->rq_net_err && !req->rq_timedout) {
1304                         ptlrpc_expire_one_request(req, 1);
1305
1306                         /*
1307                          * Check if we still need to wait for unlink.
1308                          */
1309                         if (ptlrpc_client_recv_or_unlink(req) ||
1310                             ptlrpc_client_bulk_active(req))
1311                                 continue;
1312                 }
1313
1314                 if (req->rq_err) {
1315                         cfs_spin_lock(&req->rq_lock);
1316                         req->rq_replied = 0;
1317                         cfs_spin_unlock(&req->rq_lock);
1318                         if (req->rq_status == 0)
1319                                 req->rq_status = -EIO;
1320                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1321                         GOTO(interpret, req->rq_status);
1322                 }
1323
1324                 /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
1325                  * so it sets rq_intr regardless of individual rpc
1326                  * timeouts. The synchronous IO waiting path sets 
1327                  * rq_intr irrespective of whether ptlrpcd
1328                  * has seen a timeout.  Our policy is to only interpret
1329                  * interrupted rpcs after they have timed out, so we
1330                  * need to enforce that here.
1331                  */
1332
1333                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1334                                      req->rq_wait_ctx)) {
1335                         req->rq_status = -EINTR;
1336                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1337                         GOTO(interpret, req->rq_status);
1338                 }
1339
1340                 if (req->rq_phase == RQ_PHASE_RPC) {
1341                         if (req->rq_timedout || req->rq_resend ||
1342                             req->rq_waiting || req->rq_wait_ctx) {
1343                                 int status;
1344
1345                                 if (!ptlrpc_unregister_reply(req, 1))
1346                                         continue;
1347
1348                                 cfs_spin_lock(&imp->imp_lock);
1349                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1350                                         /* put on delay list - only if we wait
1351                                          * recovery finished - before send */
1352                                         cfs_list_del_init(&req->rq_list);
1353                                         cfs_list_add_tail(&req->rq_list,
1354                                                           &imp-> \
1355                                                           imp_delayed_list);
1356                                         cfs_spin_unlock(&imp->imp_lock);
1357                                         continue;
1358                                 }
1359
1360                                 if (status != 0)  {
1361                                         req->rq_status = status;
1362                                         ptlrpc_rqphase_move(req,
1363                                                 RQ_PHASE_INTERPRET);
1364                                         cfs_spin_unlock(&imp->imp_lock);
1365                                         GOTO(interpret, req->rq_status);
1366                                 }
1367                                 if (req->rq_no_resend && !req->rq_wait_ctx) {
1368                                         req->rq_status = -ENOTCONN;
1369                                         ptlrpc_rqphase_move(req,
1370                                                 RQ_PHASE_INTERPRET);
1371                                         cfs_spin_unlock(&imp->imp_lock);
1372                                         GOTO(interpret, req->rq_status);
1373                                 }
1374
1375                                 cfs_list_del_init(&req->rq_list);
1376                                 cfs_list_add_tail(&req->rq_list,
1377                                               &imp->imp_sending_list);
1378
1379                                 cfs_spin_unlock(&imp->imp_lock);
1380
1381                                 cfs_spin_lock(&req->rq_lock);
1382                                 req->rq_waiting = 0;
1383                                 cfs_spin_unlock(&req->rq_lock);
1384
1385                                 if (req->rq_timedout||req->rq_resend) {
1386                                         /* This is re-sending anyways,
1387                                          * let's mark req as resend. */
1388                                         cfs_spin_lock(&req->rq_lock);
1389                                         req->rq_resend = 1;
1390                                         cfs_spin_unlock(&req->rq_lock);
1391                                         if (req->rq_bulk) {
1392                                                 __u64 old_xid;
1393
1394                                                 if (!ptlrpc_unregister_bulk(req, 1))
1395                                                         continue;
1396
1397                                                 /* ensure previous bulk fails */
1398                                                 old_xid = req->rq_xid;
1399                                                 req->rq_xid = ptlrpc_next_xid();
1400                                                 CDEBUG(D_HA, "resend bulk "
1401                                                        "old x"LPU64
1402                                                        " new x"LPU64"\n",
1403                                                        old_xid, req->rq_xid);
1404                                         }
1405                                 }
1406                                 /*
1407                                  * rq_wait_ctx is only touched by ptlrpcd,
1408                                  * so no lock is needed here.
1409                                  */
1410                                 status = sptlrpc_req_refresh_ctx(req, -1);
1411                                 if (status) {
1412                                         if (req->rq_err) {
1413                                                 req->rq_status = status;
1414                                                 cfs_spin_lock(&req->rq_lock);
1415                                                 req->rq_wait_ctx = 0;
1416                                                 cfs_spin_unlock(&req->rq_lock);
1417                                                 force_timer_recalc = 1;
1418                                         } else {
1419                                                 cfs_spin_lock(&req->rq_lock);
1420                                                 req->rq_wait_ctx = 1;
1421                                                 cfs_spin_unlock(&req->rq_lock);
1422                                         }
1423
1424                                         continue;
1425                                 } else {
1426                                         cfs_spin_lock(&req->rq_lock);
1427                                         req->rq_wait_ctx = 0;
1428                                         cfs_spin_unlock(&req->rq_lock);
1429                                 }
1430
1431                                 rc = ptl_send_rpc(req, 0);
1432                                 if (rc) {
1433                                         DEBUG_REQ(D_HA, req, "send failed (%d)",
1434                                                   rc);
1435                                         force_timer_recalc = 1;
1436                                         cfs_spin_lock(&req->rq_lock);
1437                                         req->rq_net_err = 1;
1438                                         cfs_spin_unlock(&req->rq_lock);
1439                                 }
1440                                 /* need to reset the timeout */
1441                                 force_timer_recalc = 1;
1442                         }
1443
1444                         cfs_spin_lock(&req->rq_lock);
1445
1446                         if (ptlrpc_client_early(req)) {
1447                                 ptlrpc_at_recv_early_reply(req);
1448                                 cfs_spin_unlock(&req->rq_lock);
1449                                 continue;
1450                         }
1451
1452                         /* Still waiting for a reply? */
1453                         if (ptlrpc_client_recv(req)) {
1454                                 cfs_spin_unlock(&req->rq_lock);
1455                                 continue;
1456                         }
1457
1458                         /* Did we actually receive a reply? */
1459                         if (!ptlrpc_client_replied(req)) {
1460                                 cfs_spin_unlock(&req->rq_lock);
1461                                 continue;
1462                         }
1463
1464                         cfs_spin_unlock(&req->rq_lock);
1465
1466                         /* unlink from net because we are going to
1467                          * swab in-place of reply buffer */
1468                         unregistered = ptlrpc_unregister_reply(req, 1);
1469                         if (!unregistered)
1470                                 continue;
1471
1472                         req->rq_status = after_reply(req);
1473                         if (req->rq_resend)
1474                                 continue;
1475
1476                         /* If there is no bulk associated with this request,
1477                          * then we're done and should let the interpreter
1478                          * process the reply. Similarly if the RPC returned
1479                          * an error, and therefore the bulk will never arrive.
1480                          */
1481                         if (req->rq_bulk == NULL || req->rq_status != 0) {
1482                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1483                                 GOTO(interpret, req->rq_status);
1484                         }
1485
1486                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1487                 }
1488
1489                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1490                 if (ptlrpc_client_bulk_active(req))
1491                         continue;
1492
1493                 if (!req->rq_bulk->bd_success) {
1494                         /* The RPC reply arrived OK, but the bulk screwed
1495                          * up!  Dead weird since the server told us the RPC
1496                          * was good after getting the REPLY for her GET or
1497                          * the ACK for her PUT. */
1498                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1499                         LBUG();
1500                 }
1501
1502                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1503
1504         interpret:
1505                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1506
1507                 /* This moves to "unregistering" phase we need to wait for
1508                  * reply unlink. */
1509                 if (!unregistered && !ptlrpc_unregister_reply(req, 1))
1510                         continue;
1511
1512                 if (!ptlrpc_unregister_bulk(req, 1))
1513                         continue;
1514
1515                 /* When calling interpret receiving already should be
1516                  * finished. */
1517                 LASSERT(!req->rq_receiving_reply);
1518
1519                 ptlrpc_req_interpret(env, req, req->rq_status);
1520
1521                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1522
1523                 CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:"
1524                        "opc %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1525                        imp->imp_obd->obd_uuid.uuid,
1526                        req->rq_reqmsg ? lustre_msg_get_status(req->rq_reqmsg):-1,
1527                        req->rq_xid,
1528                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1529                        req->rq_reqmsg ? lustre_msg_get_opc(req->rq_reqmsg) : -1);
1530
1531                 cfs_spin_lock(&imp->imp_lock);
1532                 /* Request already may be not on sending or delaying list. This
1533                  * may happen in the case of marking it erroneous for the case
1534                  * ptlrpc_import_delay_req(req, status) find it impossible to
1535                  * allow sending this rpc and returns *status != 0. */
1536                 if (!cfs_list_empty(&req->rq_list)) {
1537                         cfs_list_del_init(&req->rq_list);
1538                         cfs_atomic_dec(&imp->imp_inflight);
1539                 }
1540                 cfs_spin_unlock(&imp->imp_lock);
1541
1542                 set->set_remaining--;
1543                 cfs_waitq_broadcast(&imp->imp_recovery_waitq);
1544         }
1545
1546         /* If we hit an error, we want to recover promptly. */
1547         RETURN(set->set_remaining == 0 || force_timer_recalc);
1548 }
1549
1550 /* Return 1 if we should give up, else 0 */
1551 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1552 {
1553         struct obd_import *imp = req->rq_import;
1554         int rc = 0;
1555         ENTRY;
1556
1557         cfs_spin_lock(&req->rq_lock);
1558         req->rq_timedout = 1;
1559         cfs_spin_unlock(&req->rq_lock);
1560
1561         DEBUG_REQ(req->rq_fake ? D_INFO : D_WARNING, req, 
1562                   "Request x"LPU64" sent from %s to NID %s "CFS_DURATION_T"s "
1563                   "ago has %s ("CFS_DURATION_T"s prior to deadline).\n",
1564                   req->rq_xid, imp ? imp->imp_obd->obd_name : "<?>",
1565                   imp ? libcfs_nid2str(imp->imp_connection->c_peer.nid) : "<?>",
1566                   cfs_time_sub(cfs_time_current_sec(), req->rq_sent),
1567                   req->rq_net_err ? "failed due to network error" : "timed out",
1568                   cfs_time_sub(req->rq_deadline, req->rq_sent));
1569
1570         if (imp != NULL && obd_debug_peer_on_timeout)
1571                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1572
1573         ptlrpc_unregister_reply(req, async_unlink);
1574         ptlrpc_unregister_bulk(req, async_unlink);
1575
1576         if (obd_dump_on_timeout)
1577                 libcfs_debug_dumplog();
1578
1579         if (imp == NULL) {
1580                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1581                 RETURN(1);
1582         }
1583
1584         if (req->rq_fake)
1585                RETURN(1);
1586
1587         cfs_atomic_inc(&imp->imp_timeouts);
1588
1589         /* The DLM server doesn't want recovery run on its imports. */
1590         if (imp->imp_dlm_fake)
1591                 RETURN(1);
1592
1593         /* If this request is for recovery or other primordial tasks,
1594          * then error it out here. */
1595         if (req->rq_ctx_init || req->rq_ctx_fini ||
1596             req->rq_send_state != LUSTRE_IMP_FULL ||
1597             imp->imp_obd->obd_no_recov) {
1598                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1599                           ptlrpc_import_state_name(req->rq_send_state),
1600                           ptlrpc_import_state_name(imp->imp_state));
1601                 cfs_spin_lock(&req->rq_lock);
1602                 req->rq_status = -ETIMEDOUT;
1603                 req->rq_err = 1;
1604                 cfs_spin_unlock(&req->rq_lock);
1605                 RETURN(1);
1606         }
1607
1608         /* if a request can't be resent we can't wait for an answer after
1609            the timeout */
1610         if (req->rq_no_resend) {
1611                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1612                 rc = 1;
1613         }
1614
1615         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1616
1617         RETURN(rc);
1618 }
1619
1620 int ptlrpc_expired_set(void *data)
1621 {
1622         struct ptlrpc_request_set *set = data;
1623         cfs_list_t                *tmp;
1624         time_t                     now = cfs_time_current_sec();
1625         ENTRY;
1626
1627         LASSERT(set != NULL);
1628
1629         /*
1630          * A timeout expired. See which reqs it applies to...
1631          */
1632         cfs_list_for_each (tmp, &set->set_requests) {
1633                 struct ptlrpc_request *req =
1634                         cfs_list_entry(tmp, struct ptlrpc_request,
1635                                        rq_set_chain);
1636
1637                 /* don't expire request waiting for context */
1638                 if (req->rq_wait_ctx)
1639                         continue;
1640
1641                 /* Request in-flight? */
1642                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1643                        !req->rq_waiting && !req->rq_resend) ||
1644                       (req->rq_phase == RQ_PHASE_BULK)))
1645                         continue;
1646
1647                 if (req->rq_timedout ||     /* already dealt with */
1648                     req->rq_deadline > now) /* not expired */
1649                         continue;
1650
1651                 /* Deal with this guy. Do it asynchronously to not block
1652                  * ptlrpcd thread. */
1653                 ptlrpc_expire_one_request(req, 1);
1654         }
1655
1656         /*
1657          * When waiting for a whole set, we always break out of the
1658          * sleep so we can recalculate the timeout, or enable interrupts
1659          * if everyone's timed out.
1660          */
1661         RETURN(1);
1662 }
1663
1664 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1665 {
1666         cfs_spin_lock(&req->rq_lock);
1667         req->rq_intr = 1;
1668         cfs_spin_unlock(&req->rq_lock);
1669 }
1670
1671 void ptlrpc_interrupted_set(void *data)
1672 {
1673         struct ptlrpc_request_set *set = data;
1674         cfs_list_t *tmp;
1675
1676         LASSERT(set != NULL);
1677         CERROR("INTERRUPTED SET %p\n", set);
1678
1679         cfs_list_for_each(tmp, &set->set_requests) {
1680                 struct ptlrpc_request *req =
1681                         cfs_list_entry(tmp, struct ptlrpc_request,
1682                                        rq_set_chain);
1683
1684                 if (req->rq_phase != RQ_PHASE_RPC &&
1685                     req->rq_phase != RQ_PHASE_UNREGISTERING)
1686                         continue;
1687
1688                 ptlrpc_mark_interrupted(req);
1689         }
1690 }
1691
1692 /**
1693  * Get the smallest timeout in the set; this does NOT set a timeout.
1694  */
1695 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
1696 {
1697         cfs_list_t            *tmp;
1698         time_t                 now = cfs_time_current_sec();
1699         int                    timeout = 0;
1700         struct ptlrpc_request *req;
1701         int                    deadline;
1702         ENTRY;
1703
1704         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1705
1706         cfs_list_for_each(tmp, &set->set_requests) {
1707                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1708
1709                 /*
1710                  * Request in-flight?
1711                  */
1712                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
1713                       (req->rq_phase == RQ_PHASE_BULK) ||
1714                       (req->rq_phase == RQ_PHASE_NEW)))
1715                         continue;
1716
1717                 /*
1718                  * Already timed out.
1719                  */
1720                 if (req->rq_timedout)
1721                         continue;
1722
1723                 /*
1724                  * Waiting for ctx.
1725                  */
1726                 if (req->rq_wait_ctx)
1727                         continue;
1728
1729                 if (req->rq_phase == RQ_PHASE_NEW)
1730                         deadline = req->rq_sent;
1731                 else
1732                         deadline = req->rq_sent + req->rq_timeout;
1733
1734                 if (deadline <= now)    /* actually expired already */
1735                         timeout = 1;    /* ASAP */
1736                 else if (timeout == 0 || timeout > deadline - now)
1737                         timeout = deadline - now;
1738         }
1739         RETURN(timeout);
1740 }
1741
1742 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
1743 {
1744         cfs_list_t            *tmp;
1745         struct ptlrpc_request *req;
1746         struct l_wait_info     lwi;
1747         int                    rc, timeout;
1748         ENTRY;
1749
1750         if (cfs_list_empty(&set->set_requests))
1751                 RETURN(0);
1752
1753         cfs_list_for_each(tmp, &set->set_requests) {
1754                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1755                 if (req->rq_phase == RQ_PHASE_NEW)
1756                         (void)ptlrpc_send_new_req(req);
1757         }
1758
1759         do {
1760                 timeout = ptlrpc_set_next_timeout(set);
1761
1762                 /* wait until all complete, interrupted, or an in-flight
1763                  * req times out */
1764                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
1765                        set, timeout);
1766
1767                 if (timeout == 0 && !cfs_signal_pending())
1768                         /*
1769                          * No requests are in-flight (ether timed out
1770                          * or delayed), so we can allow interrupts.
1771                          * We still want to block for a limited time,
1772                          * so we allow interrupts during the timeout.
1773                          */
1774                         lwi = LWI_TIMEOUT_INTR_ALL(cfs_time_seconds(1), 
1775                                                    ptlrpc_expired_set,
1776                                                    ptlrpc_interrupted_set, set);
1777                 else
1778                         /*
1779                          * At least one request is in flight, so no
1780                          * interrupts are allowed. Wait until all
1781                          * complete, or an in-flight req times out. 
1782                          */
1783                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
1784                                           ptlrpc_expired_set, set);
1785
1786                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
1787
1788                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
1789
1790                 /* -EINTR => all requests have been flagged rq_intr so next
1791                  * check completes.
1792                  * -ETIMEDOUT => someone timed out.  When all reqs have
1793                  * timed out, signals are enabled allowing completion with
1794                  * EINTR.
1795                  * I don't really care if we go once more round the loop in
1796                  * the error cases -eeb. */
1797         } while (rc != 0 || set->set_remaining != 0);
1798
1799         LASSERT(set->set_remaining == 0);
1800
1801         rc = 0;
1802         cfs_list_for_each(tmp, &set->set_requests) {
1803                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1804
1805                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
1806                 if (req->rq_status != 0)
1807                         rc = req->rq_status;
1808         }
1809
1810         if (set->set_interpret != NULL) {
1811                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
1812                         set->set_interpret;
1813                 rc = interpreter (set, set->set_arg, rc);
1814         } else {
1815                 struct ptlrpc_set_cbdata *cbdata, *n;
1816                 int err;
1817
1818                 cfs_list_for_each_entry_safe(cbdata, n,
1819                                          &set->set_cblist, psc_item) {
1820                         cfs_list_del_init(&cbdata->psc_item);
1821                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
1822                         if (err && !rc)
1823                                 rc = err;
1824                         OBD_FREE_PTR(cbdata);
1825                 }
1826         }
1827
1828         RETURN(rc);
1829 }
1830
1831 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
1832 {
1833         ENTRY;
1834         if (request == NULL) {
1835                 EXIT;
1836                 return;
1837         }
1838
1839         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
1840         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
1841         LASSERTF(cfs_list_empty(&request->rq_list), "req %p\n", request);
1842         LASSERTF(cfs_list_empty(&request->rq_set_chain), "req %p\n", request);
1843         LASSERTF(cfs_list_empty(&request->rq_exp_list), "req %p\n", request);
1844         LASSERTF(!request->rq_replay, "req %p\n", request);
1845         LASSERT(request->rq_cli_ctx || request->rq_fake);
1846
1847         req_capsule_fini(&request->rq_pill);
1848
1849         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
1850          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
1851         if (request->rq_import != NULL) {
1852                 if (!locked)
1853                         cfs_spin_lock(&request->rq_import->imp_lock);
1854                 cfs_list_del_init(&request->rq_replay_list);
1855                 if (!locked)
1856                         cfs_spin_unlock(&request->rq_import->imp_lock);
1857         }
1858         LASSERTF(cfs_list_empty(&request->rq_replay_list), "req %p\n", request);
1859
1860         if (cfs_atomic_read(&request->rq_refcount) != 0) {
1861                 DEBUG_REQ(D_ERROR, request,
1862                           "freeing request with nonzero refcount");
1863                 LBUG();
1864         }
1865
1866         if (request->rq_repbuf != NULL)
1867                 sptlrpc_cli_free_repbuf(request);
1868         if (request->rq_export != NULL) {
1869                 class_export_put(request->rq_export);
1870                 request->rq_export = NULL;
1871         }
1872         if (request->rq_import != NULL) {
1873                 class_import_put(request->rq_import);
1874                 request->rq_import = NULL;
1875         }
1876         if (request->rq_bulk != NULL)
1877                 ptlrpc_free_bulk(request->rq_bulk);
1878
1879         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
1880                 sptlrpc_cli_free_reqbuf(request);
1881
1882         if (request->rq_cli_ctx)
1883                 sptlrpc_req_put_ctx(request, !locked);
1884
1885         if (request->rq_pool)
1886                 __ptlrpc_free_req_to_pool(request);
1887         else
1888                 OBD_FREE(request, sizeof(*request));
1889         EXIT;
1890 }
1891
1892 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
1893 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
1894 {
1895         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
1896         (void)__ptlrpc_req_finished(request, 1);
1897 }
1898
1899 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
1900 {
1901         ENTRY;
1902         if (request == NULL)
1903                 RETURN(1);
1904
1905         if (request == LP_POISON ||
1906             request->rq_reqmsg == LP_POISON) {
1907                 CERROR("dereferencing freed request (bug 575)\n");
1908                 LBUG();
1909                 RETURN(1);
1910         }
1911
1912         DEBUG_REQ(D_INFO, request, "refcount now %u",
1913                   cfs_atomic_read(&request->rq_refcount) - 1);
1914
1915         if (cfs_atomic_dec_and_test(&request->rq_refcount)) {
1916                 __ptlrpc_free_req(request, locked);
1917                 RETURN(1);
1918         }
1919
1920         RETURN(0);
1921 }
1922
1923 void ptlrpc_req_finished(struct ptlrpc_request *request)
1924 {
1925         __ptlrpc_req_finished(request, 0);
1926 }
1927
1928 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
1929 {
1930         return request->rq_xid;
1931 }
1932 EXPORT_SYMBOL(ptlrpc_req_xid);
1933
1934 /* Disengage the client's reply buffer from the network
1935  * NB does _NOT_ unregister any client-side bulk.
1936  * IDEMPOTENT, but _not_ safe against concurrent callers.
1937  * The request owner (i.e. the thread doing the I/O) must call...
1938  */
1939 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
1940 {
1941         int                rc;
1942         cfs_waitq_t       *wq;
1943         struct l_wait_info lwi;
1944
1945         /*
1946          * Might sleep.
1947          */
1948         LASSERT(!cfs_in_interrupt());
1949
1950         /*
1951          * Let's setup deadline for reply unlink.
1952          */
1953         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
1954             async && request->rq_reply_deadline == 0)
1955                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
1956
1957         /*
1958          * Nothing left to do.
1959          */
1960         if (!ptlrpc_client_recv_or_unlink(request))
1961                 RETURN(1);
1962
1963         LNetMDUnlink(request->rq_reply_md_h);
1964
1965         /*
1966          * Let's check it once again.
1967          */
1968         if (!ptlrpc_client_recv_or_unlink(request))
1969                 RETURN(1);
1970
1971         /*
1972          * Move to "Unregistering" phase as reply was not unlinked yet.
1973          */
1974         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
1975
1976         /*
1977          * Do not wait for unlink to finish.
1978          */
1979         if (async)
1980                 RETURN(0);
1981
1982         /*
1983          * We have to l_wait_event() whatever the result, to give liblustre
1984          * a chance to run reply_in_callback(), and to make sure we've
1985          * unlinked before returning a req to the pool.
1986          */
1987         if (request->rq_set != NULL)
1988                 wq = &request->rq_set->set_waitq;
1989         else
1990                 wq = &request->rq_reply_waitq;
1991
1992         for (;;) {
1993                 /* Network access will complete in finite time but the HUGE
1994                  * timeout lets us CWARN for visibility of sluggish NALs */
1995                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
1996                                            cfs_time_seconds(1), NULL, NULL);
1997                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
1998                                   &lwi);
1999                 if (rc == 0) {
2000                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2001                         RETURN(1);
2002                 }
2003
2004                 LASSERT(rc == -ETIMEDOUT);
2005                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2006                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
2007                           request->rq_must_unlink);
2008         }
2009         RETURN(0);
2010 }
2011
2012 /* caller must hold imp->imp_lock */
2013 void ptlrpc_free_committed(struct obd_import *imp)
2014 {
2015         cfs_list_t *tmp, *saved;
2016         struct ptlrpc_request *req;
2017         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
2018         ENTRY;
2019
2020         LASSERT(imp != NULL);
2021
2022         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2023
2024
2025         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2026             imp->imp_generation == imp->imp_last_generation_checked) {
2027                 CDEBUG(D_RPCTRACE, "%s: skip recheck: last_committed "LPU64"\n",
2028                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2029                 EXIT;
2030                 return;
2031         }
2032         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2033                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2034                imp->imp_generation);
2035         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2036         imp->imp_last_generation_checked = imp->imp_generation;
2037
2038         cfs_list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
2039                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2040                                      rq_replay_list);
2041
2042                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2043                 LASSERT(req != last_req);
2044                 last_req = req;
2045
2046                 if (req->rq_transno == 0) {
2047                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2048                         LBUG();
2049                 }
2050                 if (req->rq_import_generation < imp->imp_generation) {
2051                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2052                         GOTO(free_req, 0);
2053                 }
2054
2055                 if (req->rq_replay) {
2056                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2057                         continue;
2058                 }
2059
2060                 /* not yet committed */
2061                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2062                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2063                         break;
2064                 }
2065
2066                 DEBUG_REQ(D_RPCTRACE, req, "commit (last_committed "LPU64")",
2067                           imp->imp_peer_committed_transno);
2068 free_req:
2069                 cfs_spin_lock(&req->rq_lock);
2070                 req->rq_replay = 0;
2071                 cfs_spin_unlock(&req->rq_lock);
2072                 if (req->rq_commit_cb != NULL)
2073                         req->rq_commit_cb(req);
2074                 cfs_list_del_init(&req->rq_replay_list);
2075                 __ptlrpc_req_finished(req, 1);
2076         }
2077
2078         EXIT;
2079         return;
2080 }
2081
2082 void ptlrpc_cleanup_client(struct obd_import *imp)
2083 {
2084         ENTRY;
2085         EXIT;
2086         return;
2087 }
2088
2089 void ptlrpc_resend_req(struct ptlrpc_request *req)
2090 {
2091         DEBUG_REQ(D_HA, req, "going to resend");
2092         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2093         req->rq_status = -EAGAIN;
2094
2095         cfs_spin_lock(&req->rq_lock);
2096         req->rq_resend = 1;
2097         req->rq_net_err = 0;
2098         req->rq_timedout = 0;
2099         if (req->rq_bulk) {
2100                 __u64 old_xid = req->rq_xid;
2101
2102                 /* ensure previous bulk fails */
2103                 req->rq_xid = ptlrpc_next_xid();
2104                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2105                        old_xid, req->rq_xid);
2106         }
2107         ptlrpc_client_wake_req(req);
2108         cfs_spin_unlock(&req->rq_lock);
2109 }
2110
2111 /* XXX: this function and rq_status are currently unused */
2112 void ptlrpc_restart_req(struct ptlrpc_request *req)
2113 {
2114         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2115         req->rq_status = -ERESTARTSYS;
2116
2117         cfs_spin_lock(&req->rq_lock);
2118         req->rq_restart = 1;
2119         req->rq_timedout = 0;
2120         ptlrpc_client_wake_req(req);
2121         cfs_spin_unlock(&req->rq_lock);
2122 }
2123
2124 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2125 {
2126         ENTRY;
2127         cfs_atomic_inc(&req->rq_refcount);
2128         RETURN(req);
2129 }
2130
2131 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2132                                       struct obd_import *imp)
2133 {
2134         cfs_list_t *tmp;
2135
2136         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2137
2138         if (req->rq_transno == 0) {
2139                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2140                 LBUG();
2141         }
2142
2143         /* clear this for new requests that were resent as well
2144            as resent replayed requests. */
2145         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2146
2147         /* don't re-add requests that have been replayed */
2148         if (!cfs_list_empty(&req->rq_replay_list))
2149                 return;
2150
2151         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2152
2153         LASSERT(imp->imp_replayable);
2154         /* Balanced in ptlrpc_free_committed, usually. */
2155         ptlrpc_request_addref(req);
2156         cfs_list_for_each_prev(tmp, &imp->imp_replay_list) {
2157                 struct ptlrpc_request *iter =
2158                         cfs_list_entry(tmp, struct ptlrpc_request,
2159                                        rq_replay_list);
2160
2161                 /* We may have duplicate transnos if we create and then
2162                  * open a file, or for closes retained if to match creating
2163                  * opens, so use req->rq_xid as a secondary key.
2164                  * (See bugs 684, 685, and 428.)
2165                  * XXX no longer needed, but all opens need transnos!
2166                  */
2167                 if (iter->rq_transno > req->rq_transno)
2168                         continue;
2169
2170                 if (iter->rq_transno == req->rq_transno) {
2171                         LASSERT(iter->rq_xid != req->rq_xid);
2172                         if (iter->rq_xid > req->rq_xid)
2173                                 continue;
2174                 }
2175
2176                 cfs_list_add(&req->rq_replay_list, &iter->rq_replay_list);
2177                 return;
2178         }
2179
2180         cfs_list_add(&req->rq_replay_list, &imp->imp_replay_list);
2181 }
2182
2183 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2184 {
2185         struct ptlrpc_request_set *set;
2186         int rc;
2187         ENTRY;
2188
2189         LASSERT(req->rq_set == NULL);
2190         LASSERT(!req->rq_receiving_reply);
2191
2192         set = ptlrpc_prep_set();
2193         if (set == NULL) {
2194                 CERROR("Unable to allocate ptlrpc set.");
2195                 RETURN(-ENOMEM);
2196         }
2197
2198         /* for distributed debugging */
2199         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2200
2201         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2202         ptlrpc_request_addref(req);
2203         ptlrpc_set_add_req(set, req);
2204         rc = ptlrpc_set_wait(set);
2205         ptlrpc_set_destroy(set);
2206
2207         RETURN(rc);
2208 }
2209
2210 struct ptlrpc_replay_async_args {
2211         int praa_old_state;
2212         int praa_old_status;
2213 };
2214
2215 static int ptlrpc_replay_interpret(const struct lu_env *env,
2216                                    struct ptlrpc_request *req,
2217                                    void * data, int rc)
2218 {
2219         struct ptlrpc_replay_async_args *aa = data;
2220         struct obd_import *imp = req->rq_import;
2221
2222         ENTRY;
2223         cfs_atomic_dec(&imp->imp_replay_inflight);
2224
2225         if (!ptlrpc_client_replied(req)) {
2226                 CERROR("request replay timed out, restarting recovery\n");
2227                 GOTO(out, rc = -ETIMEDOUT);
2228         }
2229
2230         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2231             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2232              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2233                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2234
2235         /** VBR: check version failure */
2236         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2237                 /** replay was failed due to version mismatch */
2238                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2239                 cfs_spin_lock(&imp->imp_lock);
2240                 imp->imp_vbr_failed = 1;
2241                 imp->imp_no_lock_replay = 1;
2242                 cfs_spin_unlock(&imp->imp_lock);
2243         } else {
2244                 /** The transno had better not change over replay. */
2245                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2246                          lustre_msg_get_transno(req->rq_repmsg) ||
2247                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2248                          LPX64"/"LPX64"\n",
2249                          lustre_msg_get_transno(req->rq_reqmsg),
2250                          lustre_msg_get_transno(req->rq_repmsg));
2251         }
2252
2253         cfs_spin_lock(&imp->imp_lock);
2254         /** if replays by version then gap was occur on server, no trust to locks */
2255         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2256                 imp->imp_no_lock_replay = 1;
2257         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2258         cfs_spin_unlock(&imp->imp_lock);
2259         LASSERT(imp->imp_last_replay_transno);
2260
2261         DEBUG_REQ(D_HA, req, "got rep");
2262
2263         /* let the callback do fixups, possibly including in the request */
2264         if (req->rq_replay_cb)
2265                 req->rq_replay_cb(req);
2266
2267         if (ptlrpc_client_replied(req) &&
2268             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2269                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2270                           lustre_msg_get_status(req->rq_repmsg),
2271                           aa->praa_old_status);
2272         } else {
2273                 /* Put it back for re-replay. */
2274                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2275         }
2276
2277         /*
2278          * Errors while replay can set transno to 0, but
2279          * imp_last_replay_transno shouldn't be set to 0 anyway
2280          */
2281         if (req->rq_transno > 0) {
2282                 cfs_spin_lock(&imp->imp_lock);
2283                 LASSERT(req->rq_transno <= imp->imp_last_replay_transno);
2284                 imp->imp_last_replay_transno = req->rq_transno;
2285                 cfs_spin_unlock(&imp->imp_lock);
2286         } else
2287                 CERROR("Transno is 0 during replay!\n");
2288         /* continue with recovery */
2289         rc = ptlrpc_import_recovery_state_machine(imp);
2290  out:
2291         req->rq_send_state = aa->praa_old_state;
2292
2293         if (rc != 0)
2294                 /* this replay failed, so restart recovery */
2295                 ptlrpc_connect_import(imp, NULL);
2296
2297         RETURN(rc);
2298 }
2299
2300 int ptlrpc_replay_req(struct ptlrpc_request *req)
2301 {
2302         struct ptlrpc_replay_async_args *aa;
2303         ENTRY;
2304
2305         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2306         /* Not handling automatic bulk replay yet (or ever?) */
2307         LASSERT(req->rq_bulk == NULL);
2308
2309         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2310         aa = ptlrpc_req_async_args(req);
2311         memset(aa, 0, sizeof *aa);
2312
2313         /* Prepare request to be resent with ptlrpcd */
2314         aa->praa_old_state = req->rq_send_state;
2315         req->rq_send_state = LUSTRE_IMP_REPLAY;
2316         req->rq_phase = RQ_PHASE_NEW;
2317         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2318         if (req->rq_repmsg)
2319                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2320         req->rq_status = 0;
2321         req->rq_interpret_reply = ptlrpc_replay_interpret;
2322         /* Readjust the timeout for current conditions */
2323         ptlrpc_at_set_req_timeout(req);
2324
2325         DEBUG_REQ(D_HA, req, "REPLAY");
2326
2327         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2328         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2329
2330         ptlrpcd_add_req(req, PSCOPE_OTHER);
2331         RETURN(0);
2332 }
2333
2334 void ptlrpc_abort_inflight(struct obd_import *imp)
2335 {
2336         cfs_list_t *tmp, *n;
2337         ENTRY;
2338
2339         /* Make sure that no new requests get processed for this import.
2340          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2341          * this flag and then putting requests on sending_list or delayed_list.
2342          */
2343         cfs_spin_lock(&imp->imp_lock);
2344
2345         /* XXX locking?  Maybe we should remove each request with the list
2346          * locked?  Also, how do we know if the requests on the list are
2347          * being freed at this time?
2348          */
2349         cfs_list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2350                 struct ptlrpc_request *req =
2351                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2352
2353                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2354
2355                 cfs_spin_lock (&req->rq_lock);
2356                 if (req->rq_import_generation < imp->imp_generation) {
2357                         req->rq_err = 1;
2358                         req->rq_status = -EINTR;
2359                         ptlrpc_client_wake_req(req);
2360                 }
2361                 cfs_spin_unlock (&req->rq_lock);
2362         }
2363
2364         cfs_list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2365                 struct ptlrpc_request *req =
2366                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2367
2368                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2369
2370                 cfs_spin_lock (&req->rq_lock);
2371                 if (req->rq_import_generation < imp->imp_generation) {
2372                         req->rq_err = 1;
2373                         req->rq_status = -EINTR;
2374                         ptlrpc_client_wake_req(req);
2375                 }
2376                 cfs_spin_unlock (&req->rq_lock);
2377         }
2378
2379         /* Last chance to free reqs left on the replay list, but we
2380          * will still leak reqs that haven't committed.  */
2381         if (imp->imp_replayable)
2382                 ptlrpc_free_committed(imp);
2383
2384         cfs_spin_unlock(&imp->imp_lock);
2385
2386         EXIT;
2387 }
2388
2389 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2390 {
2391         cfs_list_t *tmp, *pos;
2392
2393         LASSERT(set != NULL);
2394
2395         cfs_list_for_each_safe(pos, tmp, &set->set_requests) {
2396                 struct ptlrpc_request *req =
2397                         cfs_list_entry(pos, struct ptlrpc_request,
2398                                        rq_set_chain);
2399
2400                 cfs_spin_lock(&req->rq_lock);
2401                 if (req->rq_phase != RQ_PHASE_RPC) {
2402                         cfs_spin_unlock(&req->rq_lock);
2403                         continue;
2404                 }
2405
2406                 req->rq_err = 1;
2407                 req->rq_status = -EINTR;
2408                 ptlrpc_client_wake_req(req);
2409                 cfs_spin_unlock(&req->rq_lock);
2410         }
2411 }
2412
2413 static __u64 ptlrpc_last_xid;
2414 static cfs_spinlock_t ptlrpc_last_xid_lock;
2415
2416 /* Initialize the XID for the node.  This is common among all requests on
2417  * this node, and only requires the property that it is monotonically
2418  * increasing.  It does not need to be sequential.  Since this is also used
2419  * as the RDMA match bits, it is important that a single client NOT have
2420  * the same match bits for two different in-flight requests, hence we do
2421  * NOT want to have an XID per target or similar.
2422  *
2423  * To avoid an unlikely collision between match bits after a client reboot
2424  * (which would deliver old data into the wrong RDMA buffer) initialize
2425  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2426  * If the time is clearly incorrect, we instead use a 62-bit random number.
2427  * In the worst case the random number will overflow 1M RPCs per second in
2428  * 9133 years, or permutations thereof.
2429  */
2430 #define YEAR_2004 (1ULL << 30)
2431 void ptlrpc_init_xid(void)
2432 {
2433         time_t now = cfs_time_current_sec();
2434
2435         cfs_spin_lock_init(&ptlrpc_last_xid_lock);
2436         if (now < YEAR_2004) {
2437                 ll_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2438                 ptlrpc_last_xid >>= 2;
2439                 ptlrpc_last_xid |= (1ULL << 61);
2440         } else {
2441                 ptlrpc_last_xid = (__u64)now << 20;
2442         }
2443 }
2444
2445 __u64 ptlrpc_next_xid(void)
2446 {
2447         __u64 tmp;
2448         cfs_spin_lock(&ptlrpc_last_xid_lock);
2449         tmp = ++ptlrpc_last_xid;
2450         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2451         return tmp;
2452 }
2453
2454 __u64 ptlrpc_sample_next_xid(void)
2455 {
2456 #if BITS_PER_LONG == 32
2457         /* need to avoid possible word tearing on 32-bit systems */
2458         __u64 tmp;
2459         cfs_spin_lock(&ptlrpc_last_xid_lock);
2460         tmp = ptlrpc_last_xid + 1;
2461         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2462         return tmp;
2463 #else
2464         /* No need to lock, since returned value is racy anyways */
2465         return ptlrpc_last_xid + 1;
2466 #endif
2467 }
2468 EXPORT_SYMBOL(ptlrpc_sample_next_xid);