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