Whamcloud - gitweb
LU-898 ptlrpc: fix ptlrpc request race.
[fs/lustre-release.git] / lustre / ptlrpc / service.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  *
32  * Copyright (c) 2011 Whamcloud, Inc.
33  *
34  */
35 /*
36  * This file is part of Lustre, http://www.lustre.org/
37  * Lustre is a trademark of Sun Microsystems, Inc.
38  */
39
40 #define DEBUG_SUBSYSTEM S_RPC
41 #ifndef __KERNEL__
42 #include <liblustre.h>
43 #endif
44 #include <obd_support.h>
45 #include <obd_class.h>
46 #include <lustre_net.h>
47 #include <lu_object.h>
48 #include <lnet/types.h>
49 #include "ptlrpc_internal.h"
50
51 /* The following are visible and mutable through /sys/module/ptlrpc */
52 int test_req_buffer_pressure = 0;
53 CFS_MODULE_PARM(test_req_buffer_pressure, "i", int, 0444,
54                 "set non-zero to put pressure on request buffer pools");
55 CFS_MODULE_PARM(at_min, "i", int, 0644,
56                 "Adaptive timeout minimum (sec)");
57 CFS_MODULE_PARM(at_max, "i", int, 0644,
58                 "Adaptive timeout maximum (sec)");
59 CFS_MODULE_PARM(at_history, "i", int, 0644,
60                 "Adaptive timeouts remember the slowest event that took place "
61                 "within this period (sec)");
62 CFS_MODULE_PARM(at_early_margin, "i", int, 0644,
63                 "How soon before an RPC deadline to send an early reply");
64 CFS_MODULE_PARM(at_extra, "i", int, 0644,
65                 "How much extra time to give with each early reply");
66
67
68 /* forward ref */
69 static int ptlrpc_server_post_idle_rqbds (struct ptlrpc_service *svc);
70
71 static CFS_LIST_HEAD(ptlrpc_all_services);
72 cfs_spinlock_t ptlrpc_all_services_lock;
73
74 struct ptlrpc_request_buffer_desc *
75 ptlrpc_alloc_rqbd (struct ptlrpc_service *svc)
76 {
77         struct ptlrpc_request_buffer_desc *rqbd;
78
79         OBD_ALLOC_PTR(rqbd);
80         if (rqbd == NULL)
81                 return (NULL);
82
83         rqbd->rqbd_service = svc;
84         rqbd->rqbd_refcount = 0;
85         rqbd->rqbd_cbid.cbid_fn = request_in_callback;
86         rqbd->rqbd_cbid.cbid_arg = rqbd;
87         CFS_INIT_LIST_HEAD(&rqbd->rqbd_reqs);
88         OBD_ALLOC_LARGE(rqbd->rqbd_buffer, svc->srv_buf_size);
89
90         if (rqbd->rqbd_buffer == NULL) {
91                 OBD_FREE_PTR(rqbd);
92                 return (NULL);
93         }
94
95         cfs_spin_lock(&svc->srv_lock);
96         cfs_list_add(&rqbd->rqbd_list, &svc->srv_idle_rqbds);
97         svc->srv_nbufs++;
98         cfs_spin_unlock(&svc->srv_lock);
99
100         return (rqbd);
101 }
102
103 void
104 ptlrpc_free_rqbd (struct ptlrpc_request_buffer_desc *rqbd)
105 {
106         struct ptlrpc_service *svc = rqbd->rqbd_service;
107
108         LASSERT (rqbd->rqbd_refcount == 0);
109         LASSERT (cfs_list_empty(&rqbd->rqbd_reqs));
110
111         cfs_spin_lock(&svc->srv_lock);
112         cfs_list_del(&rqbd->rqbd_list);
113         svc->srv_nbufs--;
114         cfs_spin_unlock(&svc->srv_lock);
115
116         OBD_FREE_LARGE(rqbd->rqbd_buffer, svc->srv_buf_size);
117         OBD_FREE_PTR(rqbd);
118 }
119
120 int
121 ptlrpc_grow_req_bufs(struct ptlrpc_service *svc)
122 {
123         struct ptlrpc_request_buffer_desc *rqbd;
124         int                                i;
125
126         CDEBUG(D_RPCTRACE, "%s: allocate %d new %d-byte reqbufs (%d/%d left)\n",
127                svc->srv_name, svc->srv_nbuf_per_group, svc->srv_buf_size,
128                svc->srv_nrqbd_receiving, svc->srv_nbufs);
129         for (i = 0; i < svc->srv_nbuf_per_group; i++) {
130                 rqbd = ptlrpc_alloc_rqbd(svc);
131
132                 if (rqbd == NULL) {
133                         CERROR ("%s: Can't allocate request buffer\n",
134                                 svc->srv_name);
135                         return (-ENOMEM);
136                 }
137
138                 if (ptlrpc_server_post_idle_rqbds(svc) < 0)
139                         return (-EAGAIN);
140         }
141
142         return (0);
143 }
144
145 /**
146  * Part of Rep-Ack logic.
147  * Puts a lock and its mode into reply state assotiated to request reply.
148  */
149 void
150 ptlrpc_save_lock(struct ptlrpc_request *req,
151                  struct lustre_handle *lock, int mode, int no_ack)
152 {
153         struct ptlrpc_reply_state *rs = req->rq_reply_state;
154         int                        idx;
155
156         LASSERT(rs != NULL);
157         LASSERT(rs->rs_nlocks < RS_MAX_LOCKS);
158
159         if (req->rq_export->exp_disconnected) {
160                 ldlm_lock_decref(lock, mode);
161         } else {
162                 idx = rs->rs_nlocks++;
163                 rs->rs_locks[idx] = *lock;
164                 rs->rs_modes[idx] = mode;
165                 rs->rs_difficult = 1;
166                 rs->rs_no_ack = !!no_ack;
167         }
168 }
169
170 #ifdef __KERNEL__
171
172 #define HRT_RUNNING 0
173 #define HRT_STOPPING 1
174
175 struct ptlrpc_hr_thread {
176         cfs_spinlock_t        hrt_lock;
177         unsigned long         hrt_flags;
178         cfs_waitq_t           hrt_wait;
179         cfs_list_t            hrt_queue;
180         cfs_completion_t      hrt_completion;
181 };
182
183 struct ptlrpc_hr_service {
184         int                     hr_index;
185         int                     hr_n_threads;
186         int                     hr_size;
187         struct ptlrpc_hr_thread hr_threads[0];
188 };
189
190 struct rs_batch {
191         cfs_list_t              rsb_replies;
192         struct ptlrpc_service  *rsb_svc;
193         unsigned int            rsb_n_replies;
194 };
195
196 /**
197  *  A pointer to per-node reply handling service.
198  */
199 static struct ptlrpc_hr_service *ptlrpc_hr = NULL;
200
201 /**
202  * maximum mumber of replies scheduled in one batch
203  */
204 #define MAX_SCHEDULED 256
205
206 /**
207  * Initialize a reply batch.
208  *
209  * \param b batch
210  */
211 static void rs_batch_init(struct rs_batch *b)
212 {
213         memset(b, 0, sizeof *b);
214         CFS_INIT_LIST_HEAD(&b->rsb_replies);
215 }
216
217 /**
218  * Choose an hr thread to dispatch requests to.
219  */
220 static unsigned int get_hr_thread_index(struct ptlrpc_hr_service *hr)
221 {
222         unsigned int idx;
223
224         /* Concurrent modification of hr_index w/o any spinlock
225            protection is harmless as long as the result fits
226            [0..(hr_n_threads-1)] range and each thread gets near equal
227            load. */
228         idx = hr->hr_index;
229         hr->hr_index = (idx >= hr->hr_n_threads - 1) ? 0 : idx + 1;
230         return idx;
231 }
232
233 /**
234  * Dispatch all replies accumulated in the batch to one from
235  * dedicated reply handling threads.
236  *
237  * \param b batch
238  */
239 static void rs_batch_dispatch(struct rs_batch *b)
240 {
241         if (b->rsb_n_replies != 0) {
242                 struct ptlrpc_hr_service *hr = ptlrpc_hr;
243                 int idx;
244
245                 idx = get_hr_thread_index(hr);
246
247                 cfs_spin_lock(&hr->hr_threads[idx].hrt_lock);
248                 cfs_list_splice_init(&b->rsb_replies,
249                                      &hr->hr_threads[idx].hrt_queue);
250                 cfs_spin_unlock(&hr->hr_threads[idx].hrt_lock);
251                 cfs_waitq_signal(&hr->hr_threads[idx].hrt_wait);
252                 b->rsb_n_replies = 0;
253         }
254 }
255
256 /**
257  * Add a reply to a batch.
258  * Add one reply object to a batch, schedule batched replies if overload.
259  *
260  * \param b batch
261  * \param rs reply
262  */
263 static void rs_batch_add(struct rs_batch *b, struct ptlrpc_reply_state *rs)
264 {
265         struct ptlrpc_service *svc = rs->rs_service;
266
267         if (svc != b->rsb_svc || b->rsb_n_replies >= MAX_SCHEDULED) {
268                 if (b->rsb_svc != NULL) {
269                         rs_batch_dispatch(b);
270                         cfs_spin_unlock(&b->rsb_svc->srv_rs_lock);
271                 }
272                 cfs_spin_lock(&svc->srv_rs_lock);
273                 b->rsb_svc = svc;
274         }
275         cfs_spin_lock(&rs->rs_lock);
276         rs->rs_scheduled_ever = 1;
277         if (rs->rs_scheduled == 0) {
278                 cfs_list_move(&rs->rs_list, &b->rsb_replies);
279                 rs->rs_scheduled = 1;
280                 b->rsb_n_replies++;
281         }
282         rs->rs_committed = 1;
283         cfs_spin_unlock(&rs->rs_lock);
284 }
285
286 /**
287  * Reply batch finalization.
288  * Dispatch remaining replies from the batch
289  * and release remaining spinlock.
290  *
291  * \param b batch
292  */
293 static void rs_batch_fini(struct rs_batch *b)
294 {
295         if (b->rsb_svc != 0) {
296                 rs_batch_dispatch(b);
297                 cfs_spin_unlock(&b->rsb_svc->srv_rs_lock);
298         }
299 }
300
301 #define DECLARE_RS_BATCH(b)     struct rs_batch b
302
303 #else /* __KERNEL__ */
304
305 #define rs_batch_init(b)        do{}while(0)
306 #define rs_batch_fini(b)        do{}while(0)
307 #define rs_batch_add(b, r)      ptlrpc_schedule_difficult_reply(r)
308 #define DECLARE_RS_BATCH(b)
309
310 #endif /* __KERNEL__ */
311
312 /**
313  * Put reply state into a queue for processing because we received
314  * ACK from the client
315  */
316 void ptlrpc_dispatch_difficult_reply(struct ptlrpc_reply_state *rs)
317 {
318 #ifdef __KERNEL__
319         struct ptlrpc_hr_service *hr = ptlrpc_hr;
320         int idx;
321         ENTRY;
322
323         LASSERT(cfs_list_empty(&rs->rs_list));
324
325         idx = get_hr_thread_index(hr);
326         cfs_spin_lock(&hr->hr_threads[idx].hrt_lock);
327         cfs_list_add_tail(&rs->rs_list, &hr->hr_threads[idx].hrt_queue);
328         cfs_spin_unlock(&hr->hr_threads[idx].hrt_lock);
329         cfs_waitq_signal(&hr->hr_threads[idx].hrt_wait);
330         EXIT;
331 #else
332         cfs_list_add_tail(&rs->rs_list, &rs->rs_service->srv_reply_queue);
333 #endif
334 }
335
336 void
337 ptlrpc_schedule_difficult_reply (struct ptlrpc_reply_state *rs)
338 {
339         ENTRY;
340
341         LASSERT_SPIN_LOCKED(&rs->rs_service->srv_rs_lock);
342         LASSERT_SPIN_LOCKED(&rs->rs_lock);
343         LASSERT (rs->rs_difficult);
344         rs->rs_scheduled_ever = 1;  /* flag any notification attempt */
345
346         if (rs->rs_scheduled) {     /* being set up or already notified */
347                 EXIT;
348                 return;
349         }
350
351         rs->rs_scheduled = 1;
352         cfs_list_del_init(&rs->rs_list);
353         ptlrpc_dispatch_difficult_reply(rs);
354         EXIT;
355 }
356
357 void ptlrpc_commit_replies(struct obd_export *exp)
358 {
359         struct ptlrpc_reply_state *rs, *nxt;
360         DECLARE_RS_BATCH(batch);
361         ENTRY;
362
363         rs_batch_init(&batch);
364         /* Find any replies that have been committed and get their service
365          * to attend to complete them. */
366
367         /* CAVEAT EMPTOR: spinlock ordering!!! */
368         cfs_spin_lock(&exp->exp_uncommitted_replies_lock);
369         cfs_list_for_each_entry_safe(rs, nxt, &exp->exp_uncommitted_replies,
370                                      rs_obd_list) {
371                 LASSERT (rs->rs_difficult);
372                 /* VBR: per-export last_committed */
373                 LASSERT(rs->rs_export);
374                 if (rs->rs_transno <= exp->exp_last_committed) {
375                         cfs_list_del_init(&rs->rs_obd_list);
376                         rs_batch_add(&batch, rs);
377                 }
378         }
379         cfs_spin_unlock(&exp->exp_uncommitted_replies_lock);
380         rs_batch_fini(&batch);
381         EXIT;
382 }
383
384 static int
385 ptlrpc_server_post_idle_rqbds (struct ptlrpc_service *svc)
386 {
387         struct ptlrpc_request_buffer_desc *rqbd;
388         int                                rc;
389         int                                posted = 0;
390
391         for (;;) {
392                 cfs_spin_lock(&svc->srv_lock);
393
394                 if (cfs_list_empty (&svc->srv_idle_rqbds)) {
395                         cfs_spin_unlock(&svc->srv_lock);
396                         return (posted);
397                 }
398
399                 rqbd = cfs_list_entry(svc->srv_idle_rqbds.next,
400                                       struct ptlrpc_request_buffer_desc,
401                                       rqbd_list);
402                 cfs_list_del (&rqbd->rqbd_list);
403
404                 /* assume we will post successfully */
405                 svc->srv_nrqbd_receiving++;
406                 cfs_list_add (&rqbd->rqbd_list, &svc->srv_active_rqbds);
407
408                 cfs_spin_unlock(&svc->srv_lock);
409
410                 rc = ptlrpc_register_rqbd(rqbd);
411                 if (rc != 0)
412                         break;
413
414                 posted = 1;
415         }
416
417         cfs_spin_lock(&svc->srv_lock);
418
419         svc->srv_nrqbd_receiving--;
420         cfs_list_del(&rqbd->rqbd_list);
421         cfs_list_add_tail(&rqbd->rqbd_list, &svc->srv_idle_rqbds);
422
423         /* Don't complain if no request buffers are posted right now; LNET
424          * won't drop requests because we set the portal lazy! */
425
426         cfs_spin_unlock(&svc->srv_lock);
427
428         return (-1);
429 }
430
431 /**
432  * Start a service with parameters from struct ptlrpc_service_conf \a c
433  * as opposed to directly calling ptlrpc_init_svc with tons of arguments.
434  */
435 struct ptlrpc_service *ptlrpc_init_svc_conf(struct ptlrpc_service_conf *c,
436                                             svc_handler_t h, char *name,
437                                             struct proc_dir_entry *proc_entry,
438                                             svc_req_printfn_t prntfn,
439                                             char *threadname)
440 {
441         return ptlrpc_init_svc(c->psc_nbufs, c->psc_bufsize,
442                                c->psc_max_req_size, c->psc_max_reply_size,
443                                c->psc_req_portal, c->psc_rep_portal,
444                                c->psc_watchdog_factor,
445                                h, name, proc_entry,
446                                prntfn, c->psc_min_threads, c->psc_max_threads,
447                                threadname, c->psc_ctx_tags, NULL);
448 }
449 EXPORT_SYMBOL(ptlrpc_init_svc_conf);
450
451 static void ptlrpc_at_timer(unsigned long castmeharder)
452 {
453         struct ptlrpc_service *svc = (struct ptlrpc_service *)castmeharder;
454         svc->srv_at_check = 1;
455         svc->srv_at_checktime = cfs_time_current();
456         cfs_waitq_signal(&svc->srv_waitq);
457 }
458
459 /**
460  * Initialize service on a given portal.
461  * This includes starting serving threads , allocating and posting rqbds and
462  * so on.
463  * \a nbufs is how many buffers to post
464  * \a bufsize is buffer size to post
465  * \a max_req_size - maximum request size to be accepted for this service
466  * \a max_reply_size maximum reply size this service can ever send
467  * \a req_portal - portal to listed for requests on
468  * \a rep_portal - portal of where to send replies to
469  * \a watchdog_factor soft watchdog timeout multiplifier to print stuck service traces.
470  * \a handler - function to process every new request
471  * \a name - service name
472  * \a proc_entry - entry in the /proc tree for sttistics reporting
473  * \a min_threads \a max_threads - min/max number of service threads to start.
474  * \a threadname should be 11 characters or less - 3 will be added on
475  * \a hp_handler - function to determine priority of the request, also called
476  *                 on every new request.
477  */
478 struct ptlrpc_service *
479 ptlrpc_init_svc(int nbufs, int bufsize, int max_req_size, int max_reply_size,
480                 int req_portal, int rep_portal, int watchdog_factor,
481                 svc_handler_t handler, char *name,
482                 cfs_proc_dir_entry_t *proc_entry,
483                 svc_req_printfn_t svcreq_printfn,
484                 int min_threads, int max_threads,
485                 char *threadname, __u32 ctx_tags,
486                 svc_hpreq_handler_t hp_handler)
487 {
488         int                     rc;
489         struct ptlrpc_at_array *array;
490         struct ptlrpc_service  *service;
491         unsigned int            size, index;
492         ENTRY;
493
494         LASSERT (nbufs > 0);
495         LASSERT (bufsize >= max_req_size + SPTLRPC_MAX_PAYLOAD);
496         LASSERT (ctx_tags != 0);
497
498         OBD_ALLOC_PTR(service);
499         if (service == NULL)
500                 RETURN(NULL);
501
502         /* First initialise enough for early teardown */
503
504         service->srv_name = name;
505         cfs_spin_lock_init(&service->srv_lock);
506         cfs_spin_lock_init(&service->srv_rq_lock);
507         cfs_spin_lock_init(&service->srv_rs_lock);
508         CFS_INIT_LIST_HEAD(&service->srv_threads);
509         cfs_waitq_init(&service->srv_waitq);
510
511         service->srv_nbuf_per_group = test_req_buffer_pressure ? 1 : nbufs;
512         service->srv_max_req_size = max_req_size + SPTLRPC_MAX_PAYLOAD;
513         service->srv_buf_size = bufsize;
514         service->srv_rep_portal = rep_portal;
515         service->srv_req_portal = req_portal;
516         service->srv_watchdog_factor = watchdog_factor;
517         service->srv_handler = handler;
518         service->srv_req_printfn = svcreq_printfn;
519         service->srv_request_seq = 1;           /* valid seq #s start at 1 */
520         service->srv_request_max_cull_seq = 0;
521         service->srv_threads_min = min_threads;
522         service->srv_threads_max = max_threads;
523         service->srv_thread_name = threadname;
524         service->srv_ctx_tags = ctx_tags;
525         service->srv_hpreq_handler = hp_handler;
526         service->srv_hpreq_ratio = PTLRPC_SVC_HP_RATIO;
527         service->srv_hpreq_count = 0;
528         service->srv_n_active_hpreq = 0;
529
530         rc = LNetSetLazyPortal(service->srv_req_portal);
531         LASSERT (rc == 0);
532
533         CFS_INIT_LIST_HEAD(&service->srv_request_queue);
534         CFS_INIT_LIST_HEAD(&service->srv_request_hpq);
535         CFS_INIT_LIST_HEAD(&service->srv_idle_rqbds);
536         CFS_INIT_LIST_HEAD(&service->srv_active_rqbds);
537         CFS_INIT_LIST_HEAD(&service->srv_history_rqbds);
538         CFS_INIT_LIST_HEAD(&service->srv_request_history);
539         CFS_INIT_LIST_HEAD(&service->srv_active_replies);
540 #ifndef __KERNEL__
541         CFS_INIT_LIST_HEAD(&service->srv_reply_queue);
542 #endif
543         CFS_INIT_LIST_HEAD(&service->srv_free_rs_list);
544         cfs_waitq_init(&service->srv_free_rs_waitq);
545         cfs_atomic_set(&service->srv_n_difficult_replies, 0);
546
547         cfs_spin_lock_init(&service->srv_at_lock);
548         CFS_INIT_LIST_HEAD(&service->srv_req_in_queue);
549
550         array = &service->srv_at_array;
551         size = at_est2timeout(at_max);
552         array->paa_size = size;
553         array->paa_count = 0;
554         array->paa_deadline = -1;
555
556         /* allocate memory for srv_at_array (ptlrpc_at_array) */
557         OBD_ALLOC(array->paa_reqs_array, sizeof(cfs_list_t) * size);
558         if (array->paa_reqs_array == NULL)
559                 GOTO(failed, NULL);
560
561         for (index = 0; index < size; index++)
562                 CFS_INIT_LIST_HEAD(&array->paa_reqs_array[index]);
563
564         OBD_ALLOC(array->paa_reqs_count, sizeof(__u32) * size);
565         if (array->paa_reqs_count == NULL)
566                 GOTO(failed, NULL);
567
568         cfs_timer_init(&service->srv_at_timer, ptlrpc_at_timer, service);
569         /* At SOW, service time should be quick; 10s seems generous. If client
570            timeout is less than this, we'll be sending an early reply. */
571         at_init(&service->srv_at_estimate, 10, 0);
572
573         cfs_spin_lock (&ptlrpc_all_services_lock);
574         cfs_list_add (&service->srv_list, &ptlrpc_all_services);
575         cfs_spin_unlock (&ptlrpc_all_services_lock);
576
577         /* Now allocate the request buffers */
578         rc = ptlrpc_grow_req_bufs(service);
579         /* We shouldn't be under memory pressure at startup, so
580          * fail if we can't post all our buffers at this time. */
581         if (rc != 0)
582                 GOTO(failed, NULL);
583
584         /* Now allocate pool of reply buffers */
585         /* Increase max reply size to next power of two */
586         service->srv_max_reply_size = 1;
587         while (service->srv_max_reply_size <
588                max_reply_size + SPTLRPC_MAX_PAYLOAD)
589                 service->srv_max_reply_size <<= 1;
590
591         if (proc_entry != NULL)
592                 ptlrpc_lprocfs_register_service(proc_entry, service);
593
594         CDEBUG(D_NET, "%s: Started, listening on portal %d\n",
595                service->srv_name, service->srv_req_portal);
596
597         RETURN(service);
598 failed:
599         ptlrpc_unregister_service(service);
600         return NULL;
601 }
602
603 /**
604  * to actually free the request, must be called without holding svc_lock.
605  * note it's caller's responsibility to unlink req->rq_list.
606  */
607 static void ptlrpc_server_free_request(struct ptlrpc_request *req)
608 {
609         LASSERT(cfs_atomic_read(&req->rq_refcount) == 0);
610         LASSERT(cfs_list_empty(&req->rq_timed_list));
611
612          /* DEBUG_REQ() assumes the reply state of a request with a valid
613           * ref will not be destroyed until that reference is dropped. */
614         ptlrpc_req_drop_rs(req);
615
616         sptlrpc_svc_ctx_decref(req);
617
618         if (req != &req->rq_rqbd->rqbd_req) {
619                 /* NB request buffers use an embedded
620                  * req if the incoming req unlinked the
621                  * MD; this isn't one of them! */
622                 OBD_FREE(req, sizeof(*req));
623         }
624 }
625
626 /**
627  * drop a reference count of the request. if it reaches 0, we either
628  * put it into history list, or free it immediately.
629  */
630 void ptlrpc_server_drop_request(struct ptlrpc_request *req)
631 {
632         struct ptlrpc_request_buffer_desc *rqbd = req->rq_rqbd;
633         struct ptlrpc_service             *svc = rqbd->rqbd_service;
634         int                                refcount;
635         cfs_list_t                        *tmp;
636         cfs_list_t                        *nxt;
637
638         if (!cfs_atomic_dec_and_test(&req->rq_refcount))
639                 return;
640
641         cfs_spin_lock(&svc->srv_at_lock);
642         if (req->rq_at_linked) {
643                 struct ptlrpc_at_array *array = &svc->srv_at_array;
644                 __u32 index = req->rq_at_index;
645
646                 LASSERT(!cfs_list_empty(&req->rq_timed_list));
647                 cfs_list_del_init(&req->rq_timed_list);
648                 cfs_spin_lock(&req->rq_lock);
649                 req->rq_at_linked = 0;
650                 cfs_spin_unlock(&req->rq_lock);
651                 array->paa_reqs_count[index]--;
652                 array->paa_count--;
653         } else
654                 LASSERT(cfs_list_empty(&req->rq_timed_list));
655         cfs_spin_unlock(&svc->srv_at_lock);
656
657         /* finalize request */
658         if (req->rq_export) {
659                 class_export_put(req->rq_export);
660                 req->rq_export = NULL;
661         }
662
663         cfs_spin_lock(&svc->srv_lock);
664
665         cfs_list_add(&req->rq_list, &rqbd->rqbd_reqs);
666
667         refcount = --(rqbd->rqbd_refcount);
668         if (refcount == 0) {
669                 /* request buffer is now idle: add to history */
670                 cfs_list_del(&rqbd->rqbd_list);
671                 cfs_list_add_tail(&rqbd->rqbd_list, &svc->srv_history_rqbds);
672                 svc->srv_n_history_rqbds++;
673
674                 /* cull some history?
675                  * I expect only about 1 or 2 rqbds need to be recycled here */
676                 while (svc->srv_n_history_rqbds > svc->srv_max_history_rqbds) {
677                         rqbd = cfs_list_entry(svc->srv_history_rqbds.next,
678                                               struct ptlrpc_request_buffer_desc,
679                                               rqbd_list);
680
681                         cfs_list_del(&rqbd->rqbd_list);
682                         svc->srv_n_history_rqbds--;
683
684                         /* remove rqbd's reqs from svc's req history while
685                          * I've got the service lock */
686                         cfs_list_for_each(tmp, &rqbd->rqbd_reqs) {
687                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
688                                                      rq_list);
689                                 /* Track the highest culled req seq */
690                                 if (req->rq_history_seq >
691                                     svc->srv_request_max_cull_seq)
692                                         svc->srv_request_max_cull_seq =
693                                                 req->rq_history_seq;
694                                 cfs_list_del(&req->rq_history_list);
695                         }
696
697                         cfs_spin_unlock(&svc->srv_lock);
698
699                         cfs_list_for_each_safe(tmp, nxt, &rqbd->rqbd_reqs) {
700                                 req = cfs_list_entry(rqbd->rqbd_reqs.next,
701                                                      struct ptlrpc_request,
702                                                      rq_list);
703                                 cfs_list_del(&req->rq_list);
704                                 ptlrpc_server_free_request(req);
705                         }
706
707                         cfs_spin_lock(&svc->srv_lock);
708                         /*
709                          * now all reqs including the embedded req has been
710                          * disposed, schedule request buffer for re-use.
711                          */
712                         LASSERT(cfs_atomic_read(&rqbd->rqbd_req.rq_refcount) ==
713                                 0);
714                         cfs_list_add_tail(&rqbd->rqbd_list,
715                                           &svc->srv_idle_rqbds);
716                 }
717
718                 cfs_spin_unlock(&svc->srv_lock);
719         } else if (req->rq_reply_state && req->rq_reply_state->rs_prealloc) {
720                 /* If we are low on memory, we are not interested in history */
721                 cfs_list_del(&req->rq_list);
722                 cfs_list_del_init(&req->rq_history_list);
723                 cfs_spin_unlock(&svc->srv_lock);
724
725                 ptlrpc_server_free_request(req);
726         } else {
727                 cfs_spin_unlock(&svc->srv_lock);
728         }
729 }
730
731 /**
732  * to finish a request: stop sending more early replies, and release
733  * the request. should be called after we finished handling the request.
734  */
735 static void ptlrpc_server_finish_request(struct ptlrpc_service *svc,
736                                          struct ptlrpc_request *req)
737 {
738         cfs_spin_lock(&svc->srv_rq_lock);
739         svc->srv_n_active_reqs--;
740         if (req->rq_hp)
741                 svc->srv_n_active_hpreq--;
742         cfs_spin_unlock(&svc->srv_rq_lock);
743
744         ptlrpc_server_drop_request(req);
745 }
746
747 /**
748  * This function makes sure dead exports are evicted in a timely manner.
749  * This function is only called when some export receives a message (i.e.,
750  * the network is up.)
751  */
752 static void ptlrpc_update_export_timer(struct obd_export *exp, long extra_delay)
753 {
754         struct obd_export *oldest_exp;
755         time_t oldest_time, new_time;
756
757         ENTRY;
758
759         LASSERT(exp);
760
761         /* Compensate for slow machines, etc, by faking our request time
762            into the future.  Although this can break the strict time-ordering
763            of the list, we can be really lazy here - we don't have to evict
764            at the exact right moment.  Eventually, all silent exports
765            will make it to the top of the list. */
766
767         /* Do not pay attention on 1sec or smaller renewals. */
768         new_time = cfs_time_current_sec() + extra_delay;
769         if (exp->exp_last_request_time + 1 /*second */ >= new_time)
770                 RETURN_EXIT;
771
772         exp->exp_last_request_time = new_time;
773         CDEBUG(D_HA, "updating export %s at "CFS_TIME_T" exp %p\n",
774                exp->exp_client_uuid.uuid,
775                exp->exp_last_request_time, exp);
776
777         /* exports may get disconnected from the chain even though the
778            export has references, so we must keep the spin lock while
779            manipulating the lists */
780         cfs_spin_lock(&exp->exp_obd->obd_dev_lock);
781
782         if (cfs_list_empty(&exp->exp_obd_chain_timed)) {
783                 /* this one is not timed */
784                 cfs_spin_unlock(&exp->exp_obd->obd_dev_lock);
785                 RETURN_EXIT;
786         }
787
788         cfs_list_move_tail(&exp->exp_obd_chain_timed,
789                            &exp->exp_obd->obd_exports_timed);
790
791         oldest_exp = cfs_list_entry(exp->exp_obd->obd_exports_timed.next,
792                                     struct obd_export, exp_obd_chain_timed);
793         oldest_time = oldest_exp->exp_last_request_time;
794         cfs_spin_unlock(&exp->exp_obd->obd_dev_lock);
795
796         if (exp->exp_obd->obd_recovering) {
797                 /* be nice to everyone during recovery */
798                 EXIT;
799                 return;
800         }
801
802         /* Note - racing to start/reset the obd_eviction timer is safe */
803         if (exp->exp_obd->obd_eviction_timer == 0) {
804                 /* Check if the oldest entry is expired. */
805                 if (cfs_time_current_sec() > (oldest_time + PING_EVICT_TIMEOUT +
806                                               extra_delay)) {
807                         /* We need a second timer, in case the net was down and
808                          * it just came back. Since the pinger may skip every
809                          * other PING_INTERVAL (see note in ptlrpc_pinger_main),
810                          * we better wait for 3. */
811                         exp->exp_obd->obd_eviction_timer =
812                                 cfs_time_current_sec() + 3 * PING_INTERVAL;
813                         CDEBUG(D_HA, "%s: Think about evicting %s from "CFS_TIME_T"\n",
814                                exp->exp_obd->obd_name, 
815                                obd_export_nid2str(oldest_exp), oldest_time);
816                 }
817         } else {
818                 if (cfs_time_current_sec() >
819                     (exp->exp_obd->obd_eviction_timer + extra_delay)) {
820                         /* The evictor won't evict anyone who we've heard from
821                          * recently, so we don't have to check before we start
822                          * it. */
823                         if (!ping_evictor_wake(exp))
824                                 exp->exp_obd->obd_eviction_timer = 0;
825                 }
826         }
827
828         EXIT;
829 }
830
831 /**
832  * Sanity check request \a req.
833  * Return 0 if all is ok, error code otherwise.
834  */
835 static int ptlrpc_check_req(struct ptlrpc_request *req)
836 {
837         int rc = 0;
838
839         if (unlikely(lustre_msg_get_conn_cnt(req->rq_reqmsg) <
840                      req->rq_export->exp_conn_cnt)) {
841                 DEBUG_REQ(D_ERROR, req,
842                           "DROPPING req from old connection %d < %d",
843                           lustre_msg_get_conn_cnt(req->rq_reqmsg),
844                           req->rq_export->exp_conn_cnt);
845                 return -EEXIST;
846         }
847         if (unlikely(req->rq_export->exp_obd &&
848                      req->rq_export->exp_obd->obd_fail)) {
849              /* Failing over, don't handle any more reqs, send
850                 error response instead. */
851                 CDEBUG(D_RPCTRACE, "Dropping req %p for failed obd %s\n",
852                        req, req->rq_export->exp_obd->obd_name);
853                 rc = -ENODEV;
854         } else if (lustre_msg_get_flags(req->rq_reqmsg) &
855                    (MSG_REPLAY | MSG_REQ_REPLAY_DONE) &&
856                    !(req->rq_export->exp_obd->obd_recovering)) {
857                         DEBUG_REQ(D_ERROR, req,
858                                   "Invalid replay without recovery");
859                         class_fail_export(req->rq_export);
860                         rc = -ENODEV;
861         } else if (lustre_msg_get_transno(req->rq_reqmsg) != 0 &&
862                    !(req->rq_export->exp_obd->obd_recovering)) {
863                         DEBUG_REQ(D_ERROR, req, "Invalid req with transno "
864                                   LPU64" without recovery",
865                                   lustre_msg_get_transno(req->rq_reqmsg));
866                         class_fail_export(req->rq_export);
867                         rc = -ENODEV;
868         }
869
870         if (unlikely(rc < 0)) {
871                 req->rq_status = rc;
872                 ptlrpc_error(req);
873         }
874         return rc;
875 }
876
877 static void ptlrpc_at_set_timer(struct ptlrpc_service *svc)
878 {
879         struct ptlrpc_at_array *array = &svc->srv_at_array;
880         __s32 next;
881
882         cfs_spin_lock(&svc->srv_at_lock);
883         if (array->paa_count == 0) {
884                 cfs_timer_disarm(&svc->srv_at_timer);
885                 cfs_spin_unlock(&svc->srv_at_lock);
886                 return;
887         }
888
889         /* Set timer for closest deadline */
890         next = (__s32)(array->paa_deadline - cfs_time_current_sec() -
891                        at_early_margin);
892         if (next <= 0)
893                 ptlrpc_at_timer((unsigned long)svc);
894         else
895                 cfs_timer_arm(&svc->srv_at_timer, cfs_time_shift(next));
896         cfs_spin_unlock(&svc->srv_at_lock);
897         CDEBUG(D_INFO, "armed %s at %+ds\n", svc->srv_name, next);
898 }
899
900 /* Add rpc to early reply check list */
901 static int ptlrpc_at_add_timed(struct ptlrpc_request *req)
902 {
903         struct ptlrpc_service *svc = req->rq_rqbd->rqbd_service;
904         struct ptlrpc_request *rq = NULL;
905         struct ptlrpc_at_array *array = &svc->srv_at_array;
906         __u32 index;
907         int found = 0;
908
909         if (AT_OFF)
910                 return(0);
911
912         if (req->rq_no_reply)
913                 return 0;
914
915         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0)
916                 return(-ENOSYS);
917
918         cfs_spin_lock(&svc->srv_at_lock);
919         LASSERT(cfs_list_empty(&req->rq_timed_list));
920
921         index = (unsigned long)req->rq_deadline % array->paa_size;
922         if (array->paa_reqs_count[index] > 0) {
923                 /* latest rpcs will have the latest deadlines in the list,
924                  * so search backward. */
925                 cfs_list_for_each_entry_reverse(rq,
926                                                 &array->paa_reqs_array[index],
927                                                 rq_timed_list) {
928                         if (req->rq_deadline >= rq->rq_deadline) {
929                                 cfs_list_add(&req->rq_timed_list,
930                                              &rq->rq_timed_list);
931                                 break;
932                         }
933                 }
934         }
935
936         /* Add the request at the head of the list */
937         if (cfs_list_empty(&req->rq_timed_list))
938                 cfs_list_add(&req->rq_timed_list,
939                              &array->paa_reqs_array[index]);
940
941         cfs_spin_lock(&req->rq_lock);
942         req->rq_at_linked = 1;
943         cfs_spin_unlock(&req->rq_lock);
944         req->rq_at_index = index;
945         array->paa_reqs_count[index]++;
946         array->paa_count++;
947         if (array->paa_count == 1 || array->paa_deadline > req->rq_deadline) {
948                 array->paa_deadline = req->rq_deadline;
949                 found = 1;
950         }
951         cfs_spin_unlock(&svc->srv_at_lock);
952
953         if (found)
954                 ptlrpc_at_set_timer(svc);
955
956         return 0;
957 }
958
959 static int ptlrpc_at_send_early_reply(struct ptlrpc_request *req)
960 {
961         struct ptlrpc_service *svc = req->rq_rqbd->rqbd_service;
962         struct ptlrpc_request *reqcopy;
963         struct lustre_msg *reqmsg;
964         cfs_duration_t olddl = req->rq_deadline - cfs_time_current_sec();
965         time_t newdl;
966         int rc;
967         ENTRY;
968
969         /* deadline is when the client expects us to reply, margin is the
970            difference between clients' and servers' expectations */
971         DEBUG_REQ(D_ADAPTTO, req,
972                   "%ssending early reply (deadline %+lds, margin %+lds) for "
973                   "%d+%d", AT_OFF ? "AT off - not " : "",
974                   olddl, olddl - at_get(&svc->srv_at_estimate),
975                   at_get(&svc->srv_at_estimate), at_extra);
976
977         if (AT_OFF)
978                 RETURN(0);
979
980         if (olddl < 0) {
981                 DEBUG_REQ(D_WARNING, req, "Already past deadline (%+lds), "
982                           "not sending early reply. Consider increasing "
983                           "at_early_margin (%d)?", olddl, at_early_margin);
984
985                 /* Return an error so we're not re-added to the timed list. */
986                 RETURN(-ETIMEDOUT);
987         }
988
989         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0){
990                 DEBUG_REQ(D_INFO, req, "Wanted to ask client for more time, "
991                           "but no AT support");
992                 RETURN(-ENOSYS);
993         }
994
995         if (req->rq_export &&
996             lustre_msg_get_flags(req->rq_reqmsg) &
997             (MSG_REPLAY | MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE)) {
998                 /* During recovery, we don't want to send too many early
999                  * replies, but on the other hand we want to make sure the
1000                  * client has enough time to resend if the rpc is lost. So
1001                  * during the recovery period send at least 4 early replies,
1002                  * spacing them every at_extra if we can. at_estimate should
1003                  * always equal this fixed value during recovery. */
1004                 at_measured(&svc->srv_at_estimate, min(at_extra,
1005                             req->rq_export->exp_obd->obd_recovery_timeout / 4));
1006         } else {
1007                 /* Fake our processing time into the future to ask the clients
1008                  * for some extra amount of time */
1009                 at_measured(&svc->srv_at_estimate, at_extra +
1010                             cfs_time_current_sec() -
1011                             req->rq_arrival_time.tv_sec);
1012
1013                 /* Check to see if we've actually increased the deadline -
1014                  * we may be past adaptive_max */
1015                 if (req->rq_deadline >= req->rq_arrival_time.tv_sec +
1016                     at_get(&svc->srv_at_estimate)) {
1017                         DEBUG_REQ(D_WARNING, req, "Couldn't add any time "
1018                                   "(%ld/%ld), not sending early reply\n",
1019                                   olddl, req->rq_arrival_time.tv_sec +
1020                                   at_get(&svc->srv_at_estimate) -
1021                                   cfs_time_current_sec());
1022                         RETURN(-ETIMEDOUT);
1023                 }
1024         }
1025         newdl = cfs_time_current_sec() + at_get(&svc->srv_at_estimate);
1026
1027         OBD_ALLOC(reqcopy, sizeof *reqcopy);
1028         if (reqcopy == NULL)
1029                 RETURN(-ENOMEM);
1030         OBD_ALLOC_LARGE(reqmsg, req->rq_reqlen);
1031         if (!reqmsg) {
1032                 OBD_FREE(reqcopy, sizeof *reqcopy);
1033                 RETURN(-ENOMEM);
1034         }
1035
1036         *reqcopy = *req;
1037         reqcopy->rq_reply_state = NULL;
1038         reqcopy->rq_rep_swab_mask = 0;
1039         reqcopy->rq_pack_bulk = 0;
1040         reqcopy->rq_pack_udesc = 0;
1041         reqcopy->rq_packed_final = 0;
1042         sptlrpc_svc_ctx_addref(reqcopy);
1043         /* We only need the reqmsg for the magic */
1044         reqcopy->rq_reqmsg = reqmsg;
1045         memcpy(reqmsg, req->rq_reqmsg, req->rq_reqlen);
1046
1047         LASSERT(cfs_atomic_read(&req->rq_refcount));
1048         /** if it is last refcount then early reply isn't needed */
1049         if (cfs_atomic_read(&req->rq_refcount) == 1) {
1050                 DEBUG_REQ(D_ADAPTTO, reqcopy, "Normal reply already sent out, "
1051                           "abort sending early reply\n");
1052                 GOTO(out, rc = -EINVAL);
1053         }
1054
1055         /* Connection ref */
1056         reqcopy->rq_export = class_conn2export(
1057                                      lustre_msg_get_handle(reqcopy->rq_reqmsg));
1058         if (reqcopy->rq_export == NULL)
1059                 GOTO(out, rc = -ENODEV);
1060
1061         /* RPC ref */
1062         class_export_rpc_get(reqcopy->rq_export);
1063         if (reqcopy->rq_export->exp_obd &&
1064             reqcopy->rq_export->exp_obd->obd_fail)
1065                 GOTO(out_put, rc = -ENODEV);
1066
1067         rc = lustre_pack_reply_flags(reqcopy, 1, NULL, NULL, LPRFL_EARLY_REPLY);
1068         if (rc)
1069                 GOTO(out_put, rc);
1070
1071         rc = ptlrpc_send_reply(reqcopy, PTLRPC_REPLY_EARLY);
1072
1073         if (!rc) {
1074                 /* Adjust our own deadline to what we told the client */
1075                 req->rq_deadline = newdl;
1076                 req->rq_early_count++; /* number sent, server side */
1077         } else {
1078                 DEBUG_REQ(D_ERROR, req, "Early reply send failed %d", rc);
1079         }
1080
1081         /* Free the (early) reply state from lustre_pack_reply.
1082            (ptlrpc_send_reply takes it's own rs ref, so this is safe here) */
1083         ptlrpc_req_drop_rs(reqcopy);
1084
1085 out_put:
1086         class_export_rpc_put(reqcopy->rq_export);
1087         class_export_put(reqcopy->rq_export);
1088 out:
1089         sptlrpc_svc_ctx_decref(reqcopy);
1090         OBD_FREE_LARGE(reqmsg, req->rq_reqlen);
1091         OBD_FREE(reqcopy, sizeof *reqcopy);
1092         RETURN(rc);
1093 }
1094
1095 /* Send early replies to everybody expiring within at_early_margin
1096    asking for at_extra time */
1097 static int ptlrpc_at_check_timed(struct ptlrpc_service *svc)
1098 {
1099         struct ptlrpc_request *rq, *n;
1100         cfs_list_t work_list;
1101         struct ptlrpc_at_array *array = &svc->srv_at_array;
1102         __u32  index, count;
1103         time_t deadline;
1104         time_t now = cfs_time_current_sec();
1105         cfs_duration_t delay;
1106         int first, counter = 0;
1107         ENTRY;
1108
1109         cfs_spin_lock(&svc->srv_at_lock);
1110         if (svc->srv_at_check == 0) {
1111                 cfs_spin_unlock(&svc->srv_at_lock);
1112                 RETURN(0);
1113         }
1114         delay = cfs_time_sub(cfs_time_current(), svc->srv_at_checktime);
1115         svc->srv_at_check = 0;
1116
1117         if (array->paa_count == 0) {
1118                 cfs_spin_unlock(&svc->srv_at_lock);
1119                 RETURN(0);
1120         }
1121
1122         /* The timer went off, but maybe the nearest rpc already completed. */
1123         first = array->paa_deadline - now;
1124         if (first > at_early_margin) {
1125                 /* We've still got plenty of time.  Reset the timer. */
1126                 cfs_spin_unlock(&svc->srv_at_lock);
1127                 ptlrpc_at_set_timer(svc);
1128                 RETURN(0);
1129         }
1130
1131         /* We're close to a timeout, and we don't know how much longer the
1132            server will take. Send early replies to everyone expiring soon. */
1133         CFS_INIT_LIST_HEAD(&work_list);
1134         deadline = -1;
1135         index = (unsigned long)array->paa_deadline % array->paa_size;
1136         count = array->paa_count;
1137         while (count > 0) {
1138                 count -= array->paa_reqs_count[index];
1139                 cfs_list_for_each_entry_safe(rq, n,
1140                                              &array->paa_reqs_array[index],
1141                                              rq_timed_list) {
1142                         if (rq->rq_deadline <= now + at_early_margin) {
1143                                 cfs_list_del_init(&rq->rq_timed_list);
1144                                 /**
1145                                  * ptlrpc_server_drop_request() may drop
1146                                  * refcount to 0 already. Let's check this and
1147                                  * don't add entry to work_list
1148                                  */
1149                                 if (likely(cfs_atomic_inc_not_zero(&rq->rq_refcount)))
1150                                         cfs_list_add(&rq->rq_timed_list, &work_list);
1151                                 counter++;
1152                                 array->paa_reqs_count[index]--;
1153                                 array->paa_count--;
1154                                 cfs_spin_lock(&rq->rq_lock);
1155                                 rq->rq_at_linked = 0;
1156                                 cfs_spin_unlock(&rq->rq_lock);
1157                                 continue;
1158                         }
1159
1160                         /* update the earliest deadline */
1161                         if (deadline == -1 || rq->rq_deadline < deadline)
1162                                 deadline = rq->rq_deadline;
1163
1164                         break;
1165                 }
1166
1167                 if (++index >= array->paa_size)
1168                         index = 0;
1169         }
1170         array->paa_deadline = deadline;
1171         cfs_spin_unlock(&svc->srv_at_lock);
1172
1173         /* we have a new earliest deadline, restart the timer */
1174         ptlrpc_at_set_timer(svc);
1175
1176         CDEBUG(D_ADAPTTO, "timeout in %+ds, asking for %d secs on %d early "
1177                "replies\n", first, at_extra, counter);
1178         if (first < 0) {
1179                 /* We're already past request deadlines before we even get a
1180                    chance to send early replies */
1181                 LCONSOLE_WARN("%s: This server is not able to keep up with "
1182                               "request traffic (cpu-bound).\n", svc->srv_name);
1183                 CWARN("earlyQ=%d reqQ=%d recA=%d, svcEst=%d, "
1184                       "delay="CFS_DURATION_T"(jiff)\n",
1185                       counter, svc->srv_n_queued_reqs, svc->srv_n_active_reqs,
1186                       at_get(&svc->srv_at_estimate), delay);
1187         }
1188
1189         /* we took additional refcount so entries can't be deleted from list, no
1190          * locking is needed */
1191         while (!cfs_list_empty(&work_list)) {
1192                 rq = cfs_list_entry(work_list.next, struct ptlrpc_request,
1193                                     rq_timed_list);
1194                 cfs_list_del_init(&rq->rq_timed_list);
1195
1196                 if (ptlrpc_at_send_early_reply(rq) == 0)
1197                         ptlrpc_at_add_timed(rq);
1198
1199                 ptlrpc_server_drop_request(rq);
1200         }
1201
1202         RETURN(0);
1203 }
1204
1205 /**
1206  * Put the request to the export list if the request may become
1207  * a high priority one.
1208  */
1209 static int ptlrpc_hpreq_init(struct ptlrpc_service *svc,
1210                              struct ptlrpc_request *req)
1211 {
1212         int rc;
1213         ENTRY;
1214
1215         if (svc->srv_hpreq_handler) {
1216                 rc = svc->srv_hpreq_handler(req);
1217                 if (rc)
1218                         RETURN(rc);
1219         }
1220         if (req->rq_export && req->rq_ops) {
1221                 cfs_spin_lock_bh(&req->rq_export->exp_rpc_lock);
1222                 cfs_list_add(&req->rq_exp_list,
1223                              &req->rq_export->exp_queued_rpc);
1224                 cfs_spin_unlock_bh(&req->rq_export->exp_rpc_lock);
1225         }
1226
1227         RETURN(0);
1228 }
1229
1230 /** Remove the request from the export list. */
1231 static void ptlrpc_hpreq_fini(struct ptlrpc_request *req)
1232 {
1233         ENTRY;
1234         if (req->rq_export && req->rq_ops) {
1235                 cfs_spin_lock_bh(&req->rq_export->exp_rpc_lock);
1236                 cfs_list_del_init(&req->rq_exp_list);
1237                 cfs_spin_unlock_bh(&req->rq_export->exp_rpc_lock);
1238         }
1239         EXIT;
1240 }
1241
1242 /**
1243  * Make the request a high priority one.
1244  *
1245  * All the high priority requests are queued in a separate FIFO
1246  * ptlrpc_service::srv_request_hpq list which is parallel to
1247  * ptlrpc_service::srv_request_queue list but has a higher priority
1248  * for handling.
1249  *
1250  * \see ptlrpc_server_handle_request().
1251  */
1252 static void ptlrpc_hpreq_reorder_nolock(struct ptlrpc_service *svc,
1253                                         struct ptlrpc_request *req)
1254 {
1255         ENTRY;
1256         LASSERT(svc != NULL);
1257         cfs_spin_lock(&req->rq_lock);
1258         if (req->rq_hp == 0) {
1259                 int opc = lustre_msg_get_opc(req->rq_reqmsg);
1260
1261                 /* Add to the high priority queue. */
1262                 cfs_list_move_tail(&req->rq_list, &svc->srv_request_hpq);
1263                 req->rq_hp = 1;
1264                 if (opc != OBD_PING)
1265                         DEBUG_REQ(D_NET, req, "high priority req");
1266         }
1267         cfs_spin_unlock(&req->rq_lock);
1268         EXIT;
1269 }
1270
1271 /**
1272  * \see ptlrpc_hpreq_reorder_nolock
1273  */
1274 void ptlrpc_hpreq_reorder(struct ptlrpc_request *req)
1275 {
1276         struct ptlrpc_service *svc = req->rq_rqbd->rqbd_service;
1277         ENTRY;
1278
1279         cfs_spin_lock(&svc->srv_rq_lock);
1280         /* It may happen that the request is already taken for the processing
1281          * but still in the export list, or the request is not in the request
1282          * queue but in the export list already, do not add it into the
1283          * HP list. */
1284         if (!cfs_list_empty(&req->rq_list))
1285                 ptlrpc_hpreq_reorder_nolock(svc, req);
1286         cfs_spin_unlock(&svc->srv_rq_lock);
1287         EXIT;
1288 }
1289
1290 /** Check if the request is a high priority one. */
1291 static int ptlrpc_server_hpreq_check(struct ptlrpc_request *req)
1292 {
1293         int opc, rc = 0;
1294         ENTRY;
1295
1296         /* Check by request opc. */
1297         opc = lustre_msg_get_opc(req->rq_reqmsg);
1298         if (opc == OBD_PING)
1299                 RETURN(1);
1300
1301         /* Perform request specific check. */
1302         if (req->rq_ops && req->rq_ops->hpreq_check)
1303                 rc = req->rq_ops->hpreq_check(req);
1304         RETURN(rc);
1305 }
1306
1307 /** Check if a request is a high priority one. */
1308 static int ptlrpc_server_request_add(struct ptlrpc_service *svc,
1309                                      struct ptlrpc_request *req)
1310 {
1311         int rc;
1312         ENTRY;
1313
1314         rc = ptlrpc_server_hpreq_check(req);
1315         if (rc < 0)
1316                 RETURN(rc);
1317
1318         cfs_spin_lock(&svc->srv_rq_lock);
1319
1320         if (rc)
1321                 ptlrpc_hpreq_reorder_nolock(svc, req);
1322         else
1323                 cfs_list_add_tail(&req->rq_list,
1324                                   &svc->srv_request_queue);
1325
1326         cfs_spin_unlock(&svc->srv_rq_lock);
1327
1328         RETURN(0);
1329 }
1330
1331 /**
1332  * Allow to handle high priority request
1333  * User can call it w/o any lock but need to hold ptlrpc_service::srv_rq_lock
1334  * to get reliable result
1335  */
1336 static int ptlrpc_server_allow_high(struct ptlrpc_service *svc, int force)
1337 {
1338         if (force)
1339                 return 1;
1340
1341         if (svc->srv_n_active_reqs >= svc->srv_threads_running - 1)
1342                 return 0;
1343
1344         return cfs_list_empty(&svc->srv_request_queue) ||
1345                svc->srv_hpreq_count < svc->srv_hpreq_ratio;
1346 }
1347
1348 static int ptlrpc_server_high_pending(struct ptlrpc_service *svc, int force)
1349 {
1350         return ptlrpc_server_allow_high(svc, force) &&
1351                !cfs_list_empty(&svc->srv_request_hpq);
1352 }
1353
1354 /**
1355  * Only allow normal priority requests on a service that has a high-priority
1356  * queue if forced (i.e. cleanup), if there are other high priority requests
1357  * already being processed (i.e. those threads can service more high-priority
1358  * requests), or if there are enough idle threads that a later thread can do
1359  * a high priority request.
1360  * User can call it w/o any lock but need to hold ptlrpc_service::srv_rq_lock
1361  * to get reliable result
1362  */
1363 static int ptlrpc_server_allow_normal(struct ptlrpc_service *svc, int force)
1364 {
1365 #ifndef __KERNEL__
1366         if (1) /* always allow to handle normal request for liblustre */
1367                 return 1;
1368 #endif
1369         if (force ||
1370             svc->srv_n_active_reqs < svc->srv_threads_running - 2)
1371                 return 1;
1372
1373         if (svc->srv_n_active_reqs >= svc->srv_threads_running - 1)
1374                 return 0;
1375
1376         return svc->srv_n_active_hpreq > 0 || svc->srv_hpreq_handler == NULL;
1377 }
1378
1379 static int ptlrpc_server_normal_pending(struct ptlrpc_service *svc, int force)
1380 {
1381         return ptlrpc_server_allow_normal(svc, force) &&
1382                !cfs_list_empty(&svc->srv_request_queue);
1383 }
1384
1385 /**
1386  * Returns true if there are requests available in incoming
1387  * request queue for processing and it is allowed to fetch them.
1388  * User can call it w/o any lock but need to hold ptlrpc_service::srv_rq_lock
1389  * to get reliable result
1390  * \see ptlrpc_server_allow_normal
1391  * \see ptlrpc_server_allow high
1392  */
1393 static inline int
1394 ptlrpc_server_request_pending(struct ptlrpc_service *svc, int force)
1395 {
1396         return ptlrpc_server_high_pending(svc, force) ||
1397                ptlrpc_server_normal_pending(svc, force);
1398 }
1399
1400 /**
1401  * Fetch a request for processing from queue of unprocessed requests.
1402  * Favors high-priority requests.
1403  * Returns a pointer to fetched request.
1404  */
1405 static struct ptlrpc_request *
1406 ptlrpc_server_request_get(struct ptlrpc_service *svc, int force)
1407 {
1408         struct ptlrpc_request *req;
1409         ENTRY;
1410
1411         if (ptlrpc_server_high_pending(svc, force)) {
1412                 req = cfs_list_entry(svc->srv_request_hpq.next,
1413                                      struct ptlrpc_request, rq_list);
1414                 svc->srv_hpreq_count++;
1415                 RETURN(req);
1416
1417         }
1418
1419         if (ptlrpc_server_normal_pending(svc, force)) {
1420                 req = cfs_list_entry(svc->srv_request_queue.next,
1421                                      struct ptlrpc_request, rq_list);
1422                 svc->srv_hpreq_count = 0;
1423                 RETURN(req);
1424         }
1425         RETURN(NULL);
1426 }
1427
1428 /**
1429  * Handle freshly incoming reqs, add to timed early reply list,
1430  * pass on to regular request queue.
1431  * All incoming requests pass through here before getting into
1432  * ptlrpc_server_handle_req later on.
1433  */
1434 static int
1435 ptlrpc_server_handle_req_in(struct ptlrpc_service *svc)
1436 {
1437         struct ptlrpc_request *req;
1438         __u32                  deadline;
1439         int                    rc;
1440         ENTRY;
1441
1442         LASSERT(svc);
1443
1444         cfs_spin_lock(&svc->srv_lock);
1445         if (cfs_list_empty(&svc->srv_req_in_queue)) {
1446                 cfs_spin_unlock(&svc->srv_lock);
1447                 RETURN(0);
1448         }
1449
1450         req = cfs_list_entry(svc->srv_req_in_queue.next,
1451                              struct ptlrpc_request, rq_list);
1452         cfs_list_del_init (&req->rq_list);
1453         svc->srv_n_queued_reqs--;
1454         /* Consider this still a "queued" request as far as stats are
1455            concerned */
1456         cfs_spin_unlock(&svc->srv_lock);
1457
1458         /* go through security check/transform */
1459         rc = sptlrpc_svc_unwrap_request(req);
1460         switch (rc) {
1461         case SECSVC_OK:
1462                 break;
1463         case SECSVC_COMPLETE:
1464                 target_send_reply(req, 0, OBD_FAIL_MDS_ALL_REPLY_NET);
1465                 goto err_req;
1466         case SECSVC_DROP:
1467                 goto err_req;
1468         default:
1469                 LBUG();
1470         }
1471
1472         /*
1473          * for null-flavored rpc, msg has been unpacked by sptlrpc, although
1474          * redo it wouldn't be harmful.
1475          */
1476         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
1477                 rc = ptlrpc_unpack_req_msg(req, req->rq_reqlen);
1478                 if (rc != 0) {
1479                         CERROR("error unpacking request: ptl %d from %s "
1480                                "x"LPU64"\n", svc->srv_req_portal,
1481                                libcfs_id2str(req->rq_peer), req->rq_xid);
1482                         goto err_req;
1483                 }
1484         }
1485
1486         rc = lustre_unpack_req_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
1487         if (rc) {
1488                 CERROR ("error unpacking ptlrpc body: ptl %d from %s x"
1489                         LPU64"\n", svc->srv_req_portal,
1490                         libcfs_id2str(req->rq_peer), req->rq_xid);
1491                 goto err_req;
1492         }
1493
1494         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DROP_REQ_OPC) &&
1495             lustre_msg_get_opc(req->rq_reqmsg) == cfs_fail_val) {
1496                 CERROR("drop incoming rpc opc %u, x"LPU64"\n",
1497                        cfs_fail_val, req->rq_xid);
1498                 goto err_req;
1499         }
1500
1501         rc = -EINVAL;
1502         if (lustre_msg_get_type(req->rq_reqmsg) != PTL_RPC_MSG_REQUEST) {
1503                 CERROR("wrong packet type received (type=%u) from %s\n",
1504                        lustre_msg_get_type(req->rq_reqmsg),
1505                        libcfs_id2str(req->rq_peer));
1506                 goto err_req;
1507         }
1508
1509         switch(lustre_msg_get_opc(req->rq_reqmsg)) {
1510         case MDS_WRITEPAGE:
1511         case OST_WRITE:
1512                 req->rq_bulk_write = 1;
1513                 break;
1514         case MDS_READPAGE:
1515         case OST_READ:
1516         case MGS_CONFIG_READ:
1517                 req->rq_bulk_read = 1;
1518                 break;
1519         }
1520
1521         CDEBUG(D_NET, "got req "LPU64"\n", req->rq_xid);
1522
1523         req->rq_export = class_conn2export(
1524                 lustre_msg_get_handle(req->rq_reqmsg));
1525         if (req->rq_export) {
1526                 rc = ptlrpc_check_req(req);
1527                 if (rc == 0) {
1528                         rc = sptlrpc_target_export_check(req->rq_export, req);
1529                         if (rc)
1530                                 DEBUG_REQ(D_ERROR, req, "DROPPING req with "
1531                                           "illegal security flavor,");
1532                 }
1533
1534                 if (rc)
1535                         goto err_req;
1536                 ptlrpc_update_export_timer(req->rq_export, 0);
1537         }
1538
1539         /* req_in handling should/must be fast */
1540         if (cfs_time_current_sec() - req->rq_arrival_time.tv_sec > 5)
1541                 DEBUG_REQ(D_WARNING, req, "Slow req_in handling "CFS_DURATION_T"s",
1542                           cfs_time_sub(cfs_time_current_sec(),
1543                                        req->rq_arrival_time.tv_sec));
1544
1545         /* Set rpc server deadline and add it to the timed list */
1546         deadline = (lustre_msghdr_get_flags(req->rq_reqmsg) &
1547                     MSGHDR_AT_SUPPORT) ?
1548                    /* The max time the client expects us to take */
1549                    lustre_msg_get_timeout(req->rq_reqmsg) : obd_timeout;
1550         req->rq_deadline = req->rq_arrival_time.tv_sec + deadline;
1551         if (unlikely(deadline == 0)) {
1552                 DEBUG_REQ(D_ERROR, req, "Dropping request with 0 timeout");
1553                 goto err_req;
1554         }
1555
1556         ptlrpc_at_add_timed(req);
1557         rc = ptlrpc_hpreq_init(svc, req);
1558         if (rc)
1559                 GOTO(err_req, rc);
1560
1561         /* Move it over to the request processing queue */
1562         rc = ptlrpc_server_request_add(svc, req);
1563         if (rc) {
1564                 ptlrpc_hpreq_fini(req);
1565                 GOTO(err_req, rc);
1566         }
1567         cfs_waitq_signal(&svc->srv_waitq);
1568         RETURN(1);
1569
1570 err_req:
1571         cfs_spin_lock(&svc->srv_rq_lock);
1572         svc->srv_n_active_reqs++;
1573         cfs_spin_unlock(&svc->srv_rq_lock);
1574         ptlrpc_server_finish_request(svc, req);
1575
1576         RETURN(1);
1577 }
1578
1579 /**
1580  * Main incoming request handling logic.
1581  * Calls handler function from service to do actual processing.
1582  */
1583 static int
1584 ptlrpc_server_handle_request(struct ptlrpc_service *svc,
1585                              struct ptlrpc_thread *thread)
1586 {
1587         struct obd_export     *export = NULL;
1588         struct ptlrpc_request *request;
1589         struct timeval         work_start;
1590         struct timeval         work_end;
1591         long                   timediff;
1592         int                    rc;
1593         int                    fail_opc = 0;
1594         ENTRY;
1595
1596         LASSERT(svc);
1597
1598         cfs_spin_lock(&svc->srv_rq_lock);
1599 #ifndef __KERNEL__
1600         /* !@%$# liblustre only has 1 thread */
1601         if (cfs_atomic_read(&svc->srv_n_difficult_replies) != 0) {
1602                 cfs_spin_unlock(&svc->srv_rq_lock);
1603                 RETURN(0);
1604         }
1605 #endif
1606         request = ptlrpc_server_request_get(svc, 0);
1607         if  (request == NULL) {
1608                 cfs_spin_unlock(&svc->srv_rq_lock);
1609                 RETURN(0);
1610         }
1611
1612         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT))
1613                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT;
1614         else if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_TIMEOUT))
1615                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_TIMEOUT;
1616
1617         if (unlikely(fail_opc)) {
1618                 if (request->rq_export && request->rq_ops) {
1619                         cfs_spin_unlock(&svc->srv_rq_lock);
1620                         OBD_FAIL_TIMEOUT(fail_opc, 4);
1621                         cfs_spin_lock(&svc->srv_rq_lock);
1622                         request = ptlrpc_server_request_get(svc, 0);
1623                         if  (request == NULL) {
1624                                 cfs_spin_unlock(&svc->srv_rq_lock);
1625                                 RETURN(0);
1626                         }
1627                 }
1628         }
1629
1630         cfs_list_del_init(&request->rq_list);
1631         svc->srv_n_active_reqs++;
1632         if (request->rq_hp)
1633                 svc->srv_n_active_hpreq++;
1634
1635         cfs_spin_unlock(&svc->srv_rq_lock);
1636
1637         ptlrpc_rqphase_move(request, RQ_PHASE_INTERPRET);
1638         ptlrpc_hpreq_fini(request);
1639
1640         if(OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DUMP_LOG))
1641                 libcfs_debug_dumplog();
1642
1643         cfs_gettimeofday(&work_start);
1644         timediff = cfs_timeval_sub(&work_start, &request->rq_arrival_time,NULL);
1645         if (likely(svc->srv_stats != NULL)) {
1646                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQWAIT_CNTR,
1647                                     timediff);
1648                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQQDEPTH_CNTR,
1649                                     svc->srv_n_queued_reqs);
1650                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQACTIVE_CNTR,
1651                                     svc->srv_n_active_reqs);
1652                 lprocfs_counter_add(svc->srv_stats, PTLRPC_TIMEOUT,
1653                                     at_get(&svc->srv_at_estimate));
1654         }
1655
1656         rc = lu_context_init(&request->rq_session,
1657                              LCT_SESSION|LCT_REMEMBER|LCT_NOREF);
1658         if (rc) {
1659                 CERROR("Failure to initialize session: %d\n", rc);
1660                 goto out_req;
1661         }
1662         request->rq_session.lc_thread = thread;
1663         request->rq_session.lc_cookie = 0x5;
1664         lu_context_enter(&request->rq_session);
1665
1666         CDEBUG(D_NET, "got req "LPU64"\n", request->rq_xid);
1667
1668         request->rq_svc_thread = thread;
1669         if (thread)
1670                 request->rq_svc_thread->t_env->le_ses = &request->rq_session;
1671
1672         if (likely(request->rq_export)) {
1673                 if (unlikely(ptlrpc_check_req(request)))
1674                         goto put_conn;
1675                 ptlrpc_update_export_timer(request->rq_export, timediff >> 19);
1676                 export = class_export_rpc_get(request->rq_export);
1677         }
1678
1679         /* Discard requests queued for longer than the deadline.
1680            The deadline is increased if we send an early reply. */
1681         if (cfs_time_current_sec() > request->rq_deadline) {
1682                 DEBUG_REQ(D_ERROR, request, "Dropping timed-out request from %s"
1683                           ": deadline "CFS_DURATION_T":"CFS_DURATION_T"s ago\n",
1684                           libcfs_id2str(request->rq_peer),
1685                           cfs_time_sub(request->rq_deadline,
1686                           request->rq_arrival_time.tv_sec),
1687                           cfs_time_sub(cfs_time_current_sec(),
1688                           request->rq_deadline));
1689                 goto put_rpc_export;
1690         }
1691
1692         CDEBUG(D_RPCTRACE, "Handling RPC pname:cluuid+ref:pid:xid:nid:opc "
1693                "%s:%s+%d:%d:x"LPU64":%s:%d\n", cfs_curproc_comm(),
1694                (request->rq_export ?
1695                 (char *)request->rq_export->exp_client_uuid.uuid : "0"),
1696                (request->rq_export ?
1697                 cfs_atomic_read(&request->rq_export->exp_refcount) : -99),
1698                lustre_msg_get_status(request->rq_reqmsg), request->rq_xid,
1699                libcfs_id2str(request->rq_peer),
1700                lustre_msg_get_opc(request->rq_reqmsg));
1701
1702         if (lustre_msg_get_opc(request->rq_reqmsg) != OBD_PING)
1703                 CFS_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_PAUSE_REQ, cfs_fail_val);
1704
1705         rc = svc->srv_handler(request);
1706
1707         ptlrpc_rqphase_move(request, RQ_PHASE_COMPLETE);
1708
1709 put_rpc_export:
1710         if (export != NULL)
1711                 class_export_rpc_put(export);
1712 put_conn:
1713         lu_context_exit(&request->rq_session);
1714         lu_context_fini(&request->rq_session);
1715
1716         if (unlikely(cfs_time_current_sec() > request->rq_deadline)) {
1717                 DEBUG_REQ(D_WARNING, request, "Request x"LPU64" took longer "
1718                           "than estimated ("CFS_DURATION_T":"CFS_DURATION_T"s);"
1719                           " client may timeout.",
1720                           request->rq_xid, cfs_time_sub(request->rq_deadline,
1721                           request->rq_arrival_time.tv_sec),
1722                           cfs_time_sub(cfs_time_current_sec(),
1723                           request->rq_deadline));
1724         }
1725
1726         cfs_gettimeofday(&work_end);
1727         timediff = cfs_timeval_sub(&work_end, &work_start, NULL);
1728         CDEBUG(D_RPCTRACE, "Handled RPC pname:cluuid+ref:pid:xid:nid:opc "
1729                "%s:%s+%d:%d:x"LPU64":%s:%d Request procesed in "
1730                "%ldus (%ldus total) trans "LPU64" rc %d/%d\n",
1731                 cfs_curproc_comm(),
1732                 (request->rq_export ?
1733                  (char *)request->rq_export->exp_client_uuid.uuid : "0"),
1734                 (request->rq_export ?
1735                  cfs_atomic_read(&request->rq_export->exp_refcount) : -99),
1736                 lustre_msg_get_status(request->rq_reqmsg),
1737                 request->rq_xid,
1738                 libcfs_id2str(request->rq_peer),
1739                 lustre_msg_get_opc(request->rq_reqmsg),
1740                 timediff,
1741                 cfs_timeval_sub(&work_end, &request->rq_arrival_time, NULL),
1742                 (request->rq_repmsg ?
1743                  lustre_msg_get_transno(request->rq_repmsg) :
1744                  request->rq_transno),
1745                 request->rq_status,
1746                 (request->rq_repmsg ?
1747                  lustre_msg_get_status(request->rq_repmsg) : -999));
1748         if (likely(svc->srv_stats != NULL && request->rq_reqmsg != NULL)) {
1749                 __u32 op = lustre_msg_get_opc(request->rq_reqmsg);
1750                 int opc = opcode_offset(op);
1751                 if (opc > 0 && !(op == LDLM_ENQUEUE || op == MDS_REINT)) {
1752                         LASSERT(opc < LUSTRE_MAX_OPCODES);
1753                         lprocfs_counter_add(svc->srv_stats,
1754                                             opc + EXTRA_MAX_OPCODES,
1755                                             timediff);
1756                 }
1757         }
1758         if (unlikely(request->rq_early_count)) {
1759                 DEBUG_REQ(D_ADAPTTO, request,
1760                           "sent %d early replies before finishing in "
1761                           CFS_DURATION_T"s",
1762                           request->rq_early_count,
1763                           cfs_time_sub(work_end.tv_sec,
1764                           request->rq_arrival_time.tv_sec));
1765         }
1766
1767 out_req:
1768         ptlrpc_server_finish_request(svc, request);
1769
1770         RETURN(1);
1771 }
1772
1773 /**
1774  * An internal function to process a single reply state object.
1775  */
1776 static int
1777 ptlrpc_handle_rs (struct ptlrpc_reply_state *rs)
1778 {
1779         struct ptlrpc_service     *svc = rs->rs_service;
1780         struct obd_export         *exp;
1781         int                        nlocks;
1782         int                        been_handled;
1783         ENTRY;
1784
1785         exp = rs->rs_export;
1786
1787         LASSERT (rs->rs_difficult);
1788         LASSERT (rs->rs_scheduled);
1789         LASSERT (cfs_list_empty(&rs->rs_list));
1790
1791         cfs_spin_lock (&exp->exp_lock);
1792         /* Noop if removed already */
1793         cfs_list_del_init (&rs->rs_exp_list);
1794         cfs_spin_unlock (&exp->exp_lock);
1795
1796         /* The disk commit callback holds exp_uncommitted_replies_lock while it
1797          * iterates over newly committed replies, removing them from
1798          * exp_uncommitted_replies.  It then drops this lock and schedules the
1799          * replies it found for handling here.
1800          *
1801          * We can avoid contention for exp_uncommitted_replies_lock between the
1802          * HRT threads and further commit callbacks by checking rs_committed
1803          * which is set in the commit callback while it holds both
1804          * rs_lock and exp_uncommitted_reples.
1805          *
1806          * If we see rs_committed clear, the commit callback _may_ not have
1807          * handled this reply yet and we race with it to grab
1808          * exp_uncommitted_replies_lock before removing the reply from
1809          * exp_uncommitted_replies.  Note that if we lose the race and the
1810          * reply has already been removed, list_del_init() is a noop.
1811          *
1812          * If we see rs_committed set, we know the commit callback is handling,
1813          * or has handled this reply since store reordering might allow us to
1814          * see rs_committed set out of sequence.  But since this is done
1815          * holding rs_lock, we can be sure it has all completed once we hold
1816          * rs_lock, which we do right next.
1817          */
1818         if (!rs->rs_committed) {
1819                 cfs_spin_lock(&exp->exp_uncommitted_replies_lock);
1820                 cfs_list_del_init(&rs->rs_obd_list);
1821                 cfs_spin_unlock(&exp->exp_uncommitted_replies_lock);
1822         }
1823
1824         cfs_spin_lock(&rs->rs_lock);
1825
1826         been_handled = rs->rs_handled;
1827         rs->rs_handled = 1;
1828
1829         nlocks = rs->rs_nlocks;                 /* atomic "steal", but */
1830         rs->rs_nlocks = 0;                      /* locks still on rs_locks! */
1831
1832         if (nlocks == 0 && !been_handled) {
1833                 /* If we see this, we should already have seen the warning
1834                  * in mds_steal_ack_locks()  */
1835                 CWARN("All locks stolen from rs %p x"LPD64".t"LPD64
1836                       " o%d NID %s\n",
1837                       rs,
1838                       rs->rs_xid, rs->rs_transno, rs->rs_opc,
1839                       libcfs_nid2str(exp->exp_connection->c_peer.nid));
1840         }
1841
1842         if ((!been_handled && rs->rs_on_net) || nlocks > 0) {
1843                 cfs_spin_unlock(&rs->rs_lock);
1844
1845                 if (!been_handled && rs->rs_on_net) {
1846                         LNetMDUnlink(rs->rs_md_h);
1847                         /* Ignore return code; we're racing with
1848                          * completion... */
1849                 }
1850
1851                 while (nlocks-- > 0)
1852                         ldlm_lock_decref(&rs->rs_locks[nlocks],
1853                                          rs->rs_modes[nlocks]);
1854
1855                 cfs_spin_lock(&rs->rs_lock);
1856         }
1857
1858         rs->rs_scheduled = 0;
1859
1860         if (!rs->rs_on_net) {
1861                 /* Off the net */
1862                 cfs_spin_unlock(&rs->rs_lock);
1863
1864                 class_export_put (exp);
1865                 rs->rs_export = NULL;
1866                 ptlrpc_rs_decref (rs);
1867                 if (cfs_atomic_dec_and_test(&svc->srv_n_difficult_replies) &&
1868                     svc->srv_is_stopping)
1869                         cfs_waitq_broadcast(&svc->srv_waitq);
1870                 RETURN(1);
1871         }
1872
1873         /* still on the net; callback will schedule */
1874         cfs_spin_unlock(&rs->rs_lock);
1875         RETURN(1);
1876 }
1877
1878 #ifndef __KERNEL__
1879
1880 /**
1881  * Check whether given service has a reply available for processing
1882  * and process it.
1883  *
1884  * \param svc a ptlrpc service
1885  * \retval 0 no replies processed
1886  * \retval 1 one reply processed
1887  */
1888 static int
1889 ptlrpc_server_handle_reply(struct ptlrpc_service *svc)
1890 {
1891         struct ptlrpc_reply_state *rs = NULL;
1892         ENTRY;
1893
1894         cfs_spin_lock(&svc->srv_rs_lock);
1895         if (!cfs_list_empty(&svc->srv_reply_queue)) {
1896                 rs = cfs_list_entry(svc->srv_reply_queue.prev,
1897                                     struct ptlrpc_reply_state,
1898                                     rs_list);
1899                 cfs_list_del_init(&rs->rs_list);
1900         }
1901         cfs_spin_unlock(&svc->srv_rs_lock);
1902         if (rs != NULL)
1903                 ptlrpc_handle_rs(rs);
1904         RETURN(rs != NULL);
1905 }
1906
1907 /* FIXME make use of timeout later */
1908 int
1909 liblustre_check_services (void *arg)
1910 {
1911         int  did_something = 0;
1912         int  rc;
1913         cfs_list_t *tmp, *nxt;
1914         ENTRY;
1915
1916         /* I'm relying on being single threaded, not to have to lock
1917          * ptlrpc_all_services etc */
1918         cfs_list_for_each_safe (tmp, nxt, &ptlrpc_all_services) {
1919                 struct ptlrpc_service *svc =
1920                         cfs_list_entry (tmp, struct ptlrpc_service, srv_list);
1921
1922                 if (svc->srv_threads_running != 0)     /* I've recursed */
1923                         continue;
1924
1925                 /* service threads can block for bulk, so this limits us
1926                  * (arbitrarily) to recursing 1 stack frame per service.
1927                  * Note that the problem with recursion is that we have to
1928                  * unwind completely before our caller can resume. */
1929
1930                 svc->srv_threads_running++;
1931
1932                 do {
1933                         rc = ptlrpc_server_handle_req_in(svc);
1934                         rc |= ptlrpc_server_handle_reply(svc);
1935                         rc |= ptlrpc_at_check_timed(svc);
1936                         rc |= ptlrpc_server_handle_request(svc, NULL);
1937                         rc |= (ptlrpc_server_post_idle_rqbds(svc) > 0);
1938                         did_something |= rc;
1939                 } while (rc);
1940
1941                 svc->srv_threads_running--;
1942         }
1943
1944         RETURN(did_something);
1945 }
1946 #define ptlrpc_stop_all_threads(s) do {} while (0)
1947
1948 #else /* __KERNEL__ */
1949
1950 static void
1951 ptlrpc_check_rqbd_pool(struct ptlrpc_service *svc)
1952 {
1953         int avail = svc->srv_nrqbd_receiving;
1954         int low_water = test_req_buffer_pressure ? 0 :
1955                         svc->srv_nbuf_per_group/2;
1956
1957         /* NB I'm not locking; just looking. */
1958
1959         /* CAVEAT EMPTOR: We might be allocating buffers here because we've
1960          * allowed the request history to grow out of control.  We could put a
1961          * sanity check on that here and cull some history if we need the
1962          * space. */
1963
1964         if (avail <= low_water)
1965                 ptlrpc_grow_req_bufs(svc);
1966
1967         if (svc->srv_stats)
1968                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQBUF_AVAIL_CNTR,
1969                                     avail);
1970 }
1971
1972 static int
1973 ptlrpc_retry_rqbds(void *arg)
1974 {
1975         struct ptlrpc_service *svc = (struct ptlrpc_service *)arg;
1976
1977         svc->srv_rqbd_timeout = 0;
1978         return (-ETIMEDOUT);
1979 }
1980
1981 static inline int
1982 ptlrpc_threads_enough(struct ptlrpc_service *svc)
1983 {
1984         return svc->srv_n_active_reqs <
1985                svc->srv_threads_running - 1 - (svc->srv_hpreq_handler != NULL);
1986 }
1987
1988 /**
1989  * allowed to create more threads
1990  * user can call it w/o any lock but need to hold ptlrpc_service::srv_lock to
1991  * get reliable result
1992  */
1993 static inline int
1994 ptlrpc_threads_increasable(struct ptlrpc_service *svc)
1995 {
1996         return svc->srv_threads_running +
1997                svc->srv_threads_starting < svc->srv_threads_max;
1998 }
1999
2000 /**
2001  * too many requests and allowed to create more threads
2002  */
2003 static inline int
2004 ptlrpc_threads_need_create(struct ptlrpc_service *svc)
2005 {
2006         return !ptlrpc_threads_enough(svc) && ptlrpc_threads_increasable(svc);
2007 }
2008
2009 static inline int
2010 ptlrpc_thread_stopping(struct ptlrpc_thread *thread)
2011 {
2012         return thread_is_stopping(thread) ||
2013                thread->t_svc->srv_is_stopping;
2014 }
2015
2016 static inline int
2017 ptlrpc_rqbd_pending(struct ptlrpc_service *svc)
2018 {
2019         return !cfs_list_empty(&svc->srv_idle_rqbds) &&
2020                svc->srv_rqbd_timeout == 0;
2021 }
2022
2023 static inline int
2024 ptlrpc_at_check(struct ptlrpc_service *svc)
2025 {
2026         return svc->srv_at_check;
2027 }
2028
2029 /**
2030  * requests wait on preprocessing
2031  * user can call it w/o any lock but need to hold ptlrpc_service::srv_lock to
2032  * get reliable result
2033  */
2034 static inline int
2035 ptlrpc_server_request_waiting(struct ptlrpc_service *svc)
2036 {
2037         return !cfs_list_empty(&svc->srv_req_in_queue);
2038 }
2039
2040 static __attribute__((__noinline__)) int
2041 ptlrpc_wait_event(struct ptlrpc_service *svc,
2042                   struct ptlrpc_thread *thread)
2043 {
2044         /* Don't exit while there are replies to be handled */
2045         struct l_wait_info lwi = LWI_TIMEOUT(svc->srv_rqbd_timeout,
2046                                              ptlrpc_retry_rqbds, svc);
2047
2048         lc_watchdog_disable(thread->t_watchdog);
2049
2050         cfs_cond_resched();
2051
2052         l_wait_event_exclusive_head(svc->srv_waitq,
2053                                ptlrpc_thread_stopping(thread) ||
2054                                ptlrpc_server_request_waiting(svc) ||
2055                                ptlrpc_server_request_pending(svc, 0) ||
2056                                ptlrpc_rqbd_pending(svc) ||
2057                                ptlrpc_at_check(svc), &lwi);
2058
2059         if (ptlrpc_thread_stopping(thread))
2060                 return -EINTR;
2061
2062         lc_watchdog_touch(thread->t_watchdog, CFS_GET_TIMEOUT(svc));
2063
2064         return 0;
2065 }
2066
2067 /**
2068  * Main thread body for service threads.
2069  * Waits in a loop waiting for new requests to process to appear.
2070  * Every time an incoming requests is added to its queue, a waitq
2071  * is woken up and one of the threads will handle it.
2072  */
2073 static int ptlrpc_main(void *arg)
2074 {
2075         struct ptlrpc_svc_data *data = (struct ptlrpc_svc_data *)arg;
2076         struct ptlrpc_service  *svc = data->svc;
2077         struct ptlrpc_thread   *thread = data->thread;
2078         struct ptlrpc_reply_state *rs;
2079 #ifdef WITH_GROUP_INFO
2080         cfs_group_info_t *ginfo = NULL;
2081 #endif
2082         struct lu_env env;
2083         int counter = 0, rc = 0;
2084         ENTRY;
2085
2086         thread->t_pid = cfs_curproc_pid();
2087         cfs_daemonize_ctxt(data->name);
2088
2089 #if defined(HAVE_NODE_TO_CPUMASK) && defined(CONFIG_NUMA)
2090         /* we need to do this before any per-thread allocation is done so that
2091          * we get the per-thread allocations on local node.  bug 7342 */
2092         if (svc->srv_cpu_affinity) {
2093                 int cpu, num_cpu;
2094
2095                 for (cpu = 0, num_cpu = 0; cpu < cfs_num_possible_cpus();
2096                      cpu++) {
2097                         if (!cfs_cpu_online(cpu))
2098                                 continue;
2099                         if (num_cpu == thread->t_id % cfs_num_online_cpus())
2100                                 break;
2101                         num_cpu++;
2102                 }
2103                 cfs_set_cpus_allowed(cfs_current(),
2104                                      node_to_cpumask(cpu_to_node(cpu)));
2105         }
2106 #endif
2107
2108 #ifdef WITH_GROUP_INFO
2109         ginfo = cfs_groups_alloc(0);
2110         if (!ginfo) {
2111                 rc = -ENOMEM;
2112                 goto out;
2113         }
2114
2115         cfs_set_current_groups(ginfo);
2116         cfs_put_group_info(ginfo);
2117 #endif
2118
2119         if (svc->srv_init != NULL) {
2120                 rc = svc->srv_init(thread);
2121                 if (rc)
2122                         goto out;
2123         }
2124
2125         rc = lu_context_init(&env.le_ctx,
2126                              svc->srv_ctx_tags|LCT_REMEMBER|LCT_NOREF);
2127         if (rc)
2128                 goto out_srv_fini;
2129
2130         thread->t_env = &env;
2131         env.le_ctx.lc_thread = thread;
2132         env.le_ctx.lc_cookie = 0x6;
2133
2134         /* Alloc reply state structure for this one */
2135         OBD_ALLOC_LARGE(rs, svc->srv_max_reply_size);
2136         if (!rs) {
2137                 rc = -ENOMEM;
2138                 goto out_srv_fini;
2139         }
2140
2141         cfs_spin_lock(&svc->srv_lock);
2142
2143         LASSERT(thread_is_starting(thread));
2144         thread_clear_flags(thread, SVC_STARTING);
2145         svc->srv_threads_starting--;
2146
2147         /* SVC_STOPPING may already be set here if someone else is trying
2148          * to stop the service while this new thread has been dynamically
2149          * forked. We still set SVC_RUNNING to let our creator know that
2150          * we are now running, however we will exit as soon as possible */
2151         thread_add_flags(thread, SVC_RUNNING);
2152         svc->srv_threads_running++;
2153         cfs_spin_unlock(&svc->srv_lock);
2154
2155         /*
2156          * wake up our creator. Note: @data is invalid after this point,
2157          * because it's allocated on ptlrpc_start_thread() stack.
2158          */
2159         cfs_waitq_signal(&thread->t_ctl_waitq);
2160
2161         thread->t_watchdog = lc_watchdog_add(CFS_GET_TIMEOUT(svc), NULL, NULL);
2162
2163         cfs_spin_lock(&svc->srv_rs_lock);
2164         cfs_list_add(&rs->rs_list, &svc->srv_free_rs_list);
2165         cfs_waitq_signal(&svc->srv_free_rs_waitq);
2166         cfs_spin_unlock(&svc->srv_rs_lock);
2167
2168         CDEBUG(D_NET, "service thread %d (#%d) started\n", thread->t_id,
2169                svc->srv_threads_running);
2170
2171         /* XXX maintain a list of all managed devices: insert here */
2172         while (!ptlrpc_thread_stopping(thread)) {
2173                 if (ptlrpc_wait_event(svc, thread))
2174                         break;
2175
2176                 ptlrpc_check_rqbd_pool(svc);
2177
2178                 if (ptlrpc_threads_need_create(svc)) {
2179                         /* Ignore return code - we tried... */
2180                         ptlrpc_start_thread(svc);
2181                 }
2182
2183                 /* Process all incoming reqs before handling any */
2184                 if (ptlrpc_server_request_waiting(svc)) {
2185                         ptlrpc_server_handle_req_in(svc);
2186                         /* but limit ourselves in case of flood */
2187                         if (counter++ < 100)
2188                                 continue;
2189                         counter = 0;
2190                 }
2191
2192                 if (ptlrpc_at_check(svc))
2193                         ptlrpc_at_check_timed(svc);
2194
2195                 if (ptlrpc_server_request_pending(svc, 0)) {
2196                         lu_context_enter(&env.le_ctx);
2197                         ptlrpc_server_handle_request(svc, thread);
2198                         lu_context_exit(&env.le_ctx);
2199                 }
2200
2201                 if (ptlrpc_rqbd_pending(svc) &&
2202                     ptlrpc_server_post_idle_rqbds(svc) < 0) {
2203                         /* I just failed to repost request buffers.
2204                          * Wait for a timeout (unless something else
2205                          * happens) before I try again */
2206                         svc->srv_rqbd_timeout = cfs_time_seconds(1)/10;
2207                         CDEBUG(D_RPCTRACE,"Posted buffers: %d\n",
2208                                svc->srv_nrqbd_receiving);
2209                 }
2210         }
2211
2212         lc_watchdog_delete(thread->t_watchdog);
2213         thread->t_watchdog = NULL;
2214
2215 out_srv_fini:
2216         /*
2217          * deconstruct service specific state created by ptlrpc_start_thread()
2218          */
2219         if (svc->srv_done != NULL)
2220                 svc->srv_done(thread);
2221
2222         lu_context_fini(&env.le_ctx);
2223 out:
2224         CDEBUG(D_RPCTRACE, "service thread [ %p : %u ] %d exiting: rc %d\n",
2225                thread, thread->t_pid, thread->t_id, rc);
2226
2227         cfs_spin_lock(&svc->srv_lock);
2228         if (thread_test_and_clear_flags(thread, SVC_STARTING))
2229                 svc->srv_threads_starting--;
2230
2231         if (thread_test_and_clear_flags(thread, SVC_RUNNING))
2232                 /* must know immediately */
2233                 svc->srv_threads_running--;
2234
2235         thread->t_id    = rc;
2236         thread_add_flags(thread, SVC_STOPPED);
2237
2238         cfs_waitq_signal(&thread->t_ctl_waitq);
2239         cfs_spin_unlock(&svc->srv_lock);
2240
2241         return rc;
2242 }
2243
2244 struct ptlrpc_hr_args {
2245         int                       thread_index;
2246         int                       cpu_index;
2247         struct ptlrpc_hr_service *hrs;
2248 };
2249
2250 static int hrt_dont_sleep(struct ptlrpc_hr_thread *t,
2251                           cfs_list_t *replies)
2252 {
2253         int result;
2254
2255         cfs_spin_lock(&t->hrt_lock);
2256         cfs_list_splice_init(&t->hrt_queue, replies);
2257         result = cfs_test_bit(HRT_STOPPING, &t->hrt_flags) ||
2258                 !cfs_list_empty(replies);
2259         cfs_spin_unlock(&t->hrt_lock);
2260         return result;
2261 }
2262
2263 /**
2264  * Main body of "handle reply" function.
2265  * It processes acked reply states
2266  */
2267 static int ptlrpc_hr_main(void *arg)
2268 {
2269         struct ptlrpc_hr_args * hr_args = arg;
2270         struct ptlrpc_hr_service *hr = hr_args->hrs;
2271         struct ptlrpc_hr_thread *t = &hr->hr_threads[hr_args->thread_index];
2272         char threadname[20];
2273         CFS_LIST_HEAD(replies);
2274
2275         snprintf(threadname, sizeof(threadname),
2276                  "ptlrpc_hr_%d", hr_args->thread_index);
2277
2278         cfs_daemonize_ctxt(threadname);
2279 #if defined(CONFIG_NUMA) && defined(HAVE_NODE_TO_CPUMASK)
2280         cfs_set_cpus_allowed(cfs_current(),
2281                              node_to_cpumask(cpu_to_node(hr_args->cpu_index)));
2282 #endif
2283         cfs_set_bit(HRT_RUNNING, &t->hrt_flags);
2284         cfs_waitq_signal(&t->hrt_wait);
2285
2286         while (!cfs_test_bit(HRT_STOPPING, &t->hrt_flags)) {
2287
2288                 l_wait_condition(t->hrt_wait, hrt_dont_sleep(t, &replies));
2289                 while (!cfs_list_empty(&replies)) {
2290                         struct ptlrpc_reply_state *rs;
2291
2292                         rs = cfs_list_entry(replies.prev,
2293                                             struct ptlrpc_reply_state,
2294                                             rs_list);
2295                         cfs_list_del_init(&rs->rs_list);
2296                         ptlrpc_handle_rs(rs);
2297                 }
2298         }
2299
2300         cfs_clear_bit(HRT_RUNNING, &t->hrt_flags);
2301         cfs_complete(&t->hrt_completion);
2302
2303         return 0;
2304 }
2305
2306 static int ptlrpc_start_hr_thread(struct ptlrpc_hr_service *hr, int n, int cpu)
2307 {
2308         struct ptlrpc_hr_thread *t = &hr->hr_threads[n];
2309         struct ptlrpc_hr_args args;
2310         int rc;
2311         ENTRY;
2312
2313         args.thread_index = n;
2314         args.cpu_index = cpu;
2315         args.hrs = hr;
2316
2317         rc = cfs_create_thread(ptlrpc_hr_main, (void*)&args, CFS_DAEMON_FLAGS);
2318         if (rc < 0) {
2319                 cfs_complete(&t->hrt_completion);
2320                 GOTO(out, rc);
2321         }
2322         l_wait_condition(t->hrt_wait, cfs_test_bit(HRT_RUNNING, &t->hrt_flags));
2323         RETURN(0);
2324  out:
2325         return rc;
2326 }
2327
2328 static void ptlrpc_stop_hr_thread(struct ptlrpc_hr_thread *t)
2329 {
2330         ENTRY;
2331
2332         cfs_set_bit(HRT_STOPPING, &t->hrt_flags);
2333         cfs_waitq_signal(&t->hrt_wait);
2334         cfs_wait_for_completion(&t->hrt_completion);
2335
2336         EXIT;
2337 }
2338
2339 static void ptlrpc_stop_hr_threads(struct ptlrpc_hr_service *hrs)
2340 {
2341         int n;
2342         ENTRY;
2343
2344         for (n = 0; n < hrs->hr_n_threads; n++)
2345                 ptlrpc_stop_hr_thread(&hrs->hr_threads[n]);
2346
2347         EXIT;
2348 }
2349
2350 static int ptlrpc_start_hr_threads(struct ptlrpc_hr_service *hr)
2351 {
2352         int rc = -ENOMEM;
2353         int n, cpu, threads_started = 0;
2354         ENTRY;
2355
2356         LASSERT(hr != NULL);
2357         LASSERT(hr->hr_n_threads > 0);
2358
2359         for (n = 0, cpu = 0; n < hr->hr_n_threads; n++) {
2360 #if defined(CONFIG_SMP) && defined(HAVE_NODE_TO_CPUMASK)
2361                 while(!cfs_cpu_online(cpu)) {
2362                         cpu++;
2363                         if (cpu >= cfs_num_possible_cpus())
2364                                 cpu = 0;
2365                 }
2366 #endif
2367                 rc = ptlrpc_start_hr_thread(hr, n, cpu);
2368                 if (rc != 0)
2369                         break;
2370                 threads_started++;
2371                 cpu++;
2372         }
2373         if (threads_started == 0) {
2374                 CERROR("No reply handling threads started\n");
2375                 RETURN(-ESRCH);
2376         }
2377         if (threads_started < hr->hr_n_threads) {
2378                 CWARN("Started only %d reply handling threads from %d\n",
2379                       threads_started, hr->hr_n_threads);
2380                 hr->hr_n_threads = threads_started;
2381         }
2382         RETURN(0);
2383 }
2384
2385 static void ptlrpc_stop_thread(struct ptlrpc_service *svc,
2386                                struct ptlrpc_thread *thread)
2387 {
2388         struct l_wait_info lwi = { 0 };
2389         ENTRY;
2390
2391         CDEBUG(D_RPCTRACE, "Stopping thread [ %p : %u ]\n",
2392                thread, thread->t_pid);
2393
2394         cfs_spin_lock(&svc->srv_lock);
2395         /* let the thread know that we would like it to stop asap */
2396         thread_add_flags(thread, SVC_STOPPING);
2397         cfs_spin_unlock(&svc->srv_lock);
2398
2399         cfs_waitq_broadcast(&svc->srv_waitq);
2400         l_wait_event(thread->t_ctl_waitq,
2401                      thread_is_stopped(thread), &lwi);
2402
2403         cfs_spin_lock(&svc->srv_lock);
2404         cfs_list_del(&thread->t_link);
2405         cfs_spin_unlock(&svc->srv_lock);
2406
2407         OBD_FREE_PTR(thread);
2408         EXIT;
2409 }
2410
2411 /**
2412  * Stops all threads of a particular service \a svc
2413  */
2414 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc)
2415 {
2416         struct ptlrpc_thread *thread;
2417         ENTRY;
2418
2419         cfs_spin_lock(&svc->srv_lock);
2420         while (!cfs_list_empty(&svc->srv_threads)) {
2421                 thread = cfs_list_entry(svc->srv_threads.next,
2422                                         struct ptlrpc_thread, t_link);
2423
2424                 cfs_spin_unlock(&svc->srv_lock);
2425                 ptlrpc_stop_thread(svc, thread);
2426                 cfs_spin_lock(&svc->srv_lock);
2427         }
2428
2429         cfs_spin_unlock(&svc->srv_lock);
2430         EXIT;
2431 }
2432
2433 int ptlrpc_start_threads(struct ptlrpc_service *svc)
2434 {
2435         int i, rc = 0;
2436         ENTRY;
2437
2438         /* We require 2 threads min - see note in
2439            ptlrpc_server_handle_request */
2440         LASSERT(svc->srv_threads_min >= 2);
2441         for (i = 0; i < svc->srv_threads_min; i++) {
2442                 rc = ptlrpc_start_thread(svc);
2443                 /* We have enough threads, don't start more.  b=15759 */
2444                 if (rc == -EMFILE) {
2445                         rc = 0;
2446                         break;
2447                 }
2448                 if (rc) {
2449                         CERROR("cannot start %s thread #%d: rc %d\n",
2450                                svc->srv_thread_name, i, rc);
2451                         ptlrpc_stop_all_threads(svc);
2452                         break;
2453                 }
2454         }
2455         RETURN(rc);
2456 }
2457
2458 int ptlrpc_start_thread(struct ptlrpc_service *svc)
2459 {
2460         struct l_wait_info lwi = { 0 };
2461         struct ptlrpc_svc_data d;
2462         struct ptlrpc_thread *thread;
2463         char name[32];
2464         int rc;
2465         ENTRY;
2466
2467         CDEBUG(D_RPCTRACE, "%s started %d min %d max %d running %d\n",
2468                svc->srv_name, svc->srv_threads_running, svc->srv_threads_min,
2469                svc->srv_threads_max, svc->srv_threads_running);
2470
2471         if (unlikely(svc->srv_is_stopping))
2472                 RETURN(-ESRCH);
2473
2474         if (!ptlrpc_threads_increasable(svc) ||
2475             (OBD_FAIL_CHECK(OBD_FAIL_TGT_TOOMANY_THREADS) &&
2476              svc->srv_threads_running == svc->srv_threads_min - 1))
2477                 RETURN(-EMFILE);
2478
2479         OBD_ALLOC_PTR(thread);
2480         if (thread == NULL)
2481                 RETURN(-ENOMEM);
2482         cfs_waitq_init(&thread->t_ctl_waitq);
2483
2484         cfs_spin_lock(&svc->srv_lock);
2485         if (!ptlrpc_threads_increasable(svc)) {
2486                 cfs_spin_unlock(&svc->srv_lock);
2487                 OBD_FREE_PTR(thread);
2488                 RETURN(-EMFILE);
2489         }
2490
2491         svc->srv_threads_starting++;
2492         thread->t_id    = svc->srv_threads_next_id++;
2493         thread_add_flags(thread, SVC_STARTING);
2494         thread->t_svc   = svc;
2495
2496         cfs_list_add(&thread->t_link, &svc->srv_threads);
2497         cfs_spin_unlock(&svc->srv_lock);
2498
2499         sprintf(name, "%s_%02d", svc->srv_thread_name, thread->t_id);
2500         d.svc = svc;
2501         d.name = name;
2502         d.thread = thread;
2503
2504         CDEBUG(D_RPCTRACE, "starting thread '%s'\n", name);
2505
2506         /* CLONE_VM and CLONE_FILES just avoid a needless copy, because we
2507          * just drop the VM and FILES in cfs_daemonize_ctxt() right away.
2508          */
2509         rc = cfs_create_thread(ptlrpc_main, &d, CFS_DAEMON_FLAGS);
2510         if (rc < 0) {
2511                 CERROR("cannot start thread '%s': rc %d\n", name, rc);
2512
2513                 cfs_spin_lock(&svc->srv_lock);
2514                 cfs_list_del(&thread->t_link);
2515                 --svc->srv_threads_starting;
2516                 cfs_spin_unlock(&svc->srv_lock);
2517
2518                 OBD_FREE(thread, sizeof(*thread));
2519                 RETURN(rc);
2520         }
2521         l_wait_event(thread->t_ctl_waitq,
2522                      thread_is_running(thread) || thread_is_stopped(thread),
2523                      &lwi);
2524
2525         rc = thread_is_stopped(thread) ? thread->t_id : 0;
2526         RETURN(rc);
2527 }
2528
2529
2530 int ptlrpc_hr_init(void)
2531 {
2532         int i;
2533         int n_cpus = cfs_num_online_cpus();
2534         struct ptlrpc_hr_service *hr;
2535         int size;
2536         int rc;
2537         ENTRY;
2538
2539         LASSERT(ptlrpc_hr == NULL);
2540
2541         size = offsetof(struct ptlrpc_hr_service, hr_threads[n_cpus]);
2542         OBD_ALLOC(hr, size);
2543         if (hr == NULL)
2544                 RETURN(-ENOMEM);
2545         for (i = 0; i < n_cpus; i++) {
2546                 struct ptlrpc_hr_thread *t = &hr->hr_threads[i];
2547
2548                 cfs_spin_lock_init(&t->hrt_lock);
2549                 cfs_waitq_init(&t->hrt_wait);
2550                 CFS_INIT_LIST_HEAD(&t->hrt_queue);
2551                 cfs_init_completion(&t->hrt_completion);
2552         }
2553         hr->hr_n_threads = n_cpus;
2554         hr->hr_size = size;
2555         ptlrpc_hr = hr;
2556
2557         rc = ptlrpc_start_hr_threads(hr);
2558         if (rc) {
2559                 OBD_FREE(hr, hr->hr_size);
2560                 ptlrpc_hr = NULL;
2561         }
2562         RETURN(rc);
2563 }
2564
2565 void ptlrpc_hr_fini(void)
2566 {
2567         if (ptlrpc_hr != NULL) {
2568                 ptlrpc_stop_hr_threads(ptlrpc_hr);
2569                 OBD_FREE(ptlrpc_hr, ptlrpc_hr->hr_size);
2570                 ptlrpc_hr = NULL;
2571         }
2572 }
2573
2574 #endif /* __KERNEL__ */
2575
2576 /**
2577  * Wait until all already scheduled replies are processed.
2578  */
2579 static void ptlrpc_wait_replies(struct ptlrpc_service *svc)
2580 {
2581         while (1) {
2582                 int rc;
2583                 struct l_wait_info lwi = LWI_TIMEOUT(cfs_time_seconds(10),
2584                                                      NULL, NULL);
2585                 rc = l_wait_event(svc->srv_waitq, cfs_atomic_read(&svc-> \
2586                                   srv_n_difficult_replies) == 0,
2587                                   &lwi);
2588                 if (rc == 0)
2589                         break;
2590                 CWARN("Unexpectedly long timeout %p\n", svc);
2591         }
2592 }
2593
2594 int ptlrpc_unregister_service(struct ptlrpc_service *service)
2595 {
2596         int                   rc;
2597         struct l_wait_info    lwi;
2598         cfs_list_t           *tmp;
2599         struct ptlrpc_reply_state *rs, *t;
2600         struct ptlrpc_at_array *array = &service->srv_at_array;
2601         ENTRY;
2602
2603         service->srv_is_stopping = 1;
2604         cfs_timer_disarm(&service->srv_at_timer);
2605
2606         ptlrpc_stop_all_threads(service);
2607         LASSERT(cfs_list_empty(&service->srv_threads));
2608
2609         cfs_spin_lock (&ptlrpc_all_services_lock);
2610         cfs_list_del_init (&service->srv_list);
2611         cfs_spin_unlock (&ptlrpc_all_services_lock);
2612
2613         ptlrpc_lprocfs_unregister_service(service);
2614
2615         /* All history will be culled when the next request buffer is
2616          * freed */
2617         service->srv_max_history_rqbds = 0;
2618
2619         CDEBUG(D_NET, "%s: tearing down\n", service->srv_name);
2620
2621         rc = LNetClearLazyPortal(service->srv_req_portal);
2622         LASSERT (rc == 0);
2623
2624         /* Unlink all the request buffers.  This forces a 'final' event with
2625          * its 'unlink' flag set for each posted rqbd */
2626         cfs_list_for_each(tmp, &service->srv_active_rqbds) {
2627                 struct ptlrpc_request_buffer_desc *rqbd =
2628                         cfs_list_entry(tmp, struct ptlrpc_request_buffer_desc,
2629                                        rqbd_list);
2630
2631                 rc = LNetMDUnlink(rqbd->rqbd_md_h);
2632                 LASSERT (rc == 0 || rc == -ENOENT);
2633         }
2634
2635         /* Wait for the network to release any buffers it's currently
2636          * filling */
2637         for (;;) {
2638                 cfs_spin_lock(&service->srv_lock);
2639                 rc = service->srv_nrqbd_receiving;
2640                 cfs_spin_unlock(&service->srv_lock);
2641
2642                 if (rc == 0)
2643                         break;
2644
2645                 /* Network access will complete in finite time but the HUGE
2646                  * timeout lets us CWARN for visibility of sluggish NALs */
2647                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2648                                            cfs_time_seconds(1), NULL, NULL);
2649                 rc = l_wait_event(service->srv_waitq,
2650                                   service->srv_nrqbd_receiving == 0,
2651                                   &lwi);
2652                 if (rc == -ETIMEDOUT)
2653                         CWARN("Service %s waiting for request buffers\n",
2654                               service->srv_name);
2655         }
2656
2657         /* schedule all outstanding replies to terminate them */
2658         cfs_spin_lock(&service->srv_rs_lock);
2659         while (!cfs_list_empty(&service->srv_active_replies)) {
2660                 struct ptlrpc_reply_state *rs =
2661                         cfs_list_entry(service->srv_active_replies.next,
2662                                        struct ptlrpc_reply_state, rs_list);
2663                 cfs_spin_lock(&rs->rs_lock);
2664                 ptlrpc_schedule_difficult_reply(rs);
2665                 cfs_spin_unlock(&rs->rs_lock);
2666         }
2667         cfs_spin_unlock(&service->srv_rs_lock);
2668
2669         /* purge the request queue.  NB No new replies (rqbds all unlinked)
2670          * and no service threads, so I'm the only thread noodling the
2671          * request queue now */
2672         while (!cfs_list_empty(&service->srv_req_in_queue)) {
2673                 struct ptlrpc_request *req =
2674                         cfs_list_entry(service->srv_req_in_queue.next,
2675                                        struct ptlrpc_request,
2676                                        rq_list);
2677
2678                 cfs_list_del(&req->rq_list);
2679                 service->srv_n_queued_reqs--;
2680                 service->srv_n_active_reqs++;
2681                 ptlrpc_server_finish_request(service, req);
2682         }
2683         while (ptlrpc_server_request_pending(service, 1)) {
2684                 struct ptlrpc_request *req;
2685
2686                 req = ptlrpc_server_request_get(service, 1);
2687                 cfs_list_del(&req->rq_list);
2688                 service->srv_n_active_reqs++;
2689                 ptlrpc_hpreq_fini(req);
2690                 ptlrpc_server_finish_request(service, req);
2691         }
2692         LASSERT(service->srv_n_queued_reqs == 0);
2693         LASSERT(service->srv_n_active_reqs == 0);
2694         LASSERT(service->srv_n_history_rqbds == 0);
2695         LASSERT(cfs_list_empty(&service->srv_active_rqbds));
2696
2697         /* Now free all the request buffers since nothing references them
2698          * any more... */
2699         while (!cfs_list_empty(&service->srv_idle_rqbds)) {
2700                 struct ptlrpc_request_buffer_desc *rqbd =
2701                         cfs_list_entry(service->srv_idle_rqbds.next,
2702                                        struct ptlrpc_request_buffer_desc,
2703                                        rqbd_list);
2704
2705                 ptlrpc_free_rqbd(rqbd);
2706         }
2707
2708         ptlrpc_wait_replies(service);
2709
2710         cfs_list_for_each_entry_safe(rs, t, &service->srv_free_rs_list,
2711                                      rs_list) {
2712                 cfs_list_del(&rs->rs_list);
2713                 OBD_FREE_LARGE(rs, service->srv_max_reply_size);
2714         }
2715
2716         /* In case somebody rearmed this in the meantime */
2717         cfs_timer_disarm(&service->srv_at_timer);
2718
2719         if (array->paa_reqs_array != NULL) {
2720                 OBD_FREE(array->paa_reqs_array,
2721                          sizeof(cfs_list_t) * array->paa_size);
2722                 array->paa_reqs_array = NULL;
2723         }
2724
2725         if (array->paa_reqs_count != NULL) {
2726                 OBD_FREE(array->paa_reqs_count,
2727                          sizeof(__u32) * array->paa_size);
2728                 array->paa_reqs_count= NULL;
2729         }
2730
2731         OBD_FREE_PTR(service);
2732         RETURN(0);
2733 }
2734
2735 /**
2736  * Returns 0 if the service is healthy.
2737  *
2738  * Right now, it just checks to make sure that requests aren't languishing
2739  * in the queue.  We'll use this health check to govern whether a node needs
2740  * to be shot, so it's intentionally non-aggressive. */
2741 int ptlrpc_service_health_check(struct ptlrpc_service *svc)
2742 {
2743         struct ptlrpc_request *request;
2744         struct timeval         right_now;
2745         long                   timediff;
2746
2747         if (svc == NULL)
2748                 return 0;
2749
2750         cfs_gettimeofday(&right_now);
2751
2752         cfs_spin_lock(&svc->srv_rq_lock);
2753         if (!ptlrpc_server_request_pending(svc, 1)) {
2754                 cfs_spin_unlock(&svc->srv_rq_lock);
2755                 return 0;
2756         }
2757
2758         /* How long has the next entry been waiting? */
2759         if (cfs_list_empty(&svc->srv_request_queue))
2760                 request = cfs_list_entry(svc->srv_request_hpq.next,
2761                                          struct ptlrpc_request, rq_list);
2762         else
2763                 request = cfs_list_entry(svc->srv_request_queue.next,
2764                                          struct ptlrpc_request, rq_list);
2765         timediff = cfs_timeval_sub(&right_now, &request->rq_arrival_time, NULL);
2766         cfs_spin_unlock(&svc->srv_rq_lock);
2767
2768         if ((timediff / ONE_MILLION) > (AT_OFF ? obd_timeout * 3/2 :
2769                                         at_max)) {
2770                 CERROR("%s: unhealthy - request has been waiting %lds\n",
2771                        svc->srv_name, timediff / ONE_MILLION);
2772                 return (-1);
2773         }
2774
2775         return 0;
2776 }