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