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