Whamcloud - gitweb
b=20997 Enable time limit on the request to be queued
[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         cfs_waitq_init(&request->rq_set_waitq);
537         request->rq_xid = ptlrpc_next_xid();
538         cfs_atomic_set(&request->rq_refcount, 1);
539
540         lustre_msg_set_opc(request->rq_reqmsg, opcode);
541
542         RETURN(0);
543 out_ctx:
544         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
545 out_free:
546         class_import_put(imp);
547         return rc;
548 }
549
550 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
551                              __u32 version, int opcode, char **bufs,
552                              struct ptlrpc_cli_ctx *ctx)
553 {
554         int count;
555
556         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
557         return __ptlrpc_request_bufs_pack(request, version, opcode, count,
558                                           request->rq_pill.rc_area[RCL_CLIENT],
559                                           bufs, ctx);
560 }
561 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
562
563 int ptlrpc_request_pack(struct ptlrpc_request *request,
564                         __u32 version, int opcode)
565 {
566         return ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
567 }
568
569 static inline
570 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
571                                               struct ptlrpc_request_pool *pool)
572 {
573         struct ptlrpc_request *request = NULL;
574
575         if (pool)
576                 request = ptlrpc_prep_req_from_pool(pool);
577
578         if (!request)
579                 OBD_ALLOC_PTR(request);
580
581         if (request) {
582                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
583                 LASSERT(imp != LP_POISON);
584                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p",
585                         imp->imp_client);
586                 LASSERT(imp->imp_client != LP_POISON);
587
588                 request->rq_import = class_import_get(imp);
589         } else {
590                 CERROR("request allocation out of memory\n");
591         }
592
593         return request;
594 }
595
596 static struct ptlrpc_request *
597 ptlrpc_request_alloc_internal(struct obd_import *imp,
598                               struct ptlrpc_request_pool * pool,
599                               const struct req_format *format)
600 {
601         struct ptlrpc_request *request;
602
603         request = __ptlrpc_request_alloc(imp, pool);
604         if (request == NULL)
605                 return NULL;
606
607         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
608         req_capsule_set(&request->rq_pill, format);
609         return request;
610 }
611
612 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
613                                             const struct req_format *format)
614 {
615         return ptlrpc_request_alloc_internal(imp, NULL, format);
616 }
617
618 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
619                                             struct ptlrpc_request_pool * pool,
620                                             const struct req_format *format)
621 {
622         return ptlrpc_request_alloc_internal(imp, pool, format);
623 }
624
625 void ptlrpc_request_free(struct ptlrpc_request *request)
626 {
627         if (request->rq_pool)
628                 __ptlrpc_free_req_to_pool(request);
629         else
630                 OBD_FREE_PTR(request);
631 }
632
633 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
634                                                 const struct req_format *format,
635                                                 __u32 version, int opcode)
636 {
637         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
638         int                    rc;
639
640         if (req) {
641                 rc = ptlrpc_request_pack(req, version, opcode);
642                 if (rc) {
643                         ptlrpc_request_free(req);
644                         req = NULL;
645                 }
646         }
647         return req;
648 }
649
650 struct ptlrpc_request *
651 ptlrpc_prep_req_pool(struct obd_import *imp,
652                      __u32 version, int opcode,
653                      int count, __u32 *lengths, char **bufs,
654                      struct ptlrpc_request_pool *pool)
655 {
656         struct ptlrpc_request *request;
657         int                    rc;
658
659         request = __ptlrpc_request_alloc(imp, pool);
660         if (!request)
661                 return NULL;
662
663         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
664                                         lengths, bufs, NULL);
665         if (rc) {
666                 ptlrpc_request_free(request);
667                 request = NULL;
668         }
669         return request;
670 }
671
672 struct ptlrpc_request *
673 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
674                 __u32 *lengths, char **bufs)
675 {
676         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
677                                     NULL);
678 }
679
680 struct ptlrpc_request *ptlrpc_prep_fakereq(struct obd_import *imp,
681                                            unsigned int timeout,
682                                            ptlrpc_interpterer_t interpreter)
683 {
684         struct ptlrpc_request *request = NULL;
685         ENTRY;
686
687         OBD_ALLOC(request, sizeof(*request));
688         if (!request) {
689                 CERROR("request allocation out of memory\n");
690                 RETURN(NULL);
691         }
692
693         request->rq_send_state = LUSTRE_IMP_FULL;
694         request->rq_type = PTL_RPC_MSG_REQUEST;
695         request->rq_import = class_import_get(imp);
696         request->rq_export = NULL;
697         request->rq_import_generation = imp->imp_generation;
698
699         request->rq_timeout = timeout;
700         request->rq_sent = cfs_time_current_sec();
701         request->rq_deadline = request->rq_sent + timeout;
702         request->rq_reply_deadline = request->rq_deadline;
703         request->rq_interpret_reply = interpreter;
704         request->rq_phase = RQ_PHASE_RPC;
705         request->rq_next_phase = RQ_PHASE_INTERPRET;
706         /* don't want reply */
707         request->rq_receiving_reply = 0;
708         request->rq_must_unlink = 0;
709         request->rq_no_delay = request->rq_no_resend = 1;
710         request->rq_fake = 1;
711
712         cfs_spin_lock_init(&request->rq_lock);
713         CFS_INIT_LIST_HEAD(&request->rq_list);
714         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
715         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
716         CFS_INIT_LIST_HEAD(&request->rq_history_list);
717         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
718         cfs_waitq_init(&request->rq_reply_waitq);
719         cfs_waitq_init(&request->rq_set_waitq);
720
721         request->rq_xid = ptlrpc_next_xid();
722         cfs_atomic_set(&request->rq_refcount, 1);
723
724         RETURN(request);
725 }
726
727 void ptlrpc_fakereq_finished(struct ptlrpc_request *req)
728 {
729         /* if we kill request before timeout - need adjust counter */
730         if (req->rq_phase == RQ_PHASE_RPC) {
731                 struct ptlrpc_request_set *set = req->rq_set;
732
733                 if (set)
734                         cfs_atomic_dec(&set->set_remaining);
735         }
736
737         ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
738         cfs_list_del_init(&req->rq_list);
739 }
740
741
742 struct ptlrpc_request_set *ptlrpc_prep_set(void)
743 {
744         struct ptlrpc_request_set *set;
745
746         ENTRY;
747         OBD_ALLOC(set, sizeof *set);
748         if (!set)
749                 RETURN(NULL);
750         CFS_INIT_LIST_HEAD(&set->set_requests);
751         cfs_waitq_init(&set->set_waitq);
752         cfs_atomic_set(&set->set_remaining, 0);
753         cfs_spin_lock_init(&set->set_new_req_lock);
754         CFS_INIT_LIST_HEAD(&set->set_new_requests);
755         CFS_INIT_LIST_HEAD(&set->set_cblist);
756
757         RETURN(set);
758 }
759
760 /* Finish with this set; opposite of prep_set. */
761 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
762 {
763         cfs_list_t       *tmp;
764         cfs_list_t       *next;
765         int               expected_phase;
766         int               n = 0;
767         ENTRY;
768
769         /* Requests on the set should either all be completed, or all be new */
770         expected_phase = (cfs_atomic_read(&set->set_remaining) == 0) ?
771                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
772         cfs_list_for_each (tmp, &set->set_requests) {
773                 struct ptlrpc_request *req =
774                         cfs_list_entry(tmp, struct ptlrpc_request,
775                                        rq_set_chain);
776
777                 LASSERT(req->rq_phase == expected_phase);
778                 n++;
779         }
780
781         LASSERTF(cfs_atomic_read(&set->set_remaining) == 0 || 
782                  cfs_atomic_read(&set->set_remaining) == n, "%d / %d\n",
783                  cfs_atomic_read(&set->set_remaining), n);
784
785         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
786                 struct ptlrpc_request *req =
787                         cfs_list_entry(tmp, struct ptlrpc_request,
788                                        rq_set_chain);
789                 cfs_list_del_init(&req->rq_set_chain);
790
791                 LASSERT(req->rq_phase == expected_phase);
792
793                 if (req->rq_phase == RQ_PHASE_NEW) {
794                         ptlrpc_req_interpret(NULL, req, -EBADR);
795                         cfs_atomic_dec(&set->set_remaining);
796                 }
797
798                 req->rq_set = NULL;
799                 ptlrpc_req_finished (req);
800         }
801
802         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
803
804         OBD_FREE(set, sizeof(*set));
805         EXIT;
806 }
807
808 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
809                       set_interpreter_func fn, void *data)
810 {
811         struct ptlrpc_set_cbdata *cbdata;
812
813         OBD_ALLOC_PTR(cbdata);
814         if (cbdata == NULL)
815                 RETURN(-ENOMEM);
816
817         cbdata->psc_interpret = fn;
818         cbdata->psc_data = data;
819         cfs_list_add_tail(&cbdata->psc_item, &set->set_cblist);
820
821         RETURN(0);
822 }
823
824 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
825                         struct ptlrpc_request *req)
826 {
827         /* The set takes over the caller's request reference */
828         cfs_list_add_tail(&req->rq_set_chain, &set->set_requests);
829         req->rq_set = set;
830         cfs_atomic_inc(&set->set_remaining);
831         req->rq_queued_time = cfs_time_current(); /* Where is the best place to set this? */
832 }
833
834 /**
835  * Lock so many callers can add things, the context that owns the set
836  * is supposed to notice these and move them into the set proper.
837  */
838 int ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
839                            struct ptlrpc_request *req)
840 {
841         struct ptlrpc_request_set *set = pc->pc_set;
842
843         /*
844          * Let caller know that we stopped and will not handle this request.
845          * It needs to take care itself of request.
846          */
847         if (cfs_test_bit(LIOD_STOP, &pc->pc_flags))
848                 return -EALREADY;
849
850         cfs_spin_lock(&set->set_new_req_lock);
851         /*
852          * The set takes over the caller's request reference.
853          */
854         cfs_list_add_tail(&req->rq_set_chain, &set->set_new_requests);
855         req->rq_set = set;
856         cfs_spin_unlock(&set->set_new_req_lock);
857
858         cfs_waitq_signal(&set->set_waitq);
859         return 0;
860 }
861
862 /*
863  * Based on the current state of the import, determine if the request
864  * can be sent, is an error, or should be delayed.
865  *
866  * Returns true if this request should be delayed. If false, and
867  * *status is set, then the request can not be sent and *status is the
868  * error code.  If false and status is 0, then request can be sent.
869  *
870  * The imp->imp_lock must be held.
871  */
872 static int ptlrpc_import_delay_req(struct obd_import *imp,
873                                    struct ptlrpc_request *req, int *status)
874 {
875         int delay = 0;
876         ENTRY;
877
878         LASSERT (status != NULL);
879         *status = 0;
880
881         if (req->rq_ctx_init || req->rq_ctx_fini) {
882                 /* always allow ctx init/fini rpc go through */
883         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
884                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
885                 *status = -EIO;
886                 LBUG();
887         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
888                 DEBUG_REQ(D_ERROR, req, "IMP_CLOSED ");
889                 *status = -EIO;
890         } else if (imp->imp_obd->obd_no_recov) {
891                 *status = -ESHUTDOWN;
892         } else if (ptlrpc_send_limit_expired(req)) {
893                 /* probably doesn't need to be a D_ERROR after initial testing */
894                 DEBUG_REQ(D_ERROR, req, "send limit expired ");
895                 *status = -EIO;
896         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
897                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
898                 /* allow CONNECT even if import is invalid */ ;
899                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
900                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
901                         *status = -EIO;
902                 }
903         } else if (imp->imp_invalid) {
904                 if (!imp->imp_deactive)
905                           DEBUG_REQ(D_ERROR, req, "IMP_INVALID");
906                 *status = -ESHUTDOWN; /* bz 12940 */
907         } else if (req->rq_import_generation != imp->imp_generation) {
908                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
909                 *status = -EIO;
910         } else if (req->rq_send_state != imp->imp_state) {
911                 /* invalidate in progress - any requests should be drop */
912                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
913                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
914                         *status = -EIO;
915                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
916                         *status = -EWOULDBLOCK;
917                 } else {
918                         delay = 1;
919                 }
920         }
921
922         RETURN(delay);
923 }
924
925 /* Conditionally suppress specific console messages */
926 static int ptlrpc_console_allow(struct ptlrpc_request *req)
927 {
928         __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
929         int err;
930
931         /* Suppress particular reconnect errors which are to be expected.  No
932          * errors are suppressed for the initial connection on an import */
933         if ((lustre_handle_is_used(&req->rq_import->imp_remote_handle)) &&
934             (opc == OST_CONNECT || opc == MDS_CONNECT || opc == MGS_CONNECT)) {
935
936                 /* Suppress timed out reconnect requests */
937                 if (req->rq_timedout)
938                         return 0;
939
940                 /* Suppress unavailable/again reconnect requests */
941                 err = lustre_msg_get_status(req->rq_repmsg);
942                 if (err == -ENODEV || err == -EAGAIN)
943                         return 0;
944         }
945
946         return 1;
947 }
948
949 static int ptlrpc_check_status(struct ptlrpc_request *req)
950 {
951         int err;
952         ENTRY;
953
954         err = lustre_msg_get_status(req->rq_repmsg);
955         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
956                 struct obd_import *imp = req->rq_import;
957                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
958                 LCONSOLE_ERROR_MSG(0x011,"an error occurred while communicating"
959                                 " with %s. The %s operation failed with %d\n",
960                                 libcfs_nid2str(imp->imp_connection->c_peer.nid),
961                                 ll_opcode2str(opc), err);
962                 RETURN(err < 0 ? err : -EINVAL);
963         }
964
965         if (err < 0) {
966                 DEBUG_REQ(D_INFO, req, "status is %d", err);
967         } else if (err > 0) {
968                 /* XXX: translate this error from net to host */
969                 DEBUG_REQ(D_INFO, req, "status is %d", err);
970         }
971
972         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
973                 struct obd_import *imp = req->rq_import;
974                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
975
976                 if (ptlrpc_console_allow(req))
977                         LCONSOLE_ERROR_MSG(0x011,"an error occurred while "
978                                            "communicating with %s. The %s "
979                                            "operation failed with %d\n",
980                                            libcfs_nid2str(
981                                            imp->imp_connection->c_peer.nid),
982                                            ll_opcode2str(opc), err);
983
984                 RETURN(err < 0 ? err : -EINVAL);
985         }
986
987         RETURN(err);
988 }
989
990 /**
991  * save pre-versions for replay
992  */
993 static void ptlrpc_save_versions(struct ptlrpc_request *req)
994 {
995         struct lustre_msg *repmsg = req->rq_repmsg;
996         struct lustre_msg *reqmsg = req->rq_reqmsg;
997         __u64 *versions = lustre_msg_get_versions(repmsg);
998         ENTRY;
999
1000         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1001                 return;
1002
1003         LASSERT(versions);
1004         lustre_msg_set_versions(reqmsg, versions);
1005         CDEBUG(D_INFO, "Client save versions ["LPX64"/"LPX64"]\n",
1006                versions[0], versions[1]);
1007
1008         EXIT;
1009 }
1010
1011 /**
1012  * Callback function called when client receives RPC reply for \a req.
1013  */
1014 static int after_reply(struct ptlrpc_request *req)
1015 {
1016         struct obd_import *imp = req->rq_import;
1017         struct obd_device *obd = req->rq_import->imp_obd;
1018         int rc;
1019         struct timeval work_start;
1020         long timediff;
1021         ENTRY;
1022
1023         LASSERT(obd != NULL);
1024         /* repbuf must be unlinked */
1025         LASSERT(!req->rq_receiving_reply && !req->rq_must_unlink);
1026
1027         if (req->rq_reply_truncate) {
1028                 if (ptlrpc_no_resend(req)) {
1029                         DEBUG_REQ(D_ERROR, req, "reply buffer overflow,"
1030                                   " expected: %d, actual size: %d",
1031                                   req->rq_nob_received, req->rq_repbuf_len);
1032                         RETURN(-EOVERFLOW);
1033                 }
1034
1035                 sptlrpc_cli_free_repbuf(req);
1036                 /* Pass the required reply buffer size (include
1037                  * space for early reply).
1038                  * NB: no need to roundup because alloc_repbuf
1039                  * will roundup it */
1040                 req->rq_replen       = req->rq_nob_received;
1041                 req->rq_nob_received = 0;
1042                 req->rq_resend       = 1;
1043                 RETURN(0);
1044         }
1045
1046         /*
1047          * NB Until this point, the whole of the incoming message,
1048          * including buflens, status etc is in the sender's byte order.
1049          */
1050         rc = sptlrpc_cli_unwrap_reply(req);
1051         if (rc) {
1052                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1053                 RETURN(rc);
1054         }
1055
1056         /*
1057          * Security layer unwrap might ask resend this request.
1058          */
1059         if (req->rq_resend)
1060                 RETURN(0);
1061
1062         rc = unpack_reply(req);
1063         if (rc)
1064                 RETURN(rc);
1065
1066         cfs_gettimeofday(&work_start);
1067         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
1068         if (obd->obd_svc_stats != NULL) {
1069                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1070                                     timediff);
1071                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1072         }
1073
1074         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1075             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1076                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1077                           lustre_msg_get_type(req->rq_repmsg));
1078                 RETURN(-EPROTO);
1079         }
1080
1081         if (lustre_msg_get_opc(req->rq_reqmsg) != OBD_PING)
1082                 OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, obd_fail_val);
1083         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1084         ptlrpc_at_adj_net_latency(req,
1085                                   lustre_msg_get_service_time(req->rq_repmsg));
1086
1087         rc = ptlrpc_check_status(req);
1088         imp->imp_connect_error = rc;
1089
1090         if (rc) {
1091                 /*
1092                  * Either we've been evicted, or the server has failed for
1093                  * some reason. Try to reconnect, and if that fails, punt to
1094                  * the upcall.
1095                  */
1096                 if (ll_rpc_recoverable_error(rc)) {
1097                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1098                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1099                                 RETURN(rc);
1100                         }
1101                         ptlrpc_request_handle_notconn(req);
1102                         RETURN(rc);
1103                 }
1104         } else {
1105                 /*
1106                  * Let's look if server sent slv. Do it only for RPC with
1107                  * rc == 0.
1108                  */
1109                 ldlm_cli_update_pool(req);
1110         }
1111
1112         /*
1113          * Store transno in reqmsg for replay.
1114          */
1115         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1116                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1117                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1118         }
1119
1120         if (imp->imp_replayable) {
1121                 cfs_spin_lock(&imp->imp_lock);
1122                 /*
1123                  * No point in adding already-committed requests to the replay
1124                  * list, we will just remove them immediately. b=9829
1125                  */
1126                 if (req->rq_transno != 0 &&
1127                     (req->rq_transno >
1128                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1129                      req->rq_replay)) {
1130                         /** version recovery */
1131                         ptlrpc_save_versions(req);
1132                         ptlrpc_retain_replayable_request(req, imp);
1133                 } else if (req->rq_commit_cb != NULL) {
1134                         cfs_spin_unlock(&imp->imp_lock);
1135                         req->rq_commit_cb(req);
1136                         cfs_spin_lock(&imp->imp_lock);
1137                 }
1138
1139                 /*
1140                  * Replay-enabled imports return commit-status information.
1141                  */
1142                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1143                         imp->imp_peer_committed_transno =
1144                                 lustre_msg_get_last_committed(req->rq_repmsg);
1145                 }
1146                 ptlrpc_free_committed(imp);
1147                 cfs_spin_unlock(&imp->imp_lock);
1148         }
1149
1150         RETURN(rc);
1151 }
1152
1153 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1154 {
1155         struct obd_import     *imp;
1156         int rc;
1157         ENTRY;
1158
1159         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1160         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()))
1161                 RETURN (0);
1162
1163         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1164
1165         imp = req->rq_import;
1166         cfs_spin_lock(&imp->imp_lock);
1167
1168         req->rq_import_generation = imp->imp_generation;
1169
1170         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1171                 cfs_spin_lock(&req->rq_lock);
1172                 req->rq_waiting = 1;
1173                 cfs_spin_unlock(&req->rq_lock);
1174
1175                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1176                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1177                           ptlrpc_import_state_name(req->rq_send_state),
1178                           ptlrpc_import_state_name(imp->imp_state));
1179                 LASSERT(cfs_list_empty(&req->rq_list));
1180                 cfs_list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1181                 cfs_atomic_inc(&req->rq_import->imp_inflight);
1182                 cfs_spin_unlock(&imp->imp_lock);
1183                 RETURN(0);
1184         }
1185
1186         if (rc != 0) {
1187                 cfs_spin_unlock(&imp->imp_lock);
1188                 req->rq_status = rc;
1189                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1190                 RETURN(rc);
1191         }
1192
1193         LASSERT(cfs_list_empty(&req->rq_list));
1194         cfs_list_add_tail(&req->rq_list, &imp->imp_sending_list);
1195         cfs_atomic_inc(&req->rq_import->imp_inflight);
1196         cfs_spin_unlock(&imp->imp_lock);
1197
1198         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1199
1200         rc = sptlrpc_req_refresh_ctx(req, -1);
1201         if (rc) {
1202                 if (req->rq_err) {
1203                         req->rq_status = rc;
1204                         RETURN(1);
1205                 } else {
1206                         req->rq_wait_ctx = 1;
1207                         RETURN(0);
1208                 }
1209         }
1210
1211         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1212                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1213                imp->imp_obd->obd_uuid.uuid,
1214                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1215                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1216                lustre_msg_get_opc(req->rq_reqmsg));
1217
1218         rc = ptl_send_rpc(req, 0);
1219         if (rc) {
1220                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1221                 req->rq_net_err = 1;
1222                 RETURN(rc);
1223         }
1224         RETURN(0);
1225 }
1226
1227 /* this sends any unsent RPCs in @set and returns TRUE if all are sent */
1228 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1229 {
1230         cfs_list_t *tmp;
1231         int force_timer_recalc = 0;
1232         ENTRY;
1233
1234         if (cfs_atomic_read(&set->set_remaining) == 0)
1235                 RETURN(1);
1236
1237         cfs_list_for_each(tmp, &set->set_requests) {
1238                 struct ptlrpc_request *req =
1239                         cfs_list_entry(tmp, struct ptlrpc_request,
1240                                        rq_set_chain);
1241                 struct obd_import *imp = req->rq_import;
1242                 int unregistered = 0;
1243                 int rc = 0;
1244
1245                 if (req->rq_phase == RQ_PHASE_NEW &&
1246                     ptlrpc_send_new_req(req)) {
1247                         force_timer_recalc = 1;
1248                 }
1249
1250                 /* delayed send - skip */
1251                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1252                         continue;
1253
1254                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1255                       req->rq_phase == RQ_PHASE_BULK ||
1256                       req->rq_phase == RQ_PHASE_INTERPRET ||
1257                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1258                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1259                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1260                         LBUG();
1261                 }
1262
1263                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1264                         LASSERT(req->rq_next_phase != req->rq_phase);
1265                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1266
1267                         /*
1268                          * Skip processing until reply is unlinked. We
1269                          * can't return to pool before that and we can't
1270                          * call interpret before that. We need to make
1271                          * sure that all rdma transfers finished and will
1272                          * not corrupt any data.
1273                          */
1274                         if (ptlrpc_client_recv_or_unlink(req) ||
1275                             ptlrpc_client_bulk_active(req))
1276                                 continue;
1277
1278                         /*
1279                          * Turn fail_loc off to prevent it from looping
1280                          * forever.
1281                          */
1282                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1283                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1284                                                      OBD_FAIL_ONCE);
1285                         }
1286                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1287                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1288                                                      OBD_FAIL_ONCE);
1289                         }
1290
1291                         /*
1292                          * Move to next phase if reply was successfully
1293                          * unlinked.
1294                          */
1295                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1296                 }
1297
1298                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1299                         continue;
1300
1301                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1302                         GOTO(interpret, req->rq_status);
1303
1304                 /*
1305                  * Note that this also will start async reply unlink.
1306                  */
1307                 if (req->rq_net_err && !req->rq_timedout) {
1308                         ptlrpc_expire_one_request(req, 1);
1309
1310                         /*
1311                          * Check if we still need to wait for unlink.
1312                          */
1313                         if (ptlrpc_client_recv_or_unlink(req) ||
1314                             ptlrpc_client_bulk_active(req))
1315                                 continue;
1316                 }
1317
1318                 if (req->rq_err) {
1319                         cfs_spin_lock(&req->rq_lock);
1320                         req->rq_replied = 0;
1321                         cfs_spin_unlock(&req->rq_lock);
1322                         if (req->rq_status == 0)
1323                                 req->rq_status = -EIO;
1324                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1325                         GOTO(interpret, req->rq_status);
1326                 }
1327
1328                 /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
1329                  * so it sets rq_intr regardless of individual rpc
1330                  * timeouts. The synchronous IO waiting path sets 
1331                  * rq_intr irrespective of whether ptlrpcd
1332                  * has seen a timeout.  Our policy is to only interpret
1333                  * interrupted rpcs after they have timed out, so we
1334                  * need to enforce that here.
1335                  */
1336
1337                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1338                                      req->rq_wait_ctx)) {
1339                         req->rq_status = -EINTR;
1340                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1341                         GOTO(interpret, req->rq_status);
1342                 }
1343
1344                 if (req->rq_phase == RQ_PHASE_RPC) {
1345                         if (req->rq_timedout || req->rq_resend ||
1346                             req->rq_waiting || req->rq_wait_ctx) {
1347                                 int status;
1348
1349                                 if (!ptlrpc_unregister_reply(req, 1))
1350                                         continue;
1351
1352                                 cfs_spin_lock(&imp->imp_lock);
1353                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1354                                         /* put on delay list - only if we wait
1355                                          * recovery finished - before send */
1356                                         cfs_list_del_init(&req->rq_list);
1357                                         cfs_list_add_tail(&req->rq_list,
1358                                                           &imp-> \
1359                                                           imp_delayed_list);
1360                                         cfs_spin_unlock(&imp->imp_lock);
1361                                         continue;
1362                                 }
1363
1364                                 if (status != 0)  {
1365                                         req->rq_status = status;
1366                                         ptlrpc_rqphase_move(req,
1367                                                 RQ_PHASE_INTERPRET);
1368                                         cfs_spin_unlock(&imp->imp_lock);
1369                                         GOTO(interpret, req->rq_status);
1370                                 }
1371                                 if (ptlrpc_no_resend(req) && !req->rq_wait_ctx) {
1372                                         req->rq_status = -ENOTCONN;
1373                                         ptlrpc_rqphase_move(req,
1374                                                 RQ_PHASE_INTERPRET);
1375                                         cfs_spin_unlock(&imp->imp_lock);
1376                                         GOTO(interpret, req->rq_status);
1377                                 }
1378
1379                                 cfs_list_del_init(&req->rq_list);
1380                                 cfs_list_add_tail(&req->rq_list,
1381                                               &imp->imp_sending_list);
1382
1383                                 cfs_spin_unlock(&imp->imp_lock);
1384
1385                                 cfs_spin_lock(&req->rq_lock);
1386                                 req->rq_waiting = 0;
1387                                 cfs_spin_unlock(&req->rq_lock);
1388
1389                                 if (req->rq_timedout || req->rq_resend) {
1390                                         /* This is re-sending anyways,
1391                                          * let's mark req as resend. */
1392                                         cfs_spin_lock(&req->rq_lock);
1393                                         req->rq_resend = 1;
1394                                         cfs_spin_unlock(&req->rq_lock);
1395                                         if (req->rq_bulk) {
1396                                                 __u64 old_xid;
1397
1398                                                 if (!ptlrpc_unregister_bulk(req, 1))
1399                                                         continue;
1400
1401                                                 /* ensure previous bulk fails */
1402                                                 old_xid = req->rq_xid;
1403                                                 req->rq_xid = ptlrpc_next_xid();
1404                                                 CDEBUG(D_HA, "resend bulk "
1405                                                        "old x"LPU64
1406                                                        " new x"LPU64"\n",
1407                                                        old_xid, req->rq_xid);
1408                                         }
1409                                 }
1410                                 /*
1411                                  * rq_wait_ctx is only touched by ptlrpcd,
1412                                  * so no lock is needed here.
1413                                  */
1414                                 status = sptlrpc_req_refresh_ctx(req, -1);
1415                                 if (status) {
1416                                         if (req->rq_err) {
1417                                                 req->rq_status = status;
1418                                                 cfs_spin_lock(&req->rq_lock);
1419                                                 req->rq_wait_ctx = 0;
1420                                                 cfs_spin_unlock(&req->rq_lock);
1421                                                 force_timer_recalc = 1;
1422                                         } else {
1423                                                 cfs_spin_lock(&req->rq_lock);
1424                                                 req->rq_wait_ctx = 1;
1425                                                 cfs_spin_unlock(&req->rq_lock);
1426                                         }
1427
1428                                         continue;
1429                                 } else {
1430                                         cfs_spin_lock(&req->rq_lock);
1431                                         req->rq_wait_ctx = 0;
1432                                         cfs_spin_unlock(&req->rq_lock);
1433                                 }
1434
1435                                 rc = ptl_send_rpc(req, 0);
1436                                 if (rc) {
1437                                         DEBUG_REQ(D_HA, req, "send failed (%d)",
1438                                                   rc);
1439                                         force_timer_recalc = 1;
1440                                         cfs_spin_lock(&req->rq_lock);
1441                                         req->rq_net_err = 1;
1442                                         cfs_spin_unlock(&req->rq_lock);
1443                                 }
1444                                 /* need to reset the timeout */
1445                                 force_timer_recalc = 1;
1446                         }
1447
1448                         cfs_spin_lock(&req->rq_lock);
1449
1450                         if (ptlrpc_client_early(req)) {
1451                                 ptlrpc_at_recv_early_reply(req);
1452                                 cfs_spin_unlock(&req->rq_lock);
1453                                 continue;
1454                         }
1455
1456                         /* Still waiting for a reply? */
1457                         if (ptlrpc_client_recv(req)) {
1458                                 cfs_spin_unlock(&req->rq_lock);
1459                                 continue;
1460                         }
1461
1462                         /* Did we actually receive a reply? */
1463                         if (!ptlrpc_client_replied(req)) {
1464                                 cfs_spin_unlock(&req->rq_lock);
1465                                 continue;
1466                         }
1467
1468                         cfs_spin_unlock(&req->rq_lock);
1469
1470                         /* unlink from net because we are going to
1471                          * swab in-place of reply buffer */
1472                         unregistered = ptlrpc_unregister_reply(req, 1);
1473                         if (!unregistered)
1474                                 continue;
1475
1476                         req->rq_status = after_reply(req);
1477                         if (req->rq_resend)
1478                                 continue;
1479
1480                         /* If there is no bulk associated with this request,
1481                          * then we're done and should let the interpreter
1482                          * process the reply. Similarly if the RPC returned
1483                          * an error, and therefore the bulk will never arrive.
1484                          */
1485                         if (req->rq_bulk == NULL || req->rq_status != 0) {
1486                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1487                                 GOTO(interpret, req->rq_status);
1488                         }
1489
1490                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1491                 }
1492
1493                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1494                 if (ptlrpc_client_bulk_active(req))
1495                         continue;
1496
1497                 if (!req->rq_bulk->bd_success) {
1498                         /* The RPC reply arrived OK, but the bulk screwed
1499                          * up!  Dead weird since the server told us the RPC
1500                          * was good after getting the REPLY for her GET or
1501                          * the ACK for her PUT. */
1502                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1503                         LBUG();
1504                 }
1505
1506                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1507
1508         interpret:
1509                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1510
1511                 /* This moves to "unregistering" phase we need to wait for
1512                  * reply unlink. */
1513                 if (!unregistered && !ptlrpc_unregister_reply(req, 1))
1514                         continue;
1515
1516                 if (!ptlrpc_unregister_bulk(req, 1))
1517                         continue;
1518
1519                 /* When calling interpret receiving already should be
1520                  * finished. */
1521                 LASSERT(!req->rq_receiving_reply);
1522
1523                 ptlrpc_req_interpret(env, req, req->rq_status);
1524
1525                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1526
1527                 CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:"
1528                        "opc %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1529                        imp->imp_obd->obd_uuid.uuid,
1530                        req->rq_reqmsg ? lustre_msg_get_status(req->rq_reqmsg):-1,
1531                        req->rq_xid,
1532                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1533                        req->rq_reqmsg ? lustre_msg_get_opc(req->rq_reqmsg) : -1);
1534
1535                 cfs_spin_lock(&imp->imp_lock);
1536                 /* Request already may be not on sending or delaying list. This
1537                  * may happen in the case of marking it erroneous for the case
1538                  * ptlrpc_import_delay_req(req, status) find it impossible to
1539                  * allow sending this rpc and returns *status != 0. */
1540                 if (!cfs_list_empty(&req->rq_list)) {
1541                         cfs_list_del_init(&req->rq_list);
1542                         cfs_atomic_dec(&imp->imp_inflight);
1543                 }
1544                 cfs_spin_unlock(&imp->imp_lock);
1545
1546                 cfs_atomic_dec(&set->set_remaining);
1547                 cfs_waitq_broadcast(&imp->imp_recovery_waitq);
1548         }
1549
1550         /* If we hit an error, we want to recover promptly. */
1551         RETURN(cfs_atomic_read(&set->set_remaining) == 0 || force_timer_recalc);
1552 }
1553
1554 /* Return 1 if we should give up, else 0 */
1555 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1556 {
1557         struct obd_import *imp = req->rq_import;
1558         int rc = 0;
1559         ENTRY;
1560
1561         cfs_spin_lock(&req->rq_lock);
1562         req->rq_timedout = 1;
1563         cfs_spin_unlock(&req->rq_lock);
1564
1565         DEBUG_REQ(req->rq_fake ? D_INFO : D_WARNING, req, 
1566                   "Request x"LPU64" sent from %s to NID %s "CFS_DURATION_T"s "
1567                   "ago has %s ("CFS_DURATION_T"s prior to deadline).\n",
1568                   req->rq_xid, imp ? imp->imp_obd->obd_name : "<?>",
1569                   imp ? libcfs_nid2str(imp->imp_connection->c_peer.nid) : "<?>",
1570                   cfs_time_sub(cfs_time_current_sec(), req->rq_sent),
1571                   req->rq_net_err ? "failed due to network error" : "timed out",
1572                   cfs_time_sub(req->rq_deadline, req->rq_sent));
1573
1574         if (imp != NULL && obd_debug_peer_on_timeout)
1575                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1576
1577         ptlrpc_unregister_reply(req, async_unlink);
1578         ptlrpc_unregister_bulk(req, async_unlink);
1579
1580         if (obd_dump_on_timeout)
1581                 libcfs_debug_dumplog();
1582
1583         if (imp == NULL) {
1584                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1585                 RETURN(1);
1586         }
1587
1588         if (req->rq_fake)
1589                RETURN(1);
1590
1591         cfs_atomic_inc(&imp->imp_timeouts);
1592
1593         /* The DLM server doesn't want recovery run on its imports. */
1594         if (imp->imp_dlm_fake)
1595                 RETURN(1);
1596
1597         /* If this request is for recovery or other primordial tasks,
1598          * then error it out here. */
1599         if (req->rq_ctx_init || req->rq_ctx_fini ||
1600             req->rq_send_state != LUSTRE_IMP_FULL ||
1601             imp->imp_obd->obd_no_recov) {
1602                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1603                           ptlrpc_import_state_name(req->rq_send_state),
1604                           ptlrpc_import_state_name(imp->imp_state));
1605                 cfs_spin_lock(&req->rq_lock);
1606                 req->rq_status = -ETIMEDOUT;
1607                 req->rq_err = 1;
1608                 cfs_spin_unlock(&req->rq_lock);
1609                 RETURN(1);
1610         }
1611
1612         /* if a request can't be resent we can't wait for an answer after
1613            the timeout */
1614         if (ptlrpc_no_resend(req)) {
1615                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1616                 rc = 1;
1617         }
1618
1619         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1620
1621         RETURN(rc);
1622 }
1623
1624 int ptlrpc_expired_set(void *data)
1625 {
1626         struct ptlrpc_request_set *set = data;
1627         cfs_list_t                *tmp;
1628         time_t                     now = cfs_time_current_sec();
1629         ENTRY;
1630
1631         LASSERT(set != NULL);
1632
1633         /*
1634          * A timeout expired. See which reqs it applies to...
1635          */
1636         cfs_list_for_each (tmp, &set->set_requests) {
1637                 struct ptlrpc_request *req =
1638                         cfs_list_entry(tmp, struct ptlrpc_request,
1639                                        rq_set_chain);
1640
1641                 /* don't expire request waiting for context */
1642                 if (req->rq_wait_ctx)
1643                         continue;
1644
1645                 /* Request in-flight? */
1646                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1647                        !req->rq_waiting && !req->rq_resend) ||
1648                       (req->rq_phase == RQ_PHASE_BULK)))
1649                         continue;
1650
1651                 if (req->rq_timedout ||     /* already dealt with */
1652                     req->rq_deadline > now) /* not expired */
1653                         continue;
1654
1655                 /* Deal with this guy. Do it asynchronously to not block
1656                  * ptlrpcd thread. */
1657                 ptlrpc_expire_one_request(req, 1);
1658         }
1659
1660         /*
1661          * When waiting for a whole set, we always break out of the
1662          * sleep so we can recalculate the timeout, or enable interrupts
1663          * if everyone's timed out.
1664          */
1665         RETURN(1);
1666 }
1667
1668 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1669 {
1670         cfs_spin_lock(&req->rq_lock);
1671         req->rq_intr = 1;
1672         cfs_spin_unlock(&req->rq_lock);
1673 }
1674
1675 void ptlrpc_interrupted_set(void *data)
1676 {
1677         struct ptlrpc_request_set *set = data;
1678         cfs_list_t *tmp;
1679
1680         LASSERT(set != NULL);
1681         CERROR("INTERRUPTED SET %p\n", set);
1682
1683         cfs_list_for_each(tmp, &set->set_requests) {
1684                 struct ptlrpc_request *req =
1685                         cfs_list_entry(tmp, struct ptlrpc_request,
1686                                        rq_set_chain);
1687
1688                 if (req->rq_phase != RQ_PHASE_RPC &&
1689                     req->rq_phase != RQ_PHASE_UNREGISTERING)
1690                         continue;
1691
1692                 ptlrpc_mark_interrupted(req);
1693         }
1694 }
1695
1696 /**
1697  * Get the smallest timeout in the set; this does NOT set a timeout.
1698  */
1699 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
1700 {
1701         cfs_list_t            *tmp;
1702         time_t                 now = cfs_time_current_sec();
1703         int                    timeout = 0;
1704         struct ptlrpc_request *req;
1705         int                    deadline;
1706         ENTRY;
1707
1708         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1709
1710         cfs_list_for_each(tmp, &set->set_requests) {
1711                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1712
1713                 /*
1714                  * Request in-flight?
1715                  */
1716                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
1717                       (req->rq_phase == RQ_PHASE_BULK) ||
1718                       (req->rq_phase == RQ_PHASE_NEW)))
1719                         continue;
1720
1721                 /*
1722                  * Already timed out.
1723                  */
1724                 if (req->rq_timedout)
1725                         continue;
1726
1727                 /*
1728                  * Waiting for ctx.
1729                  */
1730                 if (req->rq_wait_ctx)
1731                         continue;
1732
1733                 if (req->rq_phase == RQ_PHASE_NEW)
1734                         deadline = req->rq_sent;
1735                 else
1736                         deadline = req->rq_sent + req->rq_timeout;
1737
1738                 if (deadline <= now)    /* actually expired already */
1739                         timeout = 1;    /* ASAP */
1740                 else if (timeout == 0 || timeout > deadline - now)
1741                         timeout = deadline - now;
1742         }
1743         RETURN(timeout);
1744 }
1745
1746 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
1747 {
1748         cfs_list_t            *tmp;
1749         struct ptlrpc_request *req;
1750         struct l_wait_info     lwi;
1751         int                    rc, timeout;
1752         ENTRY;
1753
1754         if (cfs_list_empty(&set->set_requests))
1755                 RETURN(0);
1756
1757         cfs_list_for_each(tmp, &set->set_requests) {
1758                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1759                 if (req->rq_phase == RQ_PHASE_NEW)
1760                         (void)ptlrpc_send_new_req(req);
1761         }
1762
1763         do {
1764                 timeout = ptlrpc_set_next_timeout(set);
1765
1766                 /* wait until all complete, interrupted, or an in-flight
1767                  * req times out */
1768                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
1769                        set, timeout);
1770
1771                 if (timeout == 0 && !cfs_signal_pending())
1772                         /*
1773                          * No requests are in-flight (ether timed out
1774                          * or delayed), so we can allow interrupts.
1775                          * We still want to block for a limited time,
1776                          * so we allow interrupts during the timeout.
1777                          */
1778                         lwi = LWI_TIMEOUT_INTR_ALL(cfs_time_seconds(1), 
1779                                                    ptlrpc_expired_set,
1780                                                    ptlrpc_interrupted_set, set);
1781                 else
1782                         /*
1783                          * At least one request is in flight, so no
1784                          * interrupts are allowed. Wait until all
1785                          * complete, or an in-flight req times out. 
1786                          */
1787                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
1788                                           ptlrpc_expired_set, set);
1789
1790                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
1791
1792                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
1793
1794                 /* -EINTR => all requests have been flagged rq_intr so next
1795                  * check completes.
1796                  * -ETIMEDOUT => someone timed out.  When all reqs have
1797                  * timed out, signals are enabled allowing completion with
1798                  * EINTR.
1799                  * I don't really care if we go once more round the loop in
1800                  * the error cases -eeb. */
1801                 if (rc == 0 && cfs_atomic_read(&set->set_remaining) == 0) {
1802                         cfs_list_for_each(tmp, &set->set_requests) {
1803                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
1804                                                      rq_set_chain);
1805                                 cfs_spin_lock(&req->rq_lock);
1806                                 req->rq_invalid_rqset = 1;
1807                                 cfs_spin_unlock(&req->rq_lock);
1808                         }
1809                 }
1810         } while (rc != 0 || cfs_atomic_read(&set->set_remaining) != 0);
1811
1812         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
1813
1814         rc = 0;
1815         cfs_list_for_each(tmp, &set->set_requests) {
1816                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1817
1818                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
1819                 if (req->rq_status != 0)
1820                         rc = req->rq_status;
1821         }
1822
1823         if (set->set_interpret != NULL) {
1824                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
1825                         set->set_interpret;
1826                 rc = interpreter (set, set->set_arg, rc);
1827         } else {
1828                 struct ptlrpc_set_cbdata *cbdata, *n;
1829                 int err;
1830
1831                 cfs_list_for_each_entry_safe(cbdata, n,
1832                                          &set->set_cblist, psc_item) {
1833                         cfs_list_del_init(&cbdata->psc_item);
1834                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
1835                         if (err && !rc)
1836                                 rc = err;
1837                         OBD_FREE_PTR(cbdata);
1838                 }
1839         }
1840
1841         RETURN(rc);
1842 }
1843
1844 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
1845 {
1846         ENTRY;
1847         if (request == NULL) {
1848                 EXIT;
1849                 return;
1850         }
1851
1852         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
1853         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
1854         LASSERTF(cfs_list_empty(&request->rq_list), "req %p\n", request);
1855         LASSERTF(cfs_list_empty(&request->rq_set_chain), "req %p\n", request);
1856         LASSERTF(cfs_list_empty(&request->rq_exp_list), "req %p\n", request);
1857         LASSERTF(!request->rq_replay, "req %p\n", request);
1858         LASSERT(request->rq_cli_ctx || request->rq_fake);
1859
1860         req_capsule_fini(&request->rq_pill);
1861
1862         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
1863          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
1864         if (request->rq_import != NULL) {
1865                 if (!locked)
1866                         cfs_spin_lock(&request->rq_import->imp_lock);
1867                 cfs_list_del_init(&request->rq_replay_list);
1868                 if (!locked)
1869                         cfs_spin_unlock(&request->rq_import->imp_lock);
1870         }
1871         LASSERTF(cfs_list_empty(&request->rq_replay_list), "req %p\n", request);
1872
1873         if (cfs_atomic_read(&request->rq_refcount) != 0) {
1874                 DEBUG_REQ(D_ERROR, request,
1875                           "freeing request with nonzero refcount");
1876                 LBUG();
1877         }
1878
1879         if (request->rq_repbuf != NULL)
1880                 sptlrpc_cli_free_repbuf(request);
1881         if (request->rq_export != NULL) {
1882                 class_export_put(request->rq_export);
1883                 request->rq_export = NULL;
1884         }
1885         if (request->rq_import != NULL) {
1886                 class_import_put(request->rq_import);
1887                 request->rq_import = NULL;
1888         }
1889         if (request->rq_bulk != NULL)
1890                 ptlrpc_free_bulk(request->rq_bulk);
1891
1892         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
1893                 sptlrpc_cli_free_reqbuf(request);
1894
1895         if (request->rq_cli_ctx)
1896                 sptlrpc_req_put_ctx(request, !locked);
1897
1898         if (request->rq_pool)
1899                 __ptlrpc_free_req_to_pool(request);
1900         else
1901                 OBD_FREE(request, sizeof(*request));
1902         EXIT;
1903 }
1904
1905 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
1906 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
1907 {
1908         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
1909         (void)__ptlrpc_req_finished(request, 1);
1910 }
1911
1912 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
1913 {
1914         ENTRY;
1915         if (request == NULL)
1916                 RETURN(1);
1917
1918         if (request == LP_POISON ||
1919             request->rq_reqmsg == LP_POISON) {
1920                 CERROR("dereferencing freed request (bug 575)\n");
1921                 LBUG();
1922                 RETURN(1);
1923         }
1924
1925         DEBUG_REQ(D_INFO, request, "refcount now %u",
1926                   cfs_atomic_read(&request->rq_refcount) - 1);
1927
1928         if (cfs_atomic_dec_and_test(&request->rq_refcount)) {
1929                 __ptlrpc_free_req(request, locked);
1930                 RETURN(1);
1931         }
1932
1933         RETURN(0);
1934 }
1935
1936 void ptlrpc_req_finished(struct ptlrpc_request *request)
1937 {
1938         __ptlrpc_req_finished(request, 0);
1939 }
1940
1941 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
1942 {
1943         return request->rq_xid;
1944 }
1945 EXPORT_SYMBOL(ptlrpc_req_xid);
1946
1947 /* Disengage the client's reply buffer from the network
1948  * NB does _NOT_ unregister any client-side bulk.
1949  * IDEMPOTENT, but _not_ safe against concurrent callers.
1950  * The request owner (i.e. the thread doing the I/O) must call...
1951  */
1952 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
1953 {
1954         int                rc;
1955         cfs_waitq_t       *wq;
1956         struct l_wait_info lwi;
1957
1958         /*
1959          * Might sleep.
1960          */
1961         LASSERT(!cfs_in_interrupt());
1962
1963         /*
1964          * Let's setup deadline for reply unlink.
1965          */
1966         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
1967             async && request->rq_reply_deadline == 0)
1968                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
1969
1970         /*
1971          * Nothing left to do.
1972          */
1973         if (!ptlrpc_client_recv_or_unlink(request))
1974                 RETURN(1);
1975
1976         LNetMDUnlink(request->rq_reply_md_h);
1977
1978         /*
1979          * Let's check it once again.
1980          */
1981         if (!ptlrpc_client_recv_or_unlink(request))
1982                 RETURN(1);
1983
1984         /*
1985          * Move to "Unregistering" phase as reply was not unlinked yet.
1986          */
1987         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
1988
1989         /*
1990          * Do not wait for unlink to finish.
1991          */
1992         if (async)
1993                 RETURN(0);
1994
1995         /*
1996          * We have to l_wait_event() whatever the result, to give liblustre
1997          * a chance to run reply_in_callback(), and to make sure we've
1998          * unlinked before returning a req to the pool.
1999          */
2000         if (request->rq_set != NULL)
2001                 wq = &request->rq_set->set_waitq;
2002         else
2003                 wq = &request->rq_reply_waitq;
2004
2005         for (;;) {
2006                 /* Network access will complete in finite time but the HUGE
2007                  * timeout lets us CWARN for visibility of sluggish NALs */
2008                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2009                                            cfs_time_seconds(1), NULL, NULL);
2010                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
2011                                   &lwi);
2012                 if (rc == 0) {
2013                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2014                         RETURN(1);
2015                 }
2016
2017                 LASSERT(rc == -ETIMEDOUT);
2018                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2019                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
2020                           request->rq_must_unlink);
2021         }
2022         RETURN(0);
2023 }
2024
2025 /* caller must hold imp->imp_lock */
2026 void ptlrpc_free_committed(struct obd_import *imp)
2027 {
2028         cfs_list_t *tmp, *saved;
2029         struct ptlrpc_request *req;
2030         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
2031         ENTRY;
2032
2033         LASSERT(imp != NULL);
2034
2035         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2036
2037
2038         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2039             imp->imp_generation == imp->imp_last_generation_checked) {
2040                 CDEBUG(D_RPCTRACE, "%s: skip recheck: last_committed "LPU64"\n",
2041                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2042                 EXIT;
2043                 return;
2044         }
2045         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2046                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2047                imp->imp_generation);
2048         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2049         imp->imp_last_generation_checked = imp->imp_generation;
2050
2051         cfs_list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
2052                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2053                                      rq_replay_list);
2054
2055                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2056                 LASSERT(req != last_req);
2057                 last_req = req;
2058
2059                 if (req->rq_transno == 0) {
2060                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2061                         LBUG();
2062                 }
2063                 if (req->rq_import_generation < imp->imp_generation) {
2064                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2065                         GOTO(free_req, 0);
2066                 }
2067
2068                 if (req->rq_replay) {
2069                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2070                         continue;
2071                 }
2072
2073                 /* not yet committed */
2074                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2075                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2076                         break;
2077                 }
2078
2079                 DEBUG_REQ(D_RPCTRACE, req, "commit (last_committed "LPU64")",
2080                           imp->imp_peer_committed_transno);
2081 free_req:
2082                 cfs_spin_lock(&req->rq_lock);
2083                 req->rq_replay = 0;
2084                 cfs_spin_unlock(&req->rq_lock);
2085                 if (req->rq_commit_cb != NULL)
2086                         req->rq_commit_cb(req);
2087                 cfs_list_del_init(&req->rq_replay_list);
2088                 __ptlrpc_req_finished(req, 1);
2089         }
2090
2091         EXIT;
2092         return;
2093 }
2094
2095 void ptlrpc_cleanup_client(struct obd_import *imp)
2096 {
2097         ENTRY;
2098         EXIT;
2099         return;
2100 }
2101
2102 void ptlrpc_resend_req(struct ptlrpc_request *req)
2103 {
2104         DEBUG_REQ(D_HA, req, "going to resend");
2105         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2106         req->rq_status = -EAGAIN;
2107
2108         cfs_spin_lock(&req->rq_lock);
2109         req->rq_resend = 1;
2110         req->rq_net_err = 0;
2111         req->rq_timedout = 0;
2112         if (req->rq_bulk) {
2113                 __u64 old_xid = req->rq_xid;
2114
2115                 /* ensure previous bulk fails */
2116                 req->rq_xid = ptlrpc_next_xid();
2117                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2118                        old_xid, req->rq_xid);
2119         }
2120         ptlrpc_client_wake_req(req);
2121         cfs_spin_unlock(&req->rq_lock);
2122 }
2123
2124 /* XXX: this function and rq_status are currently unused */
2125 void ptlrpc_restart_req(struct ptlrpc_request *req)
2126 {
2127         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2128         req->rq_status = -ERESTARTSYS;
2129
2130         cfs_spin_lock(&req->rq_lock);
2131         req->rq_restart = 1;
2132         req->rq_timedout = 0;
2133         ptlrpc_client_wake_req(req);
2134         cfs_spin_unlock(&req->rq_lock);
2135 }
2136
2137 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2138 {
2139         ENTRY;
2140         cfs_atomic_inc(&req->rq_refcount);
2141         RETURN(req);
2142 }
2143
2144 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2145                                       struct obd_import *imp)
2146 {
2147         cfs_list_t *tmp;
2148
2149         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2150
2151         if (req->rq_transno == 0) {
2152                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2153                 LBUG();
2154         }
2155
2156         /* clear this for new requests that were resent as well
2157            as resent replayed requests. */
2158         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2159
2160         /* don't re-add requests that have been replayed */
2161         if (!cfs_list_empty(&req->rq_replay_list))
2162                 return;
2163
2164         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2165
2166         LASSERT(imp->imp_replayable);
2167         /* Balanced in ptlrpc_free_committed, usually. */
2168         ptlrpc_request_addref(req);
2169         cfs_list_for_each_prev(tmp, &imp->imp_replay_list) {
2170                 struct ptlrpc_request *iter =
2171                         cfs_list_entry(tmp, struct ptlrpc_request,
2172                                        rq_replay_list);
2173
2174                 /* We may have duplicate transnos if we create and then
2175                  * open a file, or for closes retained if to match creating
2176                  * opens, so use req->rq_xid as a secondary key.
2177                  * (See bugs 684, 685, and 428.)
2178                  * XXX no longer needed, but all opens need transnos!
2179                  */
2180                 if (iter->rq_transno > req->rq_transno)
2181                         continue;
2182
2183                 if (iter->rq_transno == req->rq_transno) {
2184                         LASSERT(iter->rq_xid != req->rq_xid);
2185                         if (iter->rq_xid > req->rq_xid)
2186                                 continue;
2187                 }
2188
2189                 cfs_list_add(&req->rq_replay_list, &iter->rq_replay_list);
2190                 return;
2191         }
2192
2193         cfs_list_add(&req->rq_replay_list, &imp->imp_replay_list);
2194 }
2195
2196 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2197 {
2198         struct ptlrpc_request_set *set;
2199         int rc;
2200         ENTRY;
2201
2202         LASSERT(req->rq_set == NULL);
2203         LASSERT(!req->rq_receiving_reply);
2204
2205         set = ptlrpc_prep_set();
2206         if (set == NULL) {
2207                 CERROR("Unable to allocate ptlrpc set.");
2208                 RETURN(-ENOMEM);
2209         }
2210
2211         /* for distributed debugging */
2212         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2213
2214         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2215         ptlrpc_request_addref(req);
2216         ptlrpc_set_add_req(set, req);
2217         rc = ptlrpc_set_wait(set);
2218         ptlrpc_set_destroy(set);
2219
2220         RETURN(rc);
2221 }
2222
2223 struct ptlrpc_replay_async_args {
2224         int praa_old_state;
2225         int praa_old_status;
2226 };
2227
2228 static int ptlrpc_replay_interpret(const struct lu_env *env,
2229                                    struct ptlrpc_request *req,
2230                                    void * data, int rc)
2231 {
2232         struct ptlrpc_replay_async_args *aa = data;
2233         struct obd_import *imp = req->rq_import;
2234
2235         ENTRY;
2236         cfs_atomic_dec(&imp->imp_replay_inflight);
2237
2238         if (!ptlrpc_client_replied(req)) {
2239                 CERROR("request replay timed out, restarting recovery\n");
2240                 GOTO(out, rc = -ETIMEDOUT);
2241         }
2242
2243         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2244             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2245              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2246                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2247
2248         /** VBR: check version failure */
2249         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2250                 /** replay was failed due to version mismatch */
2251                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2252                 cfs_spin_lock(&imp->imp_lock);
2253                 imp->imp_vbr_failed = 1;
2254                 imp->imp_no_lock_replay = 1;
2255                 cfs_spin_unlock(&imp->imp_lock);
2256         } else {
2257                 /** The transno had better not change over replay. */
2258                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2259                          lustre_msg_get_transno(req->rq_repmsg) ||
2260                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2261                          LPX64"/"LPX64"\n",
2262                          lustre_msg_get_transno(req->rq_reqmsg),
2263                          lustre_msg_get_transno(req->rq_repmsg));
2264         }
2265
2266         cfs_spin_lock(&imp->imp_lock);
2267         /** if replays by version then gap was occur on server, no trust to locks */
2268         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2269                 imp->imp_no_lock_replay = 1;
2270         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2271         cfs_spin_unlock(&imp->imp_lock);
2272         LASSERT(imp->imp_last_replay_transno);
2273
2274         DEBUG_REQ(D_HA, req, "got rep");
2275
2276         /* let the callback do fixups, possibly including in the request */
2277         if (req->rq_replay_cb)
2278                 req->rq_replay_cb(req);
2279
2280         if (ptlrpc_client_replied(req) &&
2281             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2282                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2283                           lustre_msg_get_status(req->rq_repmsg),
2284                           aa->praa_old_status);
2285         } else {
2286                 /* Put it back for re-replay. */
2287                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2288         }
2289
2290         /*
2291          * Errors while replay can set transno to 0, but
2292          * imp_last_replay_transno shouldn't be set to 0 anyway
2293          */
2294         if (req->rq_transno > 0) {
2295                 cfs_spin_lock(&imp->imp_lock);
2296                 LASSERT(req->rq_transno <= imp->imp_last_replay_transno);
2297                 imp->imp_last_replay_transno = req->rq_transno;
2298                 cfs_spin_unlock(&imp->imp_lock);
2299         } else
2300                 CERROR("Transno is 0 during replay!\n");
2301         /* continue with recovery */
2302         rc = ptlrpc_import_recovery_state_machine(imp);
2303  out:
2304         req->rq_send_state = aa->praa_old_state;
2305
2306         if (rc != 0)
2307                 /* this replay failed, so restart recovery */
2308                 ptlrpc_connect_import(imp, NULL);
2309
2310         RETURN(rc);
2311 }
2312
2313 int ptlrpc_replay_req(struct ptlrpc_request *req)
2314 {
2315         struct ptlrpc_replay_async_args *aa;
2316         ENTRY;
2317
2318         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2319         /* Not handling automatic bulk replay yet (or ever?) */
2320         LASSERT(req->rq_bulk == NULL);
2321
2322         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2323         aa = ptlrpc_req_async_args(req);
2324         memset(aa, 0, sizeof *aa);
2325
2326         /* Prepare request to be resent with ptlrpcd */
2327         aa->praa_old_state = req->rq_send_state;
2328         req->rq_send_state = LUSTRE_IMP_REPLAY;
2329         req->rq_phase = RQ_PHASE_NEW;
2330         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2331         if (req->rq_repmsg)
2332                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2333         req->rq_status = 0;
2334         req->rq_interpret_reply = ptlrpc_replay_interpret;
2335         /* Readjust the timeout for current conditions */
2336         ptlrpc_at_set_req_timeout(req);
2337
2338         DEBUG_REQ(D_HA, req, "REPLAY");
2339
2340         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2341         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2342
2343         ptlrpcd_add_req(req, PSCOPE_OTHER);
2344         RETURN(0);
2345 }
2346
2347 void ptlrpc_abort_inflight(struct obd_import *imp)
2348 {
2349         cfs_list_t *tmp, *n;
2350         ENTRY;
2351
2352         /* Make sure that no new requests get processed for this import.
2353          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2354          * this flag and then putting requests on sending_list or delayed_list.
2355          */
2356         cfs_spin_lock(&imp->imp_lock);
2357
2358         /* XXX locking?  Maybe we should remove each request with the list
2359          * locked?  Also, how do we know if the requests on the list are
2360          * being freed at this time?
2361          */
2362         cfs_list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2363                 struct ptlrpc_request *req =
2364                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2365
2366                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2367
2368                 cfs_spin_lock (&req->rq_lock);
2369                 if (req->rq_import_generation < imp->imp_generation) {
2370                         req->rq_err = 1;
2371                         req->rq_status = -EINTR;
2372                         ptlrpc_client_wake_req(req);
2373                 }
2374                 cfs_spin_unlock (&req->rq_lock);
2375         }
2376
2377         cfs_list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2378                 struct ptlrpc_request *req =
2379                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2380
2381                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2382
2383                 cfs_spin_lock (&req->rq_lock);
2384                 if (req->rq_import_generation < imp->imp_generation) {
2385                         req->rq_err = 1;
2386                         req->rq_status = -EINTR;
2387                         ptlrpc_client_wake_req(req);
2388                 }
2389                 cfs_spin_unlock (&req->rq_lock);
2390         }
2391
2392         /* Last chance to free reqs left on the replay list, but we
2393          * will still leak reqs that haven't committed.  */
2394         if (imp->imp_replayable)
2395                 ptlrpc_free_committed(imp);
2396
2397         cfs_spin_unlock(&imp->imp_lock);
2398
2399         EXIT;
2400 }
2401
2402 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2403 {
2404         cfs_list_t *tmp, *pos;
2405
2406         LASSERT(set != NULL);
2407
2408         cfs_list_for_each_safe(pos, tmp, &set->set_requests) {
2409                 struct ptlrpc_request *req =
2410                         cfs_list_entry(pos, struct ptlrpc_request,
2411                                        rq_set_chain);
2412
2413                 cfs_spin_lock(&req->rq_lock);
2414                 if (req->rq_phase != RQ_PHASE_RPC) {
2415                         cfs_spin_unlock(&req->rq_lock);
2416                         continue;
2417                 }
2418
2419                 req->rq_err = 1;
2420                 req->rq_status = -EINTR;
2421                 ptlrpc_client_wake_req(req);
2422                 cfs_spin_unlock(&req->rq_lock);
2423         }
2424 }
2425
2426 static __u64 ptlrpc_last_xid;
2427 static cfs_spinlock_t ptlrpc_last_xid_lock;
2428
2429 /* Initialize the XID for the node.  This is common among all requests on
2430  * this node, and only requires the property that it is monotonically
2431  * increasing.  It does not need to be sequential.  Since this is also used
2432  * as the RDMA match bits, it is important that a single client NOT have
2433  * the same match bits for two different in-flight requests, hence we do
2434  * NOT want to have an XID per target or similar.
2435  *
2436  * To avoid an unlikely collision between match bits after a client reboot
2437  * (which would deliver old data into the wrong RDMA buffer) initialize
2438  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2439  * If the time is clearly incorrect, we instead use a 62-bit random number.
2440  * In the worst case the random number will overflow 1M RPCs per second in
2441  * 9133 years, or permutations thereof.
2442  */
2443 #define YEAR_2004 (1ULL << 30)
2444 void ptlrpc_init_xid(void)
2445 {
2446         time_t now = cfs_time_current_sec();
2447
2448         cfs_spin_lock_init(&ptlrpc_last_xid_lock);
2449         if (now < YEAR_2004) {
2450                 ll_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2451                 ptlrpc_last_xid >>= 2;
2452                 ptlrpc_last_xid |= (1ULL << 61);
2453         } else {
2454                 ptlrpc_last_xid = (__u64)now << 20;
2455         }
2456 }
2457
2458 __u64 ptlrpc_next_xid(void)
2459 {
2460         __u64 tmp;
2461         cfs_spin_lock(&ptlrpc_last_xid_lock);
2462         tmp = ++ptlrpc_last_xid;
2463         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2464         return tmp;
2465 }
2466
2467 __u64 ptlrpc_sample_next_xid(void)
2468 {
2469 #if BITS_PER_LONG == 32
2470         /* need to avoid possible word tearing on 32-bit systems */
2471         __u64 tmp;
2472         cfs_spin_lock(&ptlrpc_last_xid_lock);
2473         tmp = ptlrpc_last_xid + 1;
2474         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2475         return tmp;
2476 #else
2477         /* No need to lock, since returned value is racy anyways */
2478         return ptlrpc_last_xid + 1;
2479 #endif
2480 }
2481 EXPORT_SYMBOL(ptlrpc_sample_next_xid);