Whamcloud - gitweb
LU-5079 ptlrpc: fix early reply timeout for recovery
[fs/lustre-release.git] / lustre / ptlrpc / service.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38 #include <obd_support.h>
39 #include <obd_class.h>
40 #include <lustre_net.h>
41 #include <lu_object.h>
42 #include <lnet/types.h>
43 #include "ptlrpc_internal.h"
44
45 /* The following are visible and mutable through /sys/module/ptlrpc */
46 int test_req_buffer_pressure = 0;
47 CFS_MODULE_PARM(test_req_buffer_pressure, "i", int, 0444,
48                 "set non-zero to put pressure on request buffer pools");
49 CFS_MODULE_PARM(at_min, "i", int, 0644,
50                 "Adaptive timeout minimum (sec)");
51 CFS_MODULE_PARM(at_max, "i", int, 0644,
52                 "Adaptive timeout maximum (sec)");
53 CFS_MODULE_PARM(at_history, "i", int, 0644,
54                 "Adaptive timeouts remember the slowest event that took place "
55                 "within this period (sec)");
56 CFS_MODULE_PARM(at_early_margin, "i", int, 0644,
57                 "How soon before an RPC deadline to send an early reply");
58 CFS_MODULE_PARM(at_extra, "i", int, 0644,
59                 "How much extra time to give with each early reply");
60
61
62 /* forward ref */
63 static int ptlrpc_server_post_idle_rqbds(struct ptlrpc_service_part *svcpt);
64 static void ptlrpc_server_hpreq_fini(struct ptlrpc_request *req);
65 static void ptlrpc_at_remove_timed(struct ptlrpc_request *req);
66
67 /** Holds a list of all PTLRPC services */
68 struct list_head ptlrpc_all_services;
69 /** Used to protect the \e ptlrpc_all_services list */
70 struct mutex ptlrpc_all_services_mutex;
71
72 struct ptlrpc_request_buffer_desc *
73 ptlrpc_alloc_rqbd(struct ptlrpc_service_part *svcpt)
74 {
75         struct ptlrpc_service             *svc = svcpt->scp_service;
76         struct ptlrpc_request_buffer_desc *rqbd;
77
78         OBD_CPT_ALLOC_PTR(rqbd, svc->srv_cptable, svcpt->scp_cpt);
79         if (rqbd == NULL)
80                 return NULL;
81
82         rqbd->rqbd_svcpt = svcpt;
83         rqbd->rqbd_refcount = 0;
84         rqbd->rqbd_cbid.cbid_fn = request_in_callback;
85         rqbd->rqbd_cbid.cbid_arg = rqbd;
86         INIT_LIST_HEAD(&rqbd->rqbd_reqs);
87         OBD_CPT_ALLOC_LARGE(rqbd->rqbd_buffer, svc->srv_cptable,
88                             svcpt->scp_cpt, svc->srv_buf_size);
89         if (rqbd->rqbd_buffer == NULL) {
90                 OBD_FREE_PTR(rqbd);
91                 return NULL;
92         }
93
94         spin_lock(&svcpt->scp_lock);
95         list_add(&rqbd->rqbd_list, &svcpt->scp_rqbd_idle);
96         svcpt->scp_nrqbds_total++;
97         spin_unlock(&svcpt->scp_lock);
98
99         return rqbd;
100 }
101
102 void
103 ptlrpc_free_rqbd(struct ptlrpc_request_buffer_desc *rqbd)
104 {
105         struct ptlrpc_service_part *svcpt = rqbd->rqbd_svcpt;
106
107         LASSERT(rqbd->rqbd_refcount == 0);
108         LASSERT(list_empty(&rqbd->rqbd_reqs));
109
110         spin_lock(&svcpt->scp_lock);
111         list_del(&rqbd->rqbd_list);
112         svcpt->scp_nrqbds_total--;
113         spin_unlock(&svcpt->scp_lock);
114
115         OBD_FREE_LARGE(rqbd->rqbd_buffer, svcpt->scp_service->srv_buf_size);
116         OBD_FREE_PTR(rqbd);
117 }
118
119 int
120 ptlrpc_grow_req_bufs(struct ptlrpc_service_part *svcpt, int post)
121 {
122         struct ptlrpc_service             *svc = svcpt->scp_service;
123         struct ptlrpc_request_buffer_desc *rqbd;
124         int                                rc = 0;
125         int                                i;
126
127         if (svcpt->scp_rqbd_allocating)
128                 goto try_post;
129
130         spin_lock(&svcpt->scp_lock);
131         /* check again with lock */
132         if (svcpt->scp_rqbd_allocating) {
133                 /* NB: we might allow more than one thread in the future */
134                 LASSERT(svcpt->scp_rqbd_allocating == 1);
135                 spin_unlock(&svcpt->scp_lock);
136                 goto try_post;
137         }
138
139         svcpt->scp_rqbd_allocating++;
140         spin_unlock(&svcpt->scp_lock);
141
142
143         for (i = 0; i < svc->srv_nbuf_per_group; i++) {
144                 /* NB: another thread might have recycled enough rqbds, we
145                  * need to make sure it wouldn't over-allocate, see LU-1212. */
146                 if (svcpt->scp_nrqbds_posted >= svc->srv_nbuf_per_group)
147                         break;
148
149                 rqbd = ptlrpc_alloc_rqbd(svcpt);
150
151                 if (rqbd == NULL) {
152                         CERROR("%s: Can't allocate request buffer\n",
153                                svc->srv_name);
154                         rc = -ENOMEM;
155                         break;
156                 }
157         }
158
159         spin_lock(&svcpt->scp_lock);
160
161         LASSERT(svcpt->scp_rqbd_allocating == 1);
162         svcpt->scp_rqbd_allocating--;
163
164         spin_unlock(&svcpt->scp_lock);
165
166         CDEBUG(D_RPCTRACE,
167                "%s: allocate %d new %d-byte reqbufs (%d/%d left), rc = %d\n",
168                svc->srv_name, i, svc->srv_buf_size, svcpt->scp_nrqbds_posted,
169                svcpt->scp_nrqbds_total, rc);
170
171  try_post:
172         if (post && rc == 0)
173                 rc = ptlrpc_server_post_idle_rqbds(svcpt);
174
175         return rc;
176 }
177
178 /**
179  * Part of Rep-Ack logic.
180  * Puts a lock and its mode into reply state assotiated to request reply.
181  */
182 void
183 ptlrpc_save_lock(struct ptlrpc_request *req,
184                  struct lustre_handle *lock, int mode, int no_ack)
185 {
186         struct ptlrpc_reply_state *rs = req->rq_reply_state;
187         int                        idx;
188
189         LASSERT(rs != NULL);
190         LASSERT(rs->rs_nlocks < RS_MAX_LOCKS);
191
192         if (req->rq_export->exp_disconnected) {
193                 ldlm_lock_decref(lock, mode);
194         } else {
195                 idx = rs->rs_nlocks++;
196                 rs->rs_locks[idx] = *lock;
197                 rs->rs_modes[idx] = mode;
198                 rs->rs_difficult = 1;
199                 rs->rs_no_ack = !!no_ack;
200         }
201 }
202 EXPORT_SYMBOL(ptlrpc_save_lock);
203
204
205 struct ptlrpc_hr_partition;
206
207 struct ptlrpc_hr_thread {
208         int                             hrt_id;         /* thread ID */
209         spinlock_t                      hrt_lock;
210         wait_queue_head_t               hrt_waitq;
211         struct list_head                        hrt_queue;      /* RS queue */
212         struct ptlrpc_hr_partition      *hrt_partition;
213 };
214
215 struct ptlrpc_hr_partition {
216         /* # of started threads */
217         atomic_t                        hrp_nstarted;
218         /* # of stopped threads */
219         atomic_t                        hrp_nstopped;
220         /* cpu partition id */
221         int                             hrp_cpt;
222         /* round-robin rotor for choosing thread */
223         int                             hrp_rotor;
224         /* total number of threads on this partition */
225         int                             hrp_nthrs;
226         /* threads table */
227         struct ptlrpc_hr_thread         *hrp_thrs;
228 };
229
230 #define HRT_RUNNING 0
231 #define HRT_STOPPING 1
232
233 struct ptlrpc_hr_service {
234         /* CPU partition table, it's just cfs_cpt_table for now */
235         struct cfs_cpt_table            *hr_cpt_table;
236         /** controller sleep waitq */
237         wait_queue_head_t               hr_waitq;
238         unsigned int                    hr_stopping;
239         /** roundrobin rotor for non-affinity service */
240         unsigned int                    hr_rotor;
241         /* partition data */
242         struct ptlrpc_hr_partition      **hr_partitions;
243 };
244
245 struct rs_batch {
246         struct list_head                        rsb_replies;
247         unsigned int                    rsb_n_replies;
248         struct ptlrpc_service_part      *rsb_svcpt;
249 };
250
251 /** reply handling service. */
252 static struct ptlrpc_hr_service         ptlrpc_hr;
253
254 /**
255  * maximum mumber of replies scheduled in one batch
256  */
257 #define MAX_SCHEDULED 256
258
259 /**
260  * Initialize a reply batch.
261  *
262  * \param b batch
263  */
264 static void rs_batch_init(struct rs_batch *b)
265 {
266         memset(b, 0, sizeof *b);
267         INIT_LIST_HEAD(&b->rsb_replies);
268 }
269
270 /**
271  * Choose an hr thread to dispatch requests to.
272  */
273 static struct ptlrpc_hr_thread *
274 ptlrpc_hr_select(struct ptlrpc_service_part *svcpt)
275 {
276         struct ptlrpc_hr_partition      *hrp;
277         unsigned int                    rotor;
278
279         if (svcpt->scp_cpt >= 0 &&
280             svcpt->scp_service->srv_cptable == ptlrpc_hr.hr_cpt_table) {
281                 /* directly match partition */
282                 hrp = ptlrpc_hr.hr_partitions[svcpt->scp_cpt];
283
284         } else {
285                 rotor = ptlrpc_hr.hr_rotor++;
286                 rotor %= cfs_cpt_number(ptlrpc_hr.hr_cpt_table);
287
288                 hrp = ptlrpc_hr.hr_partitions[rotor];
289         }
290
291         rotor = hrp->hrp_rotor++;
292         return &hrp->hrp_thrs[rotor % hrp->hrp_nthrs];
293 }
294
295 /**
296  * Dispatch all replies accumulated in the batch to one from
297  * dedicated reply handling threads.
298  *
299  * \param b batch
300  */
301 static void rs_batch_dispatch(struct rs_batch *b)
302 {
303         if (b->rsb_n_replies != 0) {
304                 struct ptlrpc_hr_thread *hrt;
305
306                 hrt = ptlrpc_hr_select(b->rsb_svcpt);
307
308                 spin_lock(&hrt->hrt_lock);
309                 list_splice_init(&b->rsb_replies, &hrt->hrt_queue);
310                 spin_unlock(&hrt->hrt_lock);
311
312                 wake_up(&hrt->hrt_waitq);
313                 b->rsb_n_replies = 0;
314         }
315 }
316
317 /**
318  * Add a reply to a batch.
319  * Add one reply object to a batch, schedule batched replies if overload.
320  *
321  * \param b batch
322  * \param rs reply
323  */
324 static void rs_batch_add(struct rs_batch *b, struct ptlrpc_reply_state *rs)
325 {
326         struct ptlrpc_service_part *svcpt = rs->rs_svcpt;
327
328         if (svcpt != b->rsb_svcpt || b->rsb_n_replies >= MAX_SCHEDULED) {
329                 if (b->rsb_svcpt != NULL) {
330                         rs_batch_dispatch(b);
331                         spin_unlock(&b->rsb_svcpt->scp_rep_lock);
332                 }
333                 spin_lock(&svcpt->scp_rep_lock);
334                 b->rsb_svcpt = svcpt;
335         }
336         spin_lock(&rs->rs_lock);
337         rs->rs_scheduled_ever = 1;
338         if (rs->rs_scheduled == 0) {
339                 list_move(&rs->rs_list, &b->rsb_replies);
340                 rs->rs_scheduled = 1;
341                 b->rsb_n_replies++;
342         }
343         rs->rs_committed = 1;
344         spin_unlock(&rs->rs_lock);
345 }
346
347 /**
348  * Reply batch finalization.
349  * Dispatch remaining replies from the batch
350  * and release remaining spinlock.
351  *
352  * \param b batch
353  */
354 static void rs_batch_fini(struct rs_batch *b)
355 {
356         if (b->rsb_svcpt != NULL) {
357                 rs_batch_dispatch(b);
358                 spin_unlock(&b->rsb_svcpt->scp_rep_lock);
359         }
360 }
361
362 #define DECLARE_RS_BATCH(b)     struct rs_batch b
363
364
365 /**
366  * Put reply state into a queue for processing because we received
367  * ACK from the client
368  */
369 void ptlrpc_dispatch_difficult_reply(struct ptlrpc_reply_state *rs)
370 {
371         struct ptlrpc_hr_thread *hrt;
372         ENTRY;
373
374         LASSERT(list_empty(&rs->rs_list));
375
376         hrt = ptlrpc_hr_select(rs->rs_svcpt);
377
378         spin_lock(&hrt->hrt_lock);
379         list_add_tail(&rs->rs_list, &hrt->hrt_queue);
380         spin_unlock(&hrt->hrt_lock);
381
382         wake_up(&hrt->hrt_waitq);
383         EXIT;
384 }
385
386 void
387 ptlrpc_schedule_difficult_reply(struct ptlrpc_reply_state *rs)
388 {
389         ENTRY;
390
391         assert_spin_locked(&rs->rs_svcpt->scp_rep_lock);
392         assert_spin_locked(&rs->rs_lock);
393         LASSERT (rs->rs_difficult);
394         rs->rs_scheduled_ever = 1;  /* flag any notification attempt */
395
396         if (rs->rs_scheduled) {     /* being set up or already notified */
397                 EXIT;
398                 return;
399         }
400
401         rs->rs_scheduled = 1;
402         list_del_init(&rs->rs_list);
403         ptlrpc_dispatch_difficult_reply(rs);
404         EXIT;
405 }
406 EXPORT_SYMBOL(ptlrpc_schedule_difficult_reply);
407
408 void ptlrpc_commit_replies(struct obd_export *exp)
409 {
410         struct ptlrpc_reply_state *rs, *nxt;
411         DECLARE_RS_BATCH(batch);
412         ENTRY;
413
414         rs_batch_init(&batch);
415         /* Find any replies that have been committed and get their service
416          * to attend to complete them. */
417
418         /* CAVEAT EMPTOR: spinlock ordering!!! */
419         spin_lock(&exp->exp_uncommitted_replies_lock);
420         list_for_each_entry_safe(rs, nxt, &exp->exp_uncommitted_replies,
421                                      rs_obd_list) {
422                 LASSERT (rs->rs_difficult);
423                 /* VBR: per-export last_committed */
424                 LASSERT(rs->rs_export);
425                 if (rs->rs_transno <= exp->exp_last_committed) {
426                         list_del_init(&rs->rs_obd_list);
427                         rs_batch_add(&batch, rs);
428                 }
429         }
430         spin_unlock(&exp->exp_uncommitted_replies_lock);
431         rs_batch_fini(&batch);
432         EXIT;
433 }
434 EXPORT_SYMBOL(ptlrpc_commit_replies);
435
436 static int
437 ptlrpc_server_post_idle_rqbds(struct ptlrpc_service_part *svcpt)
438 {
439         struct ptlrpc_request_buffer_desc *rqbd;
440         int                               rc;
441         int                               posted = 0;
442
443         for (;;) {
444                 spin_lock(&svcpt->scp_lock);
445
446                 if (list_empty(&svcpt->scp_rqbd_idle)) {
447                         spin_unlock(&svcpt->scp_lock);
448                         return posted;
449                 }
450
451                 rqbd = list_entry(svcpt->scp_rqbd_idle.next,
452                                       struct ptlrpc_request_buffer_desc,
453                                       rqbd_list);
454                 list_del(&rqbd->rqbd_list);
455
456                 /* assume we will post successfully */
457                 svcpt->scp_nrqbds_posted++;
458                 list_add(&rqbd->rqbd_list, &svcpt->scp_rqbd_posted);
459
460                 spin_unlock(&svcpt->scp_lock);
461
462                 rc = ptlrpc_register_rqbd(rqbd);
463                 if (rc != 0)
464                         break;
465
466                 posted = 1;
467         }
468
469         spin_lock(&svcpt->scp_lock);
470
471         svcpt->scp_nrqbds_posted--;
472         list_del(&rqbd->rqbd_list);
473         list_add_tail(&rqbd->rqbd_list, &svcpt->scp_rqbd_idle);
474
475         /* Don't complain if no request buffers are posted right now; LNET
476          * won't drop requests because we set the portal lazy! */
477
478         spin_unlock(&svcpt->scp_lock);
479
480         return -1;
481 }
482
483 static void ptlrpc_at_timer(unsigned long castmeharder)
484 {
485         struct ptlrpc_service_part *svcpt;
486
487         svcpt = (struct ptlrpc_service_part *)castmeharder;
488
489         svcpt->scp_at_check = 1;
490         svcpt->scp_at_checktime = cfs_time_current();
491         wake_up(&svcpt->scp_waitq);
492 }
493
494 static void
495 ptlrpc_server_nthreads_check(struct ptlrpc_service *svc,
496                              struct ptlrpc_service_conf *conf)
497 {
498         struct ptlrpc_service_thr_conf  *tc = &conf->psc_thr;
499         unsigned                        init;
500         unsigned                        total;
501         unsigned                        nthrs;
502         int                             weight;
503
504         /*
505          * Common code for estimating & validating threads number.
506          * CPT affinity service could have percpt thread-pool instead
507          * of a global thread-pool, which means user might not always
508          * get the threads number they give it in conf::tc_nthrs_user
509          * even they did set. It's because we need to validate threads
510          * number for each CPT to guarantee each pool will have enough
511          * threads to keep the service healthy.
512          */
513         init = PTLRPC_NTHRS_INIT + (svc->srv_ops.so_hpreq_handler != NULL);
514         init = max_t(int, init, tc->tc_nthrs_init);
515
516         /* NB: please see comments in lustre_lnet.h for definition
517          * details of these members */
518         LASSERT(tc->tc_nthrs_max != 0);
519
520         if (tc->tc_nthrs_user != 0) {
521                 /* In case there is a reason to test a service with many
522                  * threads, we give a less strict check here, it can
523                  * be up to 8 * nthrs_max */
524                 total = min(tc->tc_nthrs_max * 8, tc->tc_nthrs_user);
525                 nthrs = total / svc->srv_ncpts;
526                 init  = max(init, nthrs);
527                 goto out;
528         }
529
530         total = tc->tc_nthrs_max;
531         if (tc->tc_nthrs_base == 0) {
532                 /* don't care about base threads number per partition,
533                  * this is most for non-affinity service */
534                 nthrs = total / svc->srv_ncpts;
535                 goto out;
536         }
537
538         nthrs = tc->tc_nthrs_base;
539         if (svc->srv_ncpts == 1) {
540                 int     i;
541
542                 /* NB: Increase the base number if it's single partition
543                  * and total number of cores/HTs is larger or equal to 4.
544                  * result will always < 2 * nthrs_base */
545                 weight = cfs_cpt_weight(svc->srv_cptable, CFS_CPT_ANY);
546                 for (i = 1; (weight >> (i + 1)) != 0 && /* >= 4 cores/HTs */
547                             (tc->tc_nthrs_base >> i) != 0; i++)
548                         nthrs += tc->tc_nthrs_base >> i;
549         }
550
551         if (tc->tc_thr_factor != 0) {
552                 int       factor = tc->tc_thr_factor;
553                 const int fade = 4;
554
555                 /*
556                  * User wants to increase number of threads with for
557                  * each CPU core/HT, most likely the factor is larger then
558                  * one thread/core because service threads are supposed to
559                  * be blocked by lock or wait for IO.
560                  */
561                 /*
562                  * Amdahl's law says that adding processors wouldn't give
563                  * a linear increasing of parallelism, so it's nonsense to
564                  * have too many threads no matter how many cores/HTs
565                  * there are.
566                  */
567                 if (cfs_cpu_ht_nsiblings(0) > 1) { /* weight is # of HTs */
568                         /* depress thread factor for hyper-thread */
569                         factor = factor - (factor >> 1) + (factor >> 3);
570                 }
571
572                 weight = cfs_cpt_weight(svc->srv_cptable, 0);
573                 LASSERT(weight > 0);
574
575                 for (; factor > 0 && weight > 0; factor--, weight -= fade)
576                         nthrs += min(weight, fade) * factor;
577         }
578
579         if (nthrs * svc->srv_ncpts > tc->tc_nthrs_max) {
580                 nthrs = max(tc->tc_nthrs_base,
581                             tc->tc_nthrs_max / svc->srv_ncpts);
582         }
583  out:
584         nthrs = max(nthrs, tc->tc_nthrs_init);
585         svc->srv_nthrs_cpt_limit = nthrs;
586         svc->srv_nthrs_cpt_init = init;
587
588         if (nthrs * svc->srv_ncpts > tc->tc_nthrs_max) {
589                 CDEBUG(D_OTHER, "%s: This service may have more threads (%d) "
590                        "than the given soft limit (%d)\n",
591                        svc->srv_name, nthrs * svc->srv_ncpts,
592                        tc->tc_nthrs_max);
593         }
594 }
595
596 /**
597  * Initialize percpt data for a service
598  */
599 static int
600 ptlrpc_service_part_init(struct ptlrpc_service *svc,
601                          struct ptlrpc_service_part *svcpt, int cpt)
602 {
603         struct ptlrpc_at_array  *array;
604         int                     size;
605         int                     index;
606         int                     rc;
607
608         svcpt->scp_cpt = cpt;
609         INIT_LIST_HEAD(&svcpt->scp_threads);
610
611         /* rqbd and incoming request queue */
612         spin_lock_init(&svcpt->scp_lock);
613         INIT_LIST_HEAD(&svcpt->scp_rqbd_idle);
614         INIT_LIST_HEAD(&svcpt->scp_rqbd_posted);
615         INIT_LIST_HEAD(&svcpt->scp_req_incoming);
616         init_waitqueue_head(&svcpt->scp_waitq);
617         /* history request & rqbd list */
618         INIT_LIST_HEAD(&svcpt->scp_hist_reqs);
619         INIT_LIST_HEAD(&svcpt->scp_hist_rqbds);
620
621         /* acitve requests and hp requests */
622         spin_lock_init(&svcpt->scp_req_lock);
623
624         /* reply states */
625         spin_lock_init(&svcpt->scp_rep_lock);
626         INIT_LIST_HEAD(&svcpt->scp_rep_active);
627         INIT_LIST_HEAD(&svcpt->scp_rep_idle);
628         init_waitqueue_head(&svcpt->scp_rep_waitq);
629         atomic_set(&svcpt->scp_nreps_difficult, 0);
630
631         /* adaptive timeout */
632         spin_lock_init(&svcpt->scp_at_lock);
633         array = &svcpt->scp_at_array;
634
635         size = at_est2timeout(at_max);
636         array->paa_size     = size;
637         array->paa_count    = 0;
638         array->paa_deadline = -1;
639
640         /* allocate memory for scp_at_array (ptlrpc_at_array) */
641         OBD_CPT_ALLOC(array->paa_reqs_array,
642                       svc->srv_cptable, cpt, sizeof(struct list_head) * size);
643         if (array->paa_reqs_array == NULL)
644                 return -ENOMEM;
645
646         for (index = 0; index < size; index++)
647                 INIT_LIST_HEAD(&array->paa_reqs_array[index]);
648
649         OBD_CPT_ALLOC(array->paa_reqs_count,
650                       svc->srv_cptable, cpt, sizeof(__u32) * size);
651         if (array->paa_reqs_count == NULL)
652                 goto failed;
653
654         cfs_timer_init(&svcpt->scp_at_timer, ptlrpc_at_timer, svcpt);
655         /* At SOW, service time should be quick; 10s seems generous. If client
656          * timeout is less than this, we'll be sending an early reply. */
657         at_init(&svcpt->scp_at_estimate, 10, 0);
658
659         /* assign this before call ptlrpc_grow_req_bufs */
660         svcpt->scp_service = svc;
661         /* Now allocate the request buffers, but don't post them now */
662         rc = ptlrpc_grow_req_bufs(svcpt, 0);
663         /* We shouldn't be under memory pressure at startup, so
664          * fail if we can't allocate all our buffers at this time. */
665         if (rc != 0)
666                 goto failed;
667
668         return 0;
669
670  failed:
671         if (array->paa_reqs_count != NULL) {
672                 OBD_FREE(array->paa_reqs_count, sizeof(__u32) * size);
673                 array->paa_reqs_count = NULL;
674         }
675
676         if (array->paa_reqs_array != NULL) {
677                 OBD_FREE(array->paa_reqs_array,
678                          sizeof(struct list_head) * array->paa_size);
679                 array->paa_reqs_array = NULL;
680         }
681
682         return -ENOMEM;
683 }
684
685 /**
686  * Initialize service on a given portal.
687  * This includes starting serving threads , allocating and posting rqbds and
688  * so on.
689  */
690 struct ptlrpc_service *
691 ptlrpc_register_service(struct ptlrpc_service_conf *conf,
692                         struct proc_dir_entry *proc_entry)
693 {
694         struct ptlrpc_service_cpt_conf  *cconf = &conf->psc_cpt;
695         struct ptlrpc_service           *service;
696         struct ptlrpc_service_part      *svcpt;
697         struct cfs_cpt_table            *cptable;
698         __u32                           *cpts = NULL;
699         int                             ncpts;
700         int                             cpt;
701         int                             rc;
702         int                             i;
703         ENTRY;
704
705         LASSERT(conf->psc_buf.bc_nbufs > 0);
706         LASSERT(conf->psc_buf.bc_buf_size >=
707                 conf->psc_buf.bc_req_max_size + SPTLRPC_MAX_PAYLOAD);
708         LASSERT(conf->psc_thr.tc_ctx_tags != 0);
709
710         cptable = cconf->cc_cptable;
711         if (cptable == NULL)
712                 cptable = cfs_cpt_table;
713
714         if (!conf->psc_thr.tc_cpu_affinity) {
715                 ncpts = 1;
716         } else {
717                 ncpts = cfs_cpt_number(cptable);
718                 if (cconf->cc_pattern != NULL) {
719                         struct cfs_expr_list    *el;
720
721                         rc = cfs_expr_list_parse(cconf->cc_pattern,
722                                                  strlen(cconf->cc_pattern),
723                                                  0, ncpts - 1, &el);
724                         if (rc != 0) {
725                                 CERROR("%s: invalid CPT pattern string: %s",
726                                        conf->psc_name, cconf->cc_pattern);
727                                 RETURN(ERR_PTR(-EINVAL));
728                         }
729
730                         rc = cfs_expr_list_values(el, ncpts, &cpts);
731                         cfs_expr_list_free(el);
732                         if (rc <= 0) {
733                                 CERROR("%s: failed to parse CPT array %s: %d\n",
734                                        conf->psc_name, cconf->cc_pattern, rc);
735                                 if (cpts != NULL)
736                                         OBD_FREE(cpts, sizeof(*cpts) * ncpts);
737                                 RETURN(ERR_PTR(rc < 0 ? rc : -EINVAL));
738                         }
739                         ncpts = rc;
740                 }
741         }
742
743         OBD_ALLOC(service, offsetof(struct ptlrpc_service, srv_parts[ncpts]));
744         if (service == NULL) {
745                 if (cpts != NULL)
746                         OBD_FREE(cpts, sizeof(*cpts) * ncpts);
747                 RETURN(ERR_PTR(-ENOMEM));
748         }
749
750         service->srv_cptable            = cptable;
751         service->srv_cpts               = cpts;
752         service->srv_ncpts              = ncpts;
753
754         service->srv_cpt_bits = 0; /* it's zero already, easy to read... */
755         while ((1 << service->srv_cpt_bits) < cfs_cpt_number(cptable))
756                 service->srv_cpt_bits++;
757
758         /* public members */
759         spin_lock_init(&service->srv_lock);
760         service->srv_name               = conf->psc_name;
761         service->srv_watchdog_factor    = conf->psc_watchdog_factor;
762         INIT_LIST_HEAD(&service->srv_list); /* for safty of cleanup */
763
764         /* buffer configuration */
765         service->srv_nbuf_per_group     = test_req_buffer_pressure ?
766                                           1 : conf->psc_buf.bc_nbufs;
767         service->srv_max_req_size       = conf->psc_buf.bc_req_max_size +
768                                           SPTLRPC_MAX_PAYLOAD;
769         service->srv_buf_size           = conf->psc_buf.bc_buf_size;
770         service->srv_rep_portal         = conf->psc_buf.bc_rep_portal;
771         service->srv_req_portal         = conf->psc_buf.bc_req_portal;
772
773         /* Increase max reply size to next power of two */
774         service->srv_max_reply_size = 1;
775         while (service->srv_max_reply_size <
776                conf->psc_buf.bc_rep_max_size + SPTLRPC_MAX_PAYLOAD)
777                 service->srv_max_reply_size <<= 1;
778
779         service->srv_thread_name        = conf->psc_thr.tc_thr_name;
780         service->srv_ctx_tags           = conf->psc_thr.tc_ctx_tags;
781         service->srv_hpreq_ratio        = PTLRPC_SVC_HP_RATIO;
782         service->srv_ops                = conf->psc_ops;
783
784         for (i = 0; i < ncpts; i++) {
785                 if (!conf->psc_thr.tc_cpu_affinity)
786                         cpt = CFS_CPT_ANY;
787                 else
788                         cpt = cpts != NULL ? cpts[i] : i;
789
790                 OBD_CPT_ALLOC(svcpt, cptable, cpt, sizeof(*svcpt));
791                 if (svcpt == NULL)
792                         GOTO(failed, rc = -ENOMEM);
793
794                 service->srv_parts[i] = svcpt;
795                 rc = ptlrpc_service_part_init(service, svcpt, cpt);
796                 if (rc != 0)
797                         GOTO(failed, rc);
798         }
799
800         ptlrpc_server_nthreads_check(service, conf);
801
802         rc = LNetSetLazyPortal(service->srv_req_portal);
803         LASSERT(rc == 0);
804
805         mutex_lock(&ptlrpc_all_services_mutex);
806         list_add(&service->srv_list, &ptlrpc_all_services);
807         mutex_unlock(&ptlrpc_all_services_mutex);
808
809         if (proc_entry != NULL)
810                 ptlrpc_lprocfs_register_service(proc_entry, service);
811
812         rc = ptlrpc_service_nrs_setup(service);
813         if (rc != 0)
814                 GOTO(failed, rc);
815
816         CDEBUG(D_NET, "%s: Started, listening on portal %d\n",
817                service->srv_name, service->srv_req_portal);
818
819         rc = ptlrpc_start_threads(service);
820         if (rc != 0) {
821                 CERROR("Failed to start threads for service %s: %d\n",
822                        service->srv_name, rc);
823                 GOTO(failed, rc);
824         }
825
826         RETURN(service);
827 failed:
828         ptlrpc_unregister_service(service);
829         RETURN(ERR_PTR(rc));
830 }
831 EXPORT_SYMBOL(ptlrpc_register_service);
832
833 /**
834  * to actually free the request, must be called without holding svc_lock.
835  * note it's caller's responsibility to unlink req->rq_list.
836  */
837 static void ptlrpc_server_free_request(struct ptlrpc_request *req)
838 {
839         LASSERT(atomic_read(&req->rq_refcount) == 0);
840         LASSERT(list_empty(&req->rq_timed_list));
841
842         /* DEBUG_REQ() assumes the reply state of a request with a valid
843          * ref will not be destroyed until that reference is dropped. */
844         ptlrpc_req_drop_rs(req);
845
846         sptlrpc_svc_ctx_decref(req);
847
848         if (req != &req->rq_rqbd->rqbd_req) {
849                 /* NB request buffers use an embedded
850                  * req if the incoming req unlinked the
851                  * MD; this isn't one of them! */
852                 ptlrpc_request_cache_free(req);
853         }
854 }
855
856 /**
857  * drop a reference count of the request. if it reaches 0, we either
858  * put it into history list, or free it immediately.
859  */
860 void ptlrpc_server_drop_request(struct ptlrpc_request *req)
861 {
862         struct ptlrpc_request_buffer_desc *rqbd = req->rq_rqbd;
863         struct ptlrpc_service_part        *svcpt = rqbd->rqbd_svcpt;
864         struct ptlrpc_service             *svc = svcpt->scp_service;
865         int                                refcount;
866         struct list_head                          *tmp;
867         struct list_head                          *nxt;
868
869         if (!atomic_dec_and_test(&req->rq_refcount))
870                 return;
871
872         if (req->rq_session.lc_state == LCS_ENTERED) {
873                 lu_context_exit(&req->rq_session);
874                 lu_context_fini(&req->rq_session);
875         }
876
877         if (req->rq_at_linked) {
878                 spin_lock(&svcpt->scp_at_lock);
879                 /* recheck with lock, in case it's unlinked by
880                  * ptlrpc_at_check_timed() */
881                 if (likely(req->rq_at_linked))
882                         ptlrpc_at_remove_timed(req);
883                 spin_unlock(&svcpt->scp_at_lock);
884         }
885
886         LASSERT(list_empty(&req->rq_timed_list));
887
888         /* finalize request */
889         if (req->rq_export) {
890                 class_export_put(req->rq_export);
891                 req->rq_export = NULL;
892         }
893
894         spin_lock(&svcpt->scp_lock);
895
896         list_add(&req->rq_list, &rqbd->rqbd_reqs);
897
898         refcount = --(rqbd->rqbd_refcount);
899         if (refcount == 0) {
900                 /* request buffer is now idle: add to history */
901                 list_del(&rqbd->rqbd_list);
902
903                 list_add_tail(&rqbd->rqbd_list, &svcpt->scp_hist_rqbds);
904                 svcpt->scp_hist_nrqbds++;
905
906                 /* cull some history?
907                  * I expect only about 1 or 2 rqbds need to be recycled here */
908                 while (svcpt->scp_hist_nrqbds > svc->srv_hist_nrqbds_cpt_max) {
909                         rqbd = list_entry(svcpt->scp_hist_rqbds.next,
910                                           struct ptlrpc_request_buffer_desc,
911                                           rqbd_list);
912
913                         list_del(&rqbd->rqbd_list);
914                         svcpt->scp_hist_nrqbds--;
915
916                         /* remove rqbd's reqs from svc's req history while
917                          * I've got the service lock */
918                         list_for_each(tmp, &rqbd->rqbd_reqs) {
919                                 req = list_entry(tmp, struct ptlrpc_request,
920                                                  rq_list);
921                                 /* Track the highest culled req seq */
922                                 if (req->rq_history_seq >
923                                     svcpt->scp_hist_seq_culled) {
924                                         svcpt->scp_hist_seq_culled =
925                                                 req->rq_history_seq;
926                                 }
927                                 list_del(&req->rq_history_list);
928                         }
929
930                         spin_unlock(&svcpt->scp_lock);
931
932                         list_for_each_safe(tmp, nxt, &rqbd->rqbd_reqs) {
933                                 req = list_entry(rqbd->rqbd_reqs.next,
934                                                  struct ptlrpc_request,
935                                                  rq_list);
936                                 list_del(&req->rq_list);
937                                 ptlrpc_server_free_request(req);
938                         }
939
940                         spin_lock(&svcpt->scp_lock);
941                         /*
942                          * now all reqs including the embedded req has been
943                          * disposed, schedule request buffer for re-use.
944                          */
945                         LASSERT(atomic_read(&rqbd->rqbd_req.rq_refcount) == 0);
946                         list_add_tail(&rqbd->rqbd_list, &svcpt->scp_rqbd_idle);
947                 }
948
949                 spin_unlock(&svcpt->scp_lock);
950         } else if (req->rq_reply_state && req->rq_reply_state->rs_prealloc) {
951                 /* If we are low on memory, we are not interested in history */
952                 list_del(&req->rq_list);
953                 list_del_init(&req->rq_history_list);
954
955                 /* Track the highest culled req seq */
956                 if (req->rq_history_seq > svcpt->scp_hist_seq_culled)
957                         svcpt->scp_hist_seq_culled = req->rq_history_seq;
958
959                 spin_unlock(&svcpt->scp_lock);
960
961                 ptlrpc_server_free_request(req);
962         } else {
963                 spin_unlock(&svcpt->scp_lock);
964         }
965 }
966
967 /** Change request export and move hp request from old export to new */
968 void ptlrpc_request_change_export(struct ptlrpc_request *req,
969                                   struct obd_export *export)
970 {
971         if (req->rq_export != NULL) {
972                 LASSERT(!list_empty(&req->rq_exp_list));
973                 /* remove rq_exp_list from last export */
974                 spin_lock_bh(&req->rq_export->exp_rpc_lock);
975                 list_del_init(&req->rq_exp_list);
976                 spin_unlock_bh(&req->rq_export->exp_rpc_lock);
977                 /* export has one reference already, so it`s safe to
978                  * add req to export queue here and get another
979                  * reference for request later */
980                 spin_lock_bh(&export->exp_rpc_lock);
981                 if (req->rq_ops != NULL) /* hp request */
982                         list_add(&req->rq_exp_list, &export->exp_hp_rpcs);
983                 else
984                         list_add(&req->rq_exp_list, &export->exp_reg_rpcs);
985                 spin_unlock_bh(&export->exp_rpc_lock);
986
987                 class_export_rpc_dec(req->rq_export);
988                 class_export_put(req->rq_export);
989         }
990
991         /* request takes one export refcount */
992         req->rq_export = class_export_get(export);
993         class_export_rpc_inc(export);
994
995         return;
996 }
997
998 /**
999  * to finish a request: stop sending more early replies, and release
1000  * the request.
1001  */
1002 static void ptlrpc_server_finish_request(struct ptlrpc_service_part *svcpt,
1003                                          struct ptlrpc_request *req)
1004 {
1005         ptlrpc_server_hpreq_fini(req);
1006
1007         ptlrpc_server_drop_request(req);
1008 }
1009
1010 /**
1011  * to finish a active request: stop sending more early replies, and release
1012  * the request. should be called after we finished handling the request.
1013  */
1014 static void ptlrpc_server_finish_active_request(
1015                                         struct ptlrpc_service_part *svcpt,
1016                                         struct ptlrpc_request *req)
1017 {
1018         spin_lock(&svcpt->scp_req_lock);
1019         ptlrpc_nrs_req_stop_nolock(req);
1020         svcpt->scp_nreqs_active--;
1021         if (req->rq_hp)
1022                 svcpt->scp_nhreqs_active--;
1023         spin_unlock(&svcpt->scp_req_lock);
1024
1025         ptlrpc_nrs_req_finalize(req);
1026
1027         if (req->rq_export != NULL)
1028                 class_export_rpc_dec(req->rq_export);
1029
1030         ptlrpc_server_finish_request(svcpt, req);
1031 }
1032
1033 /**
1034  * This function makes sure dead exports are evicted in a timely manner.
1035  * This function is only called when some export receives a message (i.e.,
1036  * the network is up.)
1037  */
1038 void ptlrpc_update_export_timer(struct obd_export *exp, long extra_delay)
1039 {
1040         struct obd_export *oldest_exp;
1041         time_t oldest_time, new_time;
1042
1043         ENTRY;
1044
1045         LASSERT(exp);
1046
1047         /* Compensate for slow machines, etc, by faking our request time
1048            into the future.  Although this can break the strict time-ordering
1049            of the list, we can be really lazy here - we don't have to evict
1050            at the exact right moment.  Eventually, all silent exports
1051            will make it to the top of the list. */
1052
1053         /* Do not pay attention on 1sec or smaller renewals. */
1054         new_time = cfs_time_current_sec() + extra_delay;
1055         if (exp->exp_last_request_time + 1 /*second */ >= new_time)
1056                 RETURN_EXIT;
1057
1058         exp->exp_last_request_time = new_time;
1059
1060         /* exports may get disconnected from the chain even though the
1061            export has references, so we must keep the spin lock while
1062            manipulating the lists */
1063         spin_lock(&exp->exp_obd->obd_dev_lock);
1064
1065         if (list_empty(&exp->exp_obd_chain_timed)) {
1066                 /* this one is not timed */
1067                 spin_unlock(&exp->exp_obd->obd_dev_lock);
1068                 RETURN_EXIT;
1069         }
1070
1071         list_move_tail(&exp->exp_obd_chain_timed,
1072                        &exp->exp_obd->obd_exports_timed);
1073
1074         oldest_exp = list_entry(exp->exp_obd->obd_exports_timed.next,
1075                                 struct obd_export, exp_obd_chain_timed);
1076         oldest_time = oldest_exp->exp_last_request_time;
1077         spin_unlock(&exp->exp_obd->obd_dev_lock);
1078
1079         if (exp->exp_obd->obd_recovering) {
1080                 /* be nice to everyone during recovery */
1081                 EXIT;
1082                 return;
1083         }
1084
1085         /* Note - racing to start/reset the obd_eviction timer is safe */
1086         if (exp->exp_obd->obd_eviction_timer == 0) {
1087                 /* Check if the oldest entry is expired. */
1088                 if (cfs_time_current_sec() > (oldest_time + PING_EVICT_TIMEOUT +
1089                                               extra_delay)) {
1090                         /* We need a second timer, in case the net was down and
1091                          * it just came back. Since the pinger may skip every
1092                          * other PING_INTERVAL (see note in ptlrpc_pinger_main),
1093                          * we better wait for 3. */
1094                         exp->exp_obd->obd_eviction_timer =
1095                                 cfs_time_current_sec() + 3 * PING_INTERVAL;
1096                         CDEBUG(D_HA, "%s: Think about evicting %s from "CFS_TIME_T"\n",
1097                                exp->exp_obd->obd_name,
1098                                obd_export_nid2str(oldest_exp), oldest_time);
1099                 }
1100         } else {
1101                 if (cfs_time_current_sec() >
1102                     (exp->exp_obd->obd_eviction_timer + extra_delay)) {
1103                         /* The evictor won't evict anyone who we've heard from
1104                          * recently, so we don't have to check before we start
1105                          * it. */
1106                         if (!ping_evictor_wake(exp))
1107                                 exp->exp_obd->obd_eviction_timer = 0;
1108                 }
1109         }
1110
1111         EXIT;
1112 }
1113 EXPORT_SYMBOL(ptlrpc_update_export_timer);
1114
1115 /**
1116  * Sanity check request \a req.
1117  * Return 0 if all is ok, error code otherwise.
1118  */
1119 static int ptlrpc_check_req(struct ptlrpc_request *req)
1120 {
1121         struct obd_device *obd = req->rq_export->exp_obd;
1122         int rc = 0;
1123
1124         if (unlikely(lustre_msg_get_conn_cnt(req->rq_reqmsg) <
1125                      req->rq_export->exp_conn_cnt)) {
1126                 DEBUG_REQ(D_RPCTRACE, req,
1127                           "DROPPING req from old connection %d < %d",
1128                           lustre_msg_get_conn_cnt(req->rq_reqmsg),
1129                           req->rq_export->exp_conn_cnt);
1130                 return -EEXIST;
1131         }
1132         if (unlikely(obd == NULL || obd->obd_fail)) {
1133                 /* Failing over, don't handle any more reqs,
1134                  * send error response instead. */
1135                 CDEBUG(D_RPCTRACE, "Dropping req %p for failed obd %s\n",
1136                         req, (obd != NULL) ? obd->obd_name : "unknown");
1137                 rc = -ENODEV;
1138         } else if (lustre_msg_get_flags(req->rq_reqmsg) &
1139                    (MSG_REPLAY | MSG_REQ_REPLAY_DONE) &&
1140                    !obd->obd_recovering) {
1141                         DEBUG_REQ(D_ERROR, req,
1142                                   "Invalid replay without recovery");
1143                         class_fail_export(req->rq_export);
1144                         rc = -ENODEV;
1145         } else if (lustre_msg_get_transno(req->rq_reqmsg) != 0 &&
1146                    !obd->obd_recovering) {
1147                         DEBUG_REQ(D_ERROR, req, "Invalid req with transno "
1148                                   LPU64" without recovery",
1149                                   lustre_msg_get_transno(req->rq_reqmsg));
1150                         class_fail_export(req->rq_export);
1151                         rc = -ENODEV;
1152         }
1153
1154         if (unlikely(rc < 0)) {
1155                 req->rq_status = rc;
1156                 ptlrpc_error(req);
1157         }
1158         return rc;
1159 }
1160
1161 static void ptlrpc_at_set_timer(struct ptlrpc_service_part *svcpt)
1162 {
1163         struct ptlrpc_at_array *array = &svcpt->scp_at_array;
1164         __s32 next;
1165
1166         if (array->paa_count == 0) {
1167                 cfs_timer_disarm(&svcpt->scp_at_timer);
1168                 return;
1169         }
1170
1171         /* Set timer for closest deadline */
1172         next = (__s32)(array->paa_deadline - cfs_time_current_sec() -
1173                        at_early_margin);
1174         if (next <= 0) {
1175                 ptlrpc_at_timer((unsigned long)svcpt);
1176         } else {
1177                 cfs_timer_arm(&svcpt->scp_at_timer, cfs_time_shift(next));
1178                 CDEBUG(D_INFO, "armed %s at %+ds\n",
1179                        svcpt->scp_service->srv_name, next);
1180         }
1181 }
1182
1183 /* Add rpc to early reply check list */
1184 static int ptlrpc_at_add_timed(struct ptlrpc_request *req)
1185 {
1186         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
1187         struct ptlrpc_at_array *array = &svcpt->scp_at_array;
1188         struct ptlrpc_request *rq = NULL;
1189         __u32 index;
1190
1191         if (AT_OFF)
1192                 return(0);
1193
1194         if (req->rq_no_reply)
1195                 return 0;
1196
1197         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0)
1198                 return(-ENOSYS);
1199
1200         spin_lock(&svcpt->scp_at_lock);
1201         LASSERT(list_empty(&req->rq_timed_list));
1202
1203         index = (unsigned long)req->rq_deadline % array->paa_size;
1204         if (array->paa_reqs_count[index] > 0) {
1205                 /* latest rpcs will have the latest deadlines in the list,
1206                  * so search backward. */
1207                 list_for_each_entry_reverse(rq,
1208                                                 &array->paa_reqs_array[index],
1209                                                 rq_timed_list) {
1210                         if (req->rq_deadline >= rq->rq_deadline) {
1211                                 list_add(&req->rq_timed_list,
1212                                              &rq->rq_timed_list);
1213                                 break;
1214                         }
1215                 }
1216         }
1217
1218         /* Add the request at the head of the list */
1219         if (list_empty(&req->rq_timed_list))
1220                 list_add(&req->rq_timed_list,
1221                              &array->paa_reqs_array[index]);
1222
1223         spin_lock(&req->rq_lock);
1224         req->rq_at_linked = 1;
1225         spin_unlock(&req->rq_lock);
1226         req->rq_at_index = index;
1227         array->paa_reqs_count[index]++;
1228         array->paa_count++;
1229         if (array->paa_count == 1 || array->paa_deadline > req->rq_deadline) {
1230                 array->paa_deadline = req->rq_deadline;
1231                 ptlrpc_at_set_timer(svcpt);
1232         }
1233         spin_unlock(&svcpt->scp_at_lock);
1234
1235         return 0;
1236 }
1237
1238 static void
1239 ptlrpc_at_remove_timed(struct ptlrpc_request *req)
1240 {
1241         struct ptlrpc_at_array *array;
1242
1243         array = &req->rq_rqbd->rqbd_svcpt->scp_at_array;
1244
1245         /* NB: must call with hold svcpt::scp_at_lock */
1246         LASSERT(!list_empty(&req->rq_timed_list));
1247         list_del_init(&req->rq_timed_list);
1248
1249         spin_lock(&req->rq_lock);
1250         req->rq_at_linked = 0;
1251         spin_unlock(&req->rq_lock);
1252
1253         array->paa_reqs_count[req->rq_at_index]--;
1254         array->paa_count--;
1255 }
1256
1257 /*
1258  * Attempt to extend the request deadline by sending an early reply to the
1259  * client.
1260  */
1261 static int ptlrpc_at_send_early_reply(struct ptlrpc_request *req)
1262 {
1263         struct ptlrpc_service_part *svcpt = req->rq_rqbd->rqbd_svcpt;
1264         struct ptlrpc_request *reqcopy;
1265         struct lustre_msg *reqmsg;
1266         cfs_duration_t olddl = req->rq_deadline - cfs_time_current_sec();
1267         int rc;
1268         ENTRY;
1269
1270         /* deadline is when the client expects us to reply, margin is the
1271            difference between clients' and servers' expectations */
1272         DEBUG_REQ(D_ADAPTTO, req,
1273                   "%ssending early reply (deadline %+lds, margin %+lds) for "
1274                   "%d+%d", AT_OFF ? "AT off - not " : "",
1275                   olddl, olddl - at_get(&svcpt->scp_at_estimate),
1276                   at_get(&svcpt->scp_at_estimate), at_extra);
1277
1278         if (AT_OFF)
1279                 RETURN(0);
1280
1281         if (olddl < 0) {
1282                 DEBUG_REQ(D_WARNING, req, "Already past deadline (%+lds), "
1283                           "not sending early reply. Consider increasing "
1284                           "at_early_margin (%d)?", olddl, at_early_margin);
1285
1286                 /* Return an error so we're not re-added to the timed list. */
1287                 RETURN(-ETIMEDOUT);
1288         }
1289
1290         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0){
1291                 DEBUG_REQ(D_INFO, req, "Wanted to ask client for more time, "
1292                           "but no AT support");
1293                 RETURN(-ENOSYS);
1294         }
1295
1296         if (req->rq_export &&
1297             lustre_msg_get_flags(req->rq_reqmsg) &
1298             (MSG_REPLAY | MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE)) {
1299                 /* During recovery, we don't want to send too many early
1300                  * replies, but on the other hand we want to make sure the
1301                  * client has enough time to resend if the rpc is lost. So
1302                  * during the recovery period send at least 4 early replies,
1303                  * spacing them every at_extra if we can. at_estimate should
1304                  * always equal this fixed value during recovery. */
1305                 at_measured(&svcpt->scp_at_estimate,
1306                             cfs_time_current_sec() -
1307                             req->rq_arrival_time.tv_sec + min(at_extra,
1308                             req->rq_export->exp_obd->obd_recovery_timeout / 4));
1309         } else {
1310                 /* We want to extend the request deadline by at_extra seconds,
1311                  * so we set our service estimate to reflect how much time has
1312                  * passed since this request arrived plus an additional
1313                  * at_extra seconds. The client will calculate the new deadline
1314                  * based on this service estimate (plus some additional time to
1315                  * account for network latency). See ptlrpc_at_recv_early_reply
1316                  */
1317                 at_measured(&svcpt->scp_at_estimate, at_extra +
1318                             cfs_time_current_sec() -
1319                             req->rq_arrival_time.tv_sec);
1320
1321         }
1322         /* Check to see if we've actually increased the deadline -
1323          * we may be past adaptive_max */
1324         if (req->rq_deadline >= req->rq_arrival_time.tv_sec +
1325             at_get(&svcpt->scp_at_estimate)) {
1326                 DEBUG_REQ(D_WARNING, req, "Couldn't add any time "
1327                           "(%ld/%ld), not sending early reply\n",
1328                           olddl, req->rq_arrival_time.tv_sec +
1329                           at_get(&svcpt->scp_at_estimate) -
1330                           cfs_time_current_sec());
1331                 RETURN(-ETIMEDOUT);
1332         }
1333
1334         reqcopy = ptlrpc_request_cache_alloc(GFP_NOFS);
1335         if (reqcopy == NULL)
1336                 RETURN(-ENOMEM);
1337         OBD_ALLOC_LARGE(reqmsg, req->rq_reqlen);
1338         if (!reqmsg)
1339                 GOTO(out_free, rc = -ENOMEM);
1340
1341         *reqcopy = *req;
1342         reqcopy->rq_reply_state = NULL;
1343         reqcopy->rq_rep_swab_mask = 0;
1344         reqcopy->rq_pack_bulk = 0;
1345         reqcopy->rq_pack_udesc = 0;
1346         reqcopy->rq_packed_final = 0;
1347         sptlrpc_svc_ctx_addref(reqcopy);
1348         /* We only need the reqmsg for the magic */
1349         reqcopy->rq_reqmsg = reqmsg;
1350         memcpy(reqmsg, req->rq_reqmsg, req->rq_reqlen);
1351
1352         LASSERT(atomic_read(&req->rq_refcount));
1353         /** if it is last refcount then early reply isn't needed */
1354         if (atomic_read(&req->rq_refcount) == 1) {
1355                 DEBUG_REQ(D_ADAPTTO, reqcopy, "Normal reply already sent out, "
1356                           "abort sending early reply\n");
1357                 GOTO(out, rc = -EINVAL);
1358         }
1359
1360         /* Connection ref */
1361         reqcopy->rq_export = class_conn2export(
1362                                      lustre_msg_get_handle(reqcopy->rq_reqmsg));
1363         if (reqcopy->rq_export == NULL)
1364                 GOTO(out, rc = -ENODEV);
1365
1366         /* RPC ref */
1367         class_export_rpc_inc(reqcopy->rq_export);
1368         if (reqcopy->rq_export->exp_obd &&
1369             reqcopy->rq_export->exp_obd->obd_fail)
1370                 GOTO(out_put, rc = -ENODEV);
1371
1372         rc = lustre_pack_reply_flags(reqcopy, 1, NULL, NULL, LPRFL_EARLY_REPLY);
1373         if (rc)
1374                 GOTO(out_put, rc);
1375
1376         rc = ptlrpc_send_reply(reqcopy, PTLRPC_REPLY_EARLY);
1377
1378         if (!rc) {
1379                 /* Adjust our own deadline to what we told the client */
1380                 req->rq_deadline = req->rq_arrival_time.tv_sec +
1381                                    at_get(&svcpt->scp_at_estimate);
1382                 req->rq_early_count++; /* number sent, server side */
1383         } else {
1384                 DEBUG_REQ(D_ERROR, req, "Early reply send failed %d", rc);
1385         }
1386
1387         /* Free the (early) reply state from lustre_pack_reply.
1388            (ptlrpc_send_reply takes it's own rs ref, so this is safe here) */
1389         ptlrpc_req_drop_rs(reqcopy);
1390
1391 out_put:
1392         class_export_rpc_dec(reqcopy->rq_export);
1393         class_export_put(reqcopy->rq_export);
1394 out:
1395         sptlrpc_svc_ctx_decref(reqcopy);
1396         OBD_FREE_LARGE(reqmsg, req->rq_reqlen);
1397 out_free:
1398         ptlrpc_request_cache_free(reqcopy);
1399         RETURN(rc);
1400 }
1401
1402 /* Send early replies to everybody expiring within at_early_margin
1403    asking for at_extra time */
1404 static int ptlrpc_at_check_timed(struct ptlrpc_service_part *svcpt)
1405 {
1406         struct ptlrpc_at_array *array = &svcpt->scp_at_array;
1407         struct ptlrpc_request *rq, *n;
1408         struct list_head work_list;
1409         __u32  index, count;
1410         time_t deadline;
1411         time_t now = cfs_time_current_sec();
1412         cfs_duration_t delay;
1413         int first, counter = 0;
1414         ENTRY;
1415
1416         spin_lock(&svcpt->scp_at_lock);
1417         if (svcpt->scp_at_check == 0) {
1418                 spin_unlock(&svcpt->scp_at_lock);
1419                 RETURN(0);
1420         }
1421         delay = cfs_time_sub(cfs_time_current(), svcpt->scp_at_checktime);
1422         svcpt->scp_at_check = 0;
1423
1424         if (array->paa_count == 0) {
1425                 spin_unlock(&svcpt->scp_at_lock);
1426                 RETURN(0);
1427         }
1428
1429         /* The timer went off, but maybe the nearest rpc already completed. */
1430         first = array->paa_deadline - now;
1431         if (first > at_early_margin) {
1432                 /* We've still got plenty of time.  Reset the timer. */
1433                 ptlrpc_at_set_timer(svcpt);
1434                 spin_unlock(&svcpt->scp_at_lock);
1435                 RETURN(0);
1436         }
1437
1438         /* We're close to a timeout, and we don't know how much longer the
1439            server will take. Send early replies to everyone expiring soon. */
1440         INIT_LIST_HEAD(&work_list);
1441         deadline = -1;
1442         index = (unsigned long)array->paa_deadline % array->paa_size;
1443         count = array->paa_count;
1444         while (count > 0) {
1445                 count -= array->paa_reqs_count[index];
1446                 list_for_each_entry_safe(rq, n,
1447                                          &array->paa_reqs_array[index],
1448                                          rq_timed_list) {
1449                         if (rq->rq_deadline > now + at_early_margin) {
1450                                 /* update the earliest deadline */
1451                                 if (deadline == -1 ||
1452                                     rq->rq_deadline < deadline)
1453                                         deadline = rq->rq_deadline;
1454                                 break;
1455                         }
1456
1457                         ptlrpc_at_remove_timed(rq);
1458                         /**
1459                          * ptlrpc_server_drop_request() may drop
1460                          * refcount to 0 already. Let's check this and
1461                          * don't add entry to work_list
1462                          */
1463                         if (likely(atomic_inc_not_zero(&rq->rq_refcount)))
1464                                 list_add(&rq->rq_timed_list, &work_list);
1465                         counter++;
1466                 }
1467
1468                 if (++index >= array->paa_size)
1469                         index = 0;
1470         }
1471         array->paa_deadline = deadline;
1472         /* we have a new earliest deadline, restart the timer */
1473         ptlrpc_at_set_timer(svcpt);
1474
1475         spin_unlock(&svcpt->scp_at_lock);
1476
1477         CDEBUG(D_ADAPTTO, "timeout in %+ds, asking for %d secs on %d early "
1478                "replies\n", first, at_extra, counter);
1479         if (first < 0) {
1480                 /* We're already past request deadlines before we even get a
1481                    chance to send early replies */
1482                 LCONSOLE_WARN("%s: This server is not able to keep up with "
1483                               "request traffic (cpu-bound).\n",
1484                               svcpt->scp_service->srv_name);
1485                 CWARN("earlyQ=%d reqQ=%d recA=%d, svcEst=%d, "
1486                       "delay="CFS_DURATION_T"(jiff)\n",
1487                       counter, svcpt->scp_nreqs_incoming,
1488                       svcpt->scp_nreqs_active,
1489                       at_get(&svcpt->scp_at_estimate), delay);
1490         }
1491
1492         /* we took additional refcount so entries can't be deleted from list, no
1493          * locking is needed */
1494         while (!list_empty(&work_list)) {
1495                 rq = list_entry(work_list.next, struct ptlrpc_request,
1496                                     rq_timed_list);
1497                 list_del_init(&rq->rq_timed_list);
1498
1499                 if (ptlrpc_at_send_early_reply(rq) == 0)
1500                         ptlrpc_at_add_timed(rq);
1501
1502                 ptlrpc_server_drop_request(rq);
1503         }
1504
1505         RETURN(1); /* return "did_something" for liblustre */
1506 }
1507
1508 /* Check if we are already handling earlier incarnation of this request.
1509  * Called under &req->rq_export->exp_rpc_lock locked */
1510 static int ptlrpc_server_check_resend_in_progress(struct ptlrpc_request *req)
1511 {
1512         struct ptlrpc_request   *tmp = NULL;
1513
1514         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) ||
1515             (atomic_read(&req->rq_export->exp_rpc_count) == 0))
1516                 return 0;
1517
1518         /* bulk request are aborted upon reconnect, don't try to
1519          * find a match */
1520         if (req->rq_bulk_write || req->rq_bulk_read)
1521                 return 0;
1522
1523         /* This list should not be longer than max_requests in
1524          * flights on the client, so it is not all that long.
1525          * Also we only hit this codepath in case of a resent
1526          * request which makes it even more rarely hit */
1527         list_for_each_entry(tmp, &req->rq_export->exp_reg_rpcs,
1528                                 rq_exp_list) {
1529                 /* Found duplicate one */
1530                 if (tmp->rq_xid == req->rq_xid)
1531                         goto found;
1532         }
1533         list_for_each_entry(tmp, &req->rq_export->exp_hp_rpcs,
1534                                 rq_exp_list) {
1535                 /* Found duplicate one */
1536                 if (tmp->rq_xid == req->rq_xid)
1537                         goto found;
1538         }
1539         return 0;
1540
1541 found:
1542         DEBUG_REQ(D_HA, req, "Found duplicate req in processing");
1543         DEBUG_REQ(D_HA, tmp, "Request being processed");
1544         return -EBUSY;
1545 }
1546
1547 /**
1548  * Put the request to the export list if the request may become
1549  * a high priority one.
1550  */
1551 static int ptlrpc_server_hpreq_init(struct ptlrpc_service_part *svcpt,
1552                                     struct ptlrpc_request *req)
1553 {
1554         struct list_head        *list;
1555         int              rc, hp = 0;
1556
1557         ENTRY;
1558
1559         if (svcpt->scp_service->srv_ops.so_hpreq_handler) {
1560                 rc = svcpt->scp_service->srv_ops.so_hpreq_handler(req);
1561                 if (rc < 0)
1562                         RETURN(rc);
1563                 LASSERT(rc == 0);
1564         }
1565         if (req->rq_export) {
1566                 if (req->rq_ops) {
1567                         /* Perform request specific check. We should do this
1568                          * check before the request is added into exp_hp_rpcs
1569                          * list otherwise it may hit swab race at LU-1044. */
1570                         if (req->rq_ops->hpreq_check) {
1571                                 rc = req->rq_ops->hpreq_check(req);
1572                                 /**
1573                                  * XXX: Out of all current
1574                                  * ptlrpc_hpreq_ops::hpreq_check(), only
1575                                  * ldlm_cancel_hpreq_check() can return an
1576                                  * error code; other functions assert in
1577                                  * similar places, which seems odd.
1578                                  * What also does not seem right is that
1579                                  * handlers for those RPCs do not assert
1580                                  * on the same checks, but rather handle the
1581                                  * error cases. e.g. see ost_rw_hpreq_check(),
1582                                  * and ost_brw_read(), ost_brw_write().
1583                                  */
1584                                 if (rc < 0)
1585                                         RETURN(rc);
1586                                 LASSERT(rc == 0 || rc == 1);
1587                                 hp = rc;
1588                         }
1589                         list = &req->rq_export->exp_hp_rpcs;
1590                 } else {
1591                         list = &req->rq_export->exp_reg_rpcs;
1592                 }
1593
1594                 /* do search for duplicated xid and the adding to the list
1595                  * atomically */
1596                 spin_lock_bh(&req->rq_export->exp_rpc_lock);
1597                 rc = ptlrpc_server_check_resend_in_progress(req);
1598                 if (rc < 0) {
1599                         spin_unlock_bh(&req->rq_export->exp_rpc_lock);
1600                         RETURN(rc);
1601                 }
1602                 list_add(&req->rq_exp_list, list);
1603                 spin_unlock_bh(&req->rq_export->exp_rpc_lock);
1604         }
1605
1606         ptlrpc_nrs_req_initialize(svcpt, req, !!hp);
1607
1608         RETURN(hp);
1609 }
1610
1611 /** Remove the request from the export list. */
1612 static void ptlrpc_server_hpreq_fini(struct ptlrpc_request *req)
1613 {
1614         ENTRY;
1615         if (req->rq_export) {
1616                 /* refresh lock timeout again so that client has more
1617                  * room to send lock cancel RPC. */
1618                 if (req->rq_ops && req->rq_ops->hpreq_fini)
1619                         req->rq_ops->hpreq_fini(req);
1620
1621                 spin_lock_bh(&req->rq_export->exp_rpc_lock);
1622                 list_del_init(&req->rq_exp_list);
1623                 spin_unlock_bh(&req->rq_export->exp_rpc_lock);
1624         }
1625         EXIT;
1626 }
1627
1628 static int ptlrpc_hpreq_check(struct ptlrpc_request *req)
1629 {
1630         return 1;
1631 }
1632
1633 static struct ptlrpc_hpreq_ops ptlrpc_hpreq_common = {
1634         .hpreq_check       = ptlrpc_hpreq_check,
1635 };
1636
1637 /* Hi-Priority RPC check by RPC operation code. */
1638 int ptlrpc_hpreq_handler(struct ptlrpc_request *req)
1639 {
1640         int opc = lustre_msg_get_opc(req->rq_reqmsg);
1641
1642         /* Check for export to let only reconnects for not yet evicted
1643          * export to become a HP rpc. */
1644         if ((req->rq_export != NULL) &&
1645             (opc == OBD_PING || opc == MDS_CONNECT || opc == OST_CONNECT))
1646                 req->rq_ops = &ptlrpc_hpreq_common;
1647
1648         return 0;
1649 }
1650 EXPORT_SYMBOL(ptlrpc_hpreq_handler);
1651
1652 static int ptlrpc_server_request_add(struct ptlrpc_service_part *svcpt,
1653                                      struct ptlrpc_request *req)
1654 {
1655         int     rc;
1656         ENTRY;
1657
1658         rc = ptlrpc_server_hpreq_init(svcpt, req);
1659         if (rc < 0)
1660                 RETURN(rc);
1661
1662         /* the current thread is not the processing thread for this request
1663          * since that, but request is in exp_hp_list and can be find there.
1664          * Remove all relations between request and old thread. */
1665         req->rq_svc_thread->t_env->le_ses = NULL;
1666         req->rq_svc_thread = NULL;
1667         req->rq_session.lc_thread = NULL;
1668
1669         ptlrpc_nrs_req_add(svcpt, req, !!rc);
1670
1671         RETURN(0);
1672 }
1673
1674 /**
1675  * Allow to handle high priority request
1676  * User can call it w/o any lock but need to hold
1677  * ptlrpc_service_part::scp_req_lock to get reliable result
1678  */
1679 static bool ptlrpc_server_allow_high(struct ptlrpc_service_part *svcpt,
1680                                      bool force)
1681 {
1682         int running = svcpt->scp_nthrs_running;
1683
1684         if (!nrs_svcpt_has_hp(svcpt))
1685                 return false;
1686
1687         if (force)
1688                 return true;
1689
1690         if (ptlrpc_nrs_req_throttling_nolock(svcpt, true))
1691                 return false;
1692
1693         if (unlikely(svcpt->scp_service->srv_req_portal == MDS_REQUEST_PORTAL &&
1694                      CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND))) {
1695                 /* leave just 1 thread for normal RPCs */
1696                 running = PTLRPC_NTHRS_INIT;
1697                 if (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL)
1698                         running += 1;
1699         }
1700
1701         if (svcpt->scp_nreqs_active >= running - 1)
1702                 return false;
1703
1704         if (svcpt->scp_nhreqs_active == 0)
1705                 return true;
1706
1707         return !ptlrpc_nrs_req_pending_nolock(svcpt, false) ||
1708                svcpt->scp_hreq_count < svcpt->scp_service->srv_hpreq_ratio;
1709 }
1710
1711 static bool ptlrpc_server_high_pending(struct ptlrpc_service_part *svcpt,
1712                                        bool force)
1713 {
1714         return ptlrpc_server_allow_high(svcpt, force) &&
1715                ptlrpc_nrs_req_pending_nolock(svcpt, true);
1716 }
1717
1718 /**
1719  * Only allow normal priority requests on a service that has a high-priority
1720  * queue if forced (i.e. cleanup), if there are other high priority requests
1721  * already being processed (i.e. those threads can service more high-priority
1722  * requests), or if there are enough idle threads that a later thread can do
1723  * a high priority request.
1724  * User can call it w/o any lock but need to hold
1725  * ptlrpc_service_part::scp_req_lock to get reliable result
1726  */
1727 static bool ptlrpc_server_allow_normal(struct ptlrpc_service_part *svcpt,
1728                                        bool force)
1729 {
1730         int running = svcpt->scp_nthrs_running;
1731         if (unlikely(svcpt->scp_service->srv_req_portal == MDS_REQUEST_PORTAL &&
1732                      CFS_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CANCEL_RESEND))) {
1733                 /* leave just 1 thread for normal RPCs */
1734                 running = PTLRPC_NTHRS_INIT;
1735                 if (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL)
1736                         running += 1;
1737         }
1738
1739         if (force)
1740                 return true;
1741
1742         if (ptlrpc_nrs_req_throttling_nolock(svcpt, false))
1743                 return false;
1744
1745         if (svcpt->scp_nreqs_active < running - 2)
1746                 return true;
1747
1748         if (svcpt->scp_nreqs_active >= running - 1)
1749                 return false;
1750
1751         return svcpt->scp_nhreqs_active > 0 || !nrs_svcpt_has_hp(svcpt);
1752 }
1753
1754 static bool ptlrpc_server_normal_pending(struct ptlrpc_service_part *svcpt,
1755                                          bool force)
1756 {
1757         return ptlrpc_server_allow_normal(svcpt, force) &&
1758                ptlrpc_nrs_req_pending_nolock(svcpt, false);
1759 }
1760
1761 /**
1762  * Returns true if there are requests available in incoming
1763  * request queue for processing and it is allowed to fetch them.
1764  * User can call it w/o any lock but need to hold ptlrpc_service::scp_req_lock
1765  * to get reliable result
1766  * \see ptlrpc_server_allow_normal
1767  * \see ptlrpc_server_allow high
1768  */
1769 static inline bool
1770 ptlrpc_server_request_pending(struct ptlrpc_service_part *svcpt, bool force)
1771 {
1772         return ptlrpc_server_high_pending(svcpt, force) ||
1773                ptlrpc_server_normal_pending(svcpt, force);
1774 }
1775
1776 /**
1777  * Fetch a request for processing from queue of unprocessed requests.
1778  * Favors high-priority requests.
1779  * Returns a pointer to fetched request.
1780  */
1781 static struct ptlrpc_request *
1782 ptlrpc_server_request_get(struct ptlrpc_service_part *svcpt, bool force)
1783 {
1784         struct ptlrpc_request *req = NULL;
1785         ENTRY;
1786
1787         spin_lock(&svcpt->scp_req_lock);
1788
1789         if (ptlrpc_server_high_pending(svcpt, force)) {
1790                 req = ptlrpc_nrs_req_get_nolock(svcpt, true, force);
1791                 if (req != NULL) {
1792                         svcpt->scp_hreq_count++;
1793                         goto got_request;
1794                 }
1795         }
1796
1797         if (ptlrpc_server_normal_pending(svcpt, force)) {
1798                 req = ptlrpc_nrs_req_get_nolock(svcpt, false, force);
1799                 if (req != NULL) {
1800                         svcpt->scp_hreq_count = 0;
1801                         goto got_request;
1802                 }
1803         }
1804
1805         spin_unlock(&svcpt->scp_req_lock);
1806         RETURN(NULL);
1807
1808 got_request:
1809         svcpt->scp_nreqs_active++;
1810         if (req->rq_hp)
1811                 svcpt->scp_nhreqs_active++;
1812
1813         spin_unlock(&svcpt->scp_req_lock);
1814
1815         if (likely(req->rq_export))
1816                 class_export_rpc_inc(req->rq_export);
1817
1818         RETURN(req);
1819 }
1820
1821 /**
1822  * Handle freshly incoming reqs, add to timed early reply list,
1823  * pass on to regular request queue.
1824  * All incoming requests pass through here before getting into
1825  * ptlrpc_server_handle_req later on.
1826  */
1827 static int
1828 ptlrpc_server_handle_req_in(struct ptlrpc_service_part *svcpt,
1829                             struct ptlrpc_thread *thread)
1830 {
1831         struct ptlrpc_service   *svc = svcpt->scp_service;
1832         struct ptlrpc_request   *req;
1833         __u32                   deadline;
1834         int                     rc;
1835         ENTRY;
1836
1837         spin_lock(&svcpt->scp_lock);
1838         if (list_empty(&svcpt->scp_req_incoming)) {
1839                 spin_unlock(&svcpt->scp_lock);
1840                 RETURN(0);
1841         }
1842
1843         req = list_entry(svcpt->scp_req_incoming.next,
1844                              struct ptlrpc_request, rq_list);
1845         list_del_init(&req->rq_list);
1846         svcpt->scp_nreqs_incoming--;
1847         /* Consider this still a "queued" request as far as stats are
1848          * concerned */
1849         spin_unlock(&svcpt->scp_lock);
1850
1851         /* go through security check/transform */
1852         rc = sptlrpc_svc_unwrap_request(req);
1853         switch (rc) {
1854         case SECSVC_OK:
1855                 break;
1856         case SECSVC_COMPLETE:
1857                 target_send_reply(req, 0, OBD_FAIL_MDS_ALL_REPLY_NET);
1858                 goto err_req;
1859         case SECSVC_DROP:
1860                 goto err_req;
1861         default:
1862                 LBUG();
1863         }
1864
1865         /*
1866          * for null-flavored rpc, msg has been unpacked by sptlrpc, although
1867          * redo it wouldn't be harmful.
1868          */
1869         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
1870                 rc = ptlrpc_unpack_req_msg(req, req->rq_reqlen);
1871                 if (rc != 0) {
1872                         CERROR("error unpacking request: ptl %d from %s "
1873                                "x"LPU64"\n", svc->srv_req_portal,
1874                                libcfs_id2str(req->rq_peer), req->rq_xid);
1875                         goto err_req;
1876                 }
1877         }
1878
1879         rc = lustre_unpack_req_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
1880         if (rc) {
1881                 CERROR ("error unpacking ptlrpc body: ptl %d from %s x"
1882                         LPU64"\n", svc->srv_req_portal,
1883                         libcfs_id2str(req->rq_peer), req->rq_xid);
1884                 goto err_req;
1885         }
1886
1887         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DROP_REQ_OPC) &&
1888             lustre_msg_get_opc(req->rq_reqmsg) == cfs_fail_val) {
1889                 CERROR("drop incoming rpc opc %u, x"LPU64"\n",
1890                        cfs_fail_val, req->rq_xid);
1891                 goto err_req;
1892         }
1893
1894         rc = -EINVAL;
1895         if (lustre_msg_get_type(req->rq_reqmsg) != PTL_RPC_MSG_REQUEST) {
1896                 CERROR("wrong packet type received (type=%u) from %s\n",
1897                        lustre_msg_get_type(req->rq_reqmsg),
1898                        libcfs_id2str(req->rq_peer));
1899                 goto err_req;
1900         }
1901
1902         switch(lustre_msg_get_opc(req->rq_reqmsg)) {
1903         case MDS_WRITEPAGE:
1904         case OST_WRITE:
1905                 req->rq_bulk_write = 1;
1906                 break;
1907         case MDS_READPAGE:
1908         case OST_READ:
1909         case MGS_CONFIG_READ:
1910                 req->rq_bulk_read = 1;
1911                 break;
1912         }
1913
1914         CDEBUG(D_RPCTRACE, "got req x"LPU64"\n", req->rq_xid);
1915
1916         req->rq_export = class_conn2export(
1917                 lustre_msg_get_handle(req->rq_reqmsg));
1918         if (req->rq_export) {
1919                 rc = ptlrpc_check_req(req);
1920                 if (rc == 0) {
1921                         rc = sptlrpc_target_export_check(req->rq_export, req);
1922                         if (rc)
1923                                 DEBUG_REQ(D_ERROR, req, "DROPPING req with "
1924                                           "illegal security flavor,");
1925                 }
1926
1927                 if (rc)
1928                         goto err_req;
1929                 ptlrpc_update_export_timer(req->rq_export, 0);
1930         }
1931
1932         /* req_in handling should/must be fast */
1933         if (cfs_time_current_sec() - req->rq_arrival_time.tv_sec > 5)
1934                 DEBUG_REQ(D_WARNING, req, "Slow req_in handling "CFS_DURATION_T"s",
1935                           cfs_time_sub(cfs_time_current_sec(),
1936                                        req->rq_arrival_time.tv_sec));
1937
1938         /* Set rpc server deadline and add it to the timed list */
1939         deadline = (lustre_msghdr_get_flags(req->rq_reqmsg) &
1940                     MSGHDR_AT_SUPPORT) ?
1941                    /* The max time the client expects us to take */
1942                    lustre_msg_get_timeout(req->rq_reqmsg) : obd_timeout;
1943         req->rq_deadline = req->rq_arrival_time.tv_sec + deadline;
1944         if (unlikely(deadline == 0)) {
1945                 DEBUG_REQ(D_ERROR, req, "Dropping request with 0 timeout");
1946                 goto err_req;
1947         }
1948
1949         /* Skip early reply */
1950         if (OBD_FAIL_PRECHECK(OBD_FAIL_MDS_RESEND))
1951                 req->rq_deadline += obd_timeout;
1952
1953         req->rq_svc_thread = thread;
1954         if (thread != NULL) {
1955                 /* initialize request session, it is needed for request
1956                  * processing by target */
1957                 rc = lu_context_init(&req->rq_session, LCT_SERVER_SESSION |
1958                                                        LCT_NOREF);
1959                 if (rc) {
1960                         CERROR("%s: failure to initialize session: rc = %d\n",
1961                                thread->t_name, rc);
1962                         goto err_req;
1963                 }
1964                 req->rq_session.lc_thread = thread;
1965                 lu_context_enter(&req->rq_session);
1966                 thread->t_env->le_ses = &req->rq_session;
1967         }
1968
1969         ptlrpc_at_add_timed(req);
1970
1971         /* Move it over to the request processing queue */
1972         rc = ptlrpc_server_request_add(svcpt, req);
1973         if (rc)
1974                 GOTO(err_req, rc);
1975
1976         wake_up(&svcpt->scp_waitq);
1977         RETURN(1);
1978
1979 err_req:
1980         ptlrpc_server_finish_request(svcpt, req);
1981
1982         RETURN(1);
1983 }
1984
1985 /**
1986  * Main incoming request handling logic.
1987  * Calls handler function from service to do actual processing.
1988  */
1989 static int
1990 ptlrpc_server_handle_request(struct ptlrpc_service_part *svcpt,
1991                              struct ptlrpc_thread *thread)
1992 {
1993         struct ptlrpc_service   *svc = svcpt->scp_service;
1994         struct ptlrpc_request   *request;
1995         struct timeval           work_start;
1996         struct timeval           work_end;
1997         long                     timediff;
1998         int                      fail_opc = 0;
1999
2000         ENTRY;
2001
2002         request = ptlrpc_server_request_get(svcpt, false);
2003         if (request == NULL)
2004                 RETURN(0);
2005
2006         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT))
2007                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT;
2008         else if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_TIMEOUT))
2009                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_TIMEOUT;
2010
2011         if (unlikely(fail_opc)) {
2012                 if (request->rq_export && request->rq_ops)
2013                         OBD_FAIL_TIMEOUT(fail_opc, 4);
2014         }
2015
2016         ptlrpc_rqphase_move(request, RQ_PHASE_INTERPRET);
2017
2018         if(OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DUMP_LOG))
2019                 libcfs_debug_dumplog();
2020
2021         do_gettimeofday(&work_start);
2022         timediff = cfs_timeval_sub(&work_start, &request->rq_arrival_time,NULL);
2023         if (likely(svc->srv_stats != NULL)) {
2024                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQWAIT_CNTR,
2025                                     timediff);
2026                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQQDEPTH_CNTR,
2027                                     svcpt->scp_nreqs_incoming);
2028                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQACTIVE_CNTR,
2029                                     svcpt->scp_nreqs_active);
2030                 lprocfs_counter_add(svc->srv_stats, PTLRPC_TIMEOUT,
2031                                     at_get(&svcpt->scp_at_estimate));
2032         }
2033
2034         if (likely(request->rq_export)) {
2035                 if (unlikely(ptlrpc_check_req(request)))
2036                         goto put_conn;
2037                 ptlrpc_update_export_timer(request->rq_export, timediff >> 19);
2038         }
2039
2040         /* Discard requests queued for longer than the deadline.
2041            The deadline is increased if we send an early reply. */
2042         if (cfs_time_current_sec() > request->rq_deadline) {
2043                 DEBUG_REQ(D_ERROR, request, "Dropping timed-out request from %s"
2044                           ": deadline "CFS_DURATION_T":"CFS_DURATION_T"s ago\n",
2045                           libcfs_id2str(request->rq_peer),
2046                           cfs_time_sub(request->rq_deadline,
2047                           request->rq_arrival_time.tv_sec),
2048                           cfs_time_sub(cfs_time_current_sec(),
2049                           request->rq_deadline));
2050                 goto put_conn;
2051         }
2052
2053         CDEBUG(D_RPCTRACE, "Handling RPC pname:cluuid+ref:pid:xid:nid:opc "
2054                "%s:%s+%d:%d:x"LPU64":%s:%d\n", current_comm(),
2055                (request->rq_export ?
2056                 (char *)request->rq_export->exp_client_uuid.uuid : "0"),
2057                (request->rq_export ?
2058                 atomic_read(&request->rq_export->exp_refcount) : -99),
2059                lustre_msg_get_status(request->rq_reqmsg), request->rq_xid,
2060                libcfs_id2str(request->rq_peer),
2061                lustre_msg_get_opc(request->rq_reqmsg));
2062
2063         if (lustre_msg_get_opc(request->rq_reqmsg) != OBD_PING)
2064                 CFS_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_PAUSE_REQ, cfs_fail_val);
2065
2066         CDEBUG(D_NET, "got req "LPU64"\n", request->rq_xid);
2067
2068         /* re-assign request and sesson thread to the current one */
2069         request->rq_svc_thread = thread;
2070         if (thread != NULL) {
2071                 LASSERT(request->rq_session.lc_thread == NULL);
2072                 request->rq_session.lc_thread = thread;
2073                 thread->t_env->le_ses = &request->rq_session;
2074         }
2075         svc->srv_ops.so_req_handler(request);
2076
2077         ptlrpc_rqphase_move(request, RQ_PHASE_COMPLETE);
2078
2079 put_conn:
2080         if (unlikely(cfs_time_current_sec() > request->rq_deadline)) {
2081                      DEBUG_REQ(D_WARNING, request, "Request took longer "
2082                                "than estimated ("CFS_DURATION_T":"CFS_DURATION_T"s);"
2083                                " client may timeout.",
2084                                cfs_time_sub(request->rq_deadline,
2085                                             request->rq_arrival_time.tv_sec),
2086                                cfs_time_sub(cfs_time_current_sec(),
2087                                             request->rq_deadline));
2088         }
2089
2090         do_gettimeofday(&work_end);
2091         timediff = cfs_timeval_sub(&work_end, &work_start, NULL);
2092         CDEBUG(D_RPCTRACE, "Handled RPC pname:cluuid+ref:pid:xid:nid:opc "
2093                "%s:%s+%d:%d:x"LPU64":%s:%d Request procesed in "
2094                "%ldus (%ldus total) trans "LPU64" rc %d/%d\n",
2095                 current_comm(),
2096                 (request->rq_export ?
2097                  (char *)request->rq_export->exp_client_uuid.uuid : "0"),
2098                 (request->rq_export ?
2099                  atomic_read(&request->rq_export->exp_refcount) : -99),
2100                 lustre_msg_get_status(request->rq_reqmsg),
2101                 request->rq_xid,
2102                 libcfs_id2str(request->rq_peer),
2103                 lustre_msg_get_opc(request->rq_reqmsg),
2104                 timediff,
2105                 cfs_timeval_sub(&work_end, &request->rq_arrival_time, NULL),
2106                 (request->rq_repmsg ?
2107                  lustre_msg_get_transno(request->rq_repmsg) :
2108                  request->rq_transno),
2109                 request->rq_status,
2110                 (request->rq_repmsg ?
2111                  lustre_msg_get_status(request->rq_repmsg) : -999));
2112         if (likely(svc->srv_stats != NULL && request->rq_reqmsg != NULL)) {
2113                 __u32 op = lustre_msg_get_opc(request->rq_reqmsg);
2114                 int opc = opcode_offset(op);
2115                 if (opc > 0 && !(op == LDLM_ENQUEUE || op == MDS_REINT)) {
2116                         LASSERT(opc < LUSTRE_MAX_OPCODES);
2117                         lprocfs_counter_add(svc->srv_stats,
2118                                             opc + EXTRA_MAX_OPCODES,
2119                                             timediff);
2120                 }
2121         }
2122         if (unlikely(request->rq_early_count)) {
2123                 DEBUG_REQ(D_ADAPTTO, request,
2124                           "sent %d early replies before finishing in "
2125                           CFS_DURATION_T"s",
2126                           request->rq_early_count,
2127                           cfs_time_sub(work_end.tv_sec,
2128                           request->rq_arrival_time.tv_sec));
2129         }
2130
2131         ptlrpc_server_finish_active_request(svcpt, request);
2132
2133         RETURN(1);
2134 }
2135
2136 /**
2137  * An internal function to process a single reply state object.
2138  */
2139 static int
2140 ptlrpc_handle_rs(struct ptlrpc_reply_state *rs)
2141 {
2142         struct ptlrpc_service_part *svcpt = rs->rs_svcpt;
2143         struct ptlrpc_service     *svc = svcpt->scp_service;
2144         struct obd_export         *exp;
2145         int                        nlocks;
2146         int                        been_handled;
2147         ENTRY;
2148
2149         exp = rs->rs_export;
2150
2151         LASSERT(rs->rs_difficult);
2152         LASSERT(rs->rs_scheduled);
2153         LASSERT(list_empty(&rs->rs_list));
2154
2155         spin_lock(&exp->exp_lock);
2156         /* Noop if removed already */
2157         list_del_init(&rs->rs_exp_list);
2158         spin_unlock(&exp->exp_lock);
2159
2160         /* The disk commit callback holds exp_uncommitted_replies_lock while it
2161          * iterates over newly committed replies, removing them from
2162          * exp_uncommitted_replies.  It then drops this lock and schedules the
2163          * replies it found for handling here.
2164          *
2165          * We can avoid contention for exp_uncommitted_replies_lock between the
2166          * HRT threads and further commit callbacks by checking rs_committed
2167          * which is set in the commit callback while it holds both
2168          * rs_lock and exp_uncommitted_reples.
2169          *
2170          * If we see rs_committed clear, the commit callback _may_ not have
2171          * handled this reply yet and we race with it to grab
2172          * exp_uncommitted_replies_lock before removing the reply from
2173          * exp_uncommitted_replies.  Note that if we lose the race and the
2174          * reply has already been removed, list_del_init() is a noop.
2175          *
2176          * If we see rs_committed set, we know the commit callback is handling,
2177          * or has handled this reply since store reordering might allow us to
2178          * see rs_committed set out of sequence.  But since this is done
2179          * holding rs_lock, we can be sure it has all completed once we hold
2180          * rs_lock, which we do right next.
2181          */
2182         if (!rs->rs_committed) {
2183                 spin_lock(&exp->exp_uncommitted_replies_lock);
2184                 list_del_init(&rs->rs_obd_list);
2185                 spin_unlock(&exp->exp_uncommitted_replies_lock);
2186         }
2187
2188         spin_lock(&rs->rs_lock);
2189
2190         been_handled = rs->rs_handled;
2191         rs->rs_handled = 1;
2192
2193         nlocks = rs->rs_nlocks;                 /* atomic "steal", but */
2194         rs->rs_nlocks = 0;                      /* locks still on rs_locks! */
2195
2196         if (nlocks == 0 && !been_handled) {
2197                 /* If we see this, we should already have seen the warning
2198                  * in mds_steal_ack_locks()  */
2199                 CDEBUG(D_HA, "All locks stolen from rs %p x"LPD64".t"LPD64
2200                        " o%d NID %s\n",
2201                        rs,
2202                        rs->rs_xid, rs->rs_transno, rs->rs_opc,
2203                        libcfs_nid2str(exp->exp_connection->c_peer.nid));
2204         }
2205
2206         if ((!been_handled && rs->rs_on_net) || nlocks > 0) {
2207                 spin_unlock(&rs->rs_lock);
2208
2209                 if (!been_handled && rs->rs_on_net) {
2210                         LNetMDUnlink(rs->rs_md_h);
2211                         /* Ignore return code; we're racing with completion */
2212                 }
2213
2214                 while (nlocks-- > 0)
2215                         ldlm_lock_decref(&rs->rs_locks[nlocks],
2216                                          rs->rs_modes[nlocks]);
2217
2218                 spin_lock(&rs->rs_lock);
2219         }
2220
2221         rs->rs_scheduled = 0;
2222
2223         if (!rs->rs_on_net) {
2224                 /* Off the net */
2225                 spin_unlock(&rs->rs_lock);
2226
2227                 class_export_put (exp);
2228                 rs->rs_export = NULL;
2229                 ptlrpc_rs_decref(rs);
2230                 if (atomic_dec_and_test(&svcpt->scp_nreps_difficult) &&
2231                     svc->srv_is_stopping)
2232                         wake_up_all(&svcpt->scp_waitq);
2233                 RETURN(1);
2234         }
2235
2236         /* still on the net; callback will schedule */
2237         spin_unlock(&rs->rs_lock);
2238         RETURN(1);
2239 }
2240
2241
2242 static void
2243 ptlrpc_check_rqbd_pool(struct ptlrpc_service_part *svcpt)
2244 {
2245         int avail = svcpt->scp_nrqbds_posted;
2246         int low_water = test_req_buffer_pressure ? 0 :
2247                         svcpt->scp_service->srv_nbuf_per_group / 2;
2248
2249         /* NB I'm not locking; just looking. */
2250
2251         /* CAVEAT EMPTOR: We might be allocating buffers here because we've
2252          * allowed the request history to grow out of control.  We could put a
2253          * sanity check on that here and cull some history if we need the
2254          * space. */
2255
2256         if (avail <= low_water)
2257                 ptlrpc_grow_req_bufs(svcpt, 1);
2258
2259         if (svcpt->scp_service->srv_stats) {
2260                 lprocfs_counter_add(svcpt->scp_service->srv_stats,
2261                                     PTLRPC_REQBUF_AVAIL_CNTR, avail);
2262         }
2263 }
2264
2265 static int
2266 ptlrpc_retry_rqbds(void *arg)
2267 {
2268         struct ptlrpc_service_part *svcpt = (struct ptlrpc_service_part *)arg;
2269
2270         svcpt->scp_rqbd_timeout = 0;
2271         return -ETIMEDOUT;
2272 }
2273
2274 static inline int
2275 ptlrpc_threads_enough(struct ptlrpc_service_part *svcpt)
2276 {
2277         return svcpt->scp_nreqs_active <
2278                svcpt->scp_nthrs_running - 1 -
2279                (svcpt->scp_service->srv_ops.so_hpreq_handler != NULL);
2280 }
2281
2282 /**
2283  * allowed to create more threads
2284  * user can call it w/o any lock but need to hold
2285  * ptlrpc_service_part::scp_lock to get reliable result
2286  */
2287 static inline int
2288 ptlrpc_threads_increasable(struct ptlrpc_service_part *svcpt)
2289 {
2290         return svcpt->scp_nthrs_running +
2291                svcpt->scp_nthrs_starting <
2292                svcpt->scp_service->srv_nthrs_cpt_limit;
2293 }
2294
2295 /**
2296  * too many requests and allowed to create more threads
2297  */
2298 static inline int
2299 ptlrpc_threads_need_create(struct ptlrpc_service_part *svcpt)
2300 {
2301         return !ptlrpc_threads_enough(svcpt) &&
2302                 ptlrpc_threads_increasable(svcpt);
2303 }
2304
2305 static inline int
2306 ptlrpc_thread_stopping(struct ptlrpc_thread *thread)
2307 {
2308         return thread_is_stopping(thread) ||
2309                thread->t_svcpt->scp_service->srv_is_stopping;
2310 }
2311
2312 static inline int
2313 ptlrpc_rqbd_pending(struct ptlrpc_service_part *svcpt)
2314 {
2315         return !list_empty(&svcpt->scp_rqbd_idle) &&
2316                svcpt->scp_rqbd_timeout == 0;
2317 }
2318
2319 static inline int
2320 ptlrpc_at_check(struct ptlrpc_service_part *svcpt)
2321 {
2322         return svcpt->scp_at_check;
2323 }
2324
2325 /**
2326  * requests wait on preprocessing
2327  * user can call it w/o any lock but need to hold
2328  * ptlrpc_service_part::scp_lock to get reliable result
2329  */
2330 static inline int
2331 ptlrpc_server_request_incoming(struct ptlrpc_service_part *svcpt)
2332 {
2333         return !list_empty(&svcpt->scp_req_incoming);
2334 }
2335
2336 static __attribute__((__noinline__)) int
2337 ptlrpc_wait_event(struct ptlrpc_service_part *svcpt,
2338                   struct ptlrpc_thread *thread)
2339 {
2340         /* Don't exit while there are replies to be handled */
2341         struct l_wait_info lwi = LWI_TIMEOUT(svcpt->scp_rqbd_timeout,
2342                                              ptlrpc_retry_rqbds, svcpt);
2343
2344         lc_watchdog_disable(thread->t_watchdog);
2345
2346         cond_resched();
2347
2348         l_wait_event_exclusive_head(svcpt->scp_waitq,
2349                                 ptlrpc_thread_stopping(thread) ||
2350                                 ptlrpc_server_request_incoming(svcpt) ||
2351                                 ptlrpc_server_request_pending(svcpt, false) ||
2352                                 ptlrpc_rqbd_pending(svcpt) ||
2353                                 ptlrpc_at_check(svcpt), &lwi);
2354
2355         if (ptlrpc_thread_stopping(thread))
2356                 return -EINTR;
2357
2358         lc_watchdog_touch(thread->t_watchdog,
2359                           ptlrpc_server_get_timeout(svcpt));
2360         return 0;
2361 }
2362
2363 /**
2364  * Main thread body for service threads.
2365  * Waits in a loop waiting for new requests to process to appear.
2366  * Every time an incoming requests is added to its queue, a waitq
2367  * is woken up and one of the threads will handle it.
2368  */
2369 static int ptlrpc_main(void *arg)
2370 {
2371         struct ptlrpc_thread            *thread = (struct ptlrpc_thread *)arg;
2372         struct ptlrpc_service_part      *svcpt = thread->t_svcpt;
2373         struct ptlrpc_service           *svc = svcpt->scp_service;
2374         struct ptlrpc_reply_state       *rs;
2375         struct group_info *ginfo = NULL;
2376         struct lu_env *env;
2377         int counter = 0, rc = 0;
2378         ENTRY;
2379
2380         thread->t_pid = current_pid();
2381         unshare_fs_struct();
2382
2383         /* NB: we will call cfs_cpt_bind() for all threads, because we
2384          * might want to run lustre server only on a subset of system CPUs,
2385          * in that case ->scp_cpt is CFS_CPT_ANY */
2386         rc = cfs_cpt_bind(svc->srv_cptable, svcpt->scp_cpt);
2387         if (rc != 0) {
2388                 CWARN("%s: failed to bind %s on CPT %d\n",
2389                       svc->srv_name, thread->t_name, svcpt->scp_cpt);
2390         }
2391
2392         ginfo = groups_alloc(0);
2393         if (!ginfo) {
2394                 rc = -ENOMEM;
2395                 goto out;
2396         }
2397
2398         set_current_groups(ginfo);
2399         put_group_info(ginfo);
2400
2401         if (svc->srv_ops.so_thr_init != NULL) {
2402                 rc = svc->srv_ops.so_thr_init(thread);
2403                 if (rc)
2404                         goto out;
2405         }
2406
2407         OBD_ALLOC_PTR(env);
2408         if (env == NULL) {
2409                 rc = -ENOMEM;
2410                 goto out_srv_fini;
2411         }
2412
2413         rc = lu_context_init(&env->le_ctx,
2414                              svc->srv_ctx_tags|LCT_REMEMBER|LCT_NOREF);
2415         if (rc)
2416                 goto out_srv_fini;
2417
2418         thread->t_env = env;
2419         env->le_ctx.lc_thread = thread;
2420         env->le_ctx.lc_cookie = 0x6;
2421
2422         while (!list_empty(&svcpt->scp_rqbd_idle)) {
2423                 rc = ptlrpc_server_post_idle_rqbds(svcpt);
2424                 if (rc >= 0)
2425                         continue;
2426
2427                 CERROR("Failed to post rqbd for %s on CPT %d: %d\n",
2428                         svc->srv_name, svcpt->scp_cpt, rc);
2429                 goto out_srv_fini;
2430         }
2431
2432         /* Alloc reply state structure for this one */
2433         OBD_ALLOC_LARGE(rs, svc->srv_max_reply_size);
2434         if (!rs) {
2435                 rc = -ENOMEM;
2436                 goto out_srv_fini;
2437         }
2438
2439         spin_lock(&svcpt->scp_lock);
2440
2441         LASSERT(thread_is_starting(thread));
2442         thread_clear_flags(thread, SVC_STARTING);
2443
2444         LASSERT(svcpt->scp_nthrs_starting == 1);
2445         svcpt->scp_nthrs_starting--;
2446
2447         /* SVC_STOPPING may already be set here if someone else is trying
2448          * to stop the service while this new thread has been dynamically
2449          * forked. We still set SVC_RUNNING to let our creator know that
2450          * we are now running, however we will exit as soon as possible */
2451         thread_add_flags(thread, SVC_RUNNING);
2452         svcpt->scp_nthrs_running++;
2453         spin_unlock(&svcpt->scp_lock);
2454
2455         /* wake up our creator in case he's still waiting. */
2456         wake_up(&thread->t_ctl_waitq);
2457
2458         thread->t_watchdog = lc_watchdog_add(ptlrpc_server_get_timeout(svcpt),
2459                                              NULL, NULL);
2460
2461         spin_lock(&svcpt->scp_rep_lock);
2462         list_add(&rs->rs_list, &svcpt->scp_rep_idle);
2463         wake_up(&svcpt->scp_rep_waitq);
2464         spin_unlock(&svcpt->scp_rep_lock);
2465
2466         CDEBUG(D_NET, "service thread %d (#%d) started\n", thread->t_id,
2467                svcpt->scp_nthrs_running);
2468
2469         /* XXX maintain a list of all managed devices: insert here */
2470         while (!ptlrpc_thread_stopping(thread)) {
2471                 if (ptlrpc_wait_event(svcpt, thread))
2472                         break;
2473
2474                 ptlrpc_check_rqbd_pool(svcpt);
2475
2476                 if (ptlrpc_threads_need_create(svcpt)) {
2477                         /* Ignore return code - we tried... */
2478                         ptlrpc_start_thread(svcpt, 0);
2479                 }
2480
2481                 /* reset le_ses to initial state */
2482                 env->le_ses = NULL;
2483                 /* Process all incoming reqs before handling any */
2484                 if (ptlrpc_server_request_incoming(svcpt)) {
2485                         lu_context_enter(&env->le_ctx);
2486                         ptlrpc_server_handle_req_in(svcpt, thread);
2487                         lu_context_exit(&env->le_ctx);
2488
2489                         /* but limit ourselves in case of flood */
2490                         if (counter++ < 100)
2491                                 continue;
2492                         counter = 0;
2493                 }
2494
2495                 if (ptlrpc_at_check(svcpt))
2496                         ptlrpc_at_check_timed(svcpt);
2497
2498                 if (ptlrpc_server_request_pending(svcpt, false)) {
2499                         lu_context_enter(&env->le_ctx);
2500                         ptlrpc_server_handle_request(svcpt, thread);
2501                         lu_context_exit(&env->le_ctx);
2502                 }
2503
2504                 if (ptlrpc_rqbd_pending(svcpt) &&
2505                     ptlrpc_server_post_idle_rqbds(svcpt) < 0) {
2506                         /* I just failed to repost request buffers.
2507                          * Wait for a timeout (unless something else
2508                          * happens) before I try again */
2509                         svcpt->scp_rqbd_timeout = cfs_time_seconds(1) / 10;
2510                         CDEBUG(D_RPCTRACE, "Posted buffers: %d\n",
2511                                svcpt->scp_nrqbds_posted);
2512                 }
2513         }
2514
2515         lc_watchdog_delete(thread->t_watchdog);
2516         thread->t_watchdog = NULL;
2517
2518 out_srv_fini:
2519         /*
2520          * deconstruct service specific state created by ptlrpc_start_thread()
2521          */
2522         if (svc->srv_ops.so_thr_done != NULL)
2523                 svc->srv_ops.so_thr_done(thread);
2524
2525         if (env != NULL) {
2526                 lu_context_fini(&env->le_ctx);
2527                 OBD_FREE_PTR(env);
2528         }
2529 out:
2530         CDEBUG(D_RPCTRACE, "service thread [ %p : %u ] %d exiting: rc %d\n",
2531                thread, thread->t_pid, thread->t_id, rc);
2532
2533         spin_lock(&svcpt->scp_lock);
2534         if (thread_test_and_clear_flags(thread, SVC_STARTING))
2535                 svcpt->scp_nthrs_starting--;
2536
2537         if (thread_test_and_clear_flags(thread, SVC_RUNNING)) {
2538                 /* must know immediately */
2539                 svcpt->scp_nthrs_running--;
2540         }
2541
2542         thread->t_id = rc;
2543         thread_add_flags(thread, SVC_STOPPED);
2544
2545         wake_up(&thread->t_ctl_waitq);
2546         spin_unlock(&svcpt->scp_lock);
2547
2548         return rc;
2549 }
2550
2551 static int hrt_dont_sleep(struct ptlrpc_hr_thread *hrt,
2552                           struct list_head *replies)
2553 {
2554         int result;
2555
2556         spin_lock(&hrt->hrt_lock);
2557
2558         list_splice_init(&hrt->hrt_queue, replies);
2559         result = ptlrpc_hr.hr_stopping || !list_empty(replies);
2560
2561         spin_unlock(&hrt->hrt_lock);
2562         return result;
2563 }
2564
2565 /**
2566  * Main body of "handle reply" function.
2567  * It processes acked reply states
2568  */
2569 static int ptlrpc_hr_main(void *arg)
2570 {
2571         struct ptlrpc_hr_thread         *hrt = (struct ptlrpc_hr_thread *)arg;
2572         struct ptlrpc_hr_partition      *hrp = hrt->hrt_partition;
2573         struct list_head                replies;
2574         char                            threadname[20];
2575         int                             rc;
2576
2577         INIT_LIST_HEAD(&replies);
2578         snprintf(threadname, sizeof(threadname), "ptlrpc_hr%02d_%03d",
2579                  hrp->hrp_cpt, hrt->hrt_id);
2580         unshare_fs_struct();
2581
2582         rc = cfs_cpt_bind(ptlrpc_hr.hr_cpt_table, hrp->hrp_cpt);
2583         if (rc != 0) {
2584                 CWARN("Failed to bind %s on CPT %d of CPT table %p: rc = %d\n",
2585                       threadname, hrp->hrp_cpt, ptlrpc_hr.hr_cpt_table, rc);
2586         }
2587
2588         atomic_inc(&hrp->hrp_nstarted);
2589         wake_up(&ptlrpc_hr.hr_waitq);
2590
2591         while (!ptlrpc_hr.hr_stopping) {
2592                 l_wait_condition(hrt->hrt_waitq, hrt_dont_sleep(hrt, &replies));
2593
2594                 while (!list_empty(&replies)) {
2595                         struct ptlrpc_reply_state *rs;
2596
2597                         rs = list_entry(replies.prev,
2598                                         struct ptlrpc_reply_state,
2599                                         rs_list);
2600                         list_del_init(&rs->rs_list);
2601                         ptlrpc_handle_rs(rs);
2602                 }
2603         }
2604
2605         atomic_inc(&hrp->hrp_nstopped);
2606         wake_up(&ptlrpc_hr.hr_waitq);
2607
2608         return 0;
2609 }
2610
2611 static void ptlrpc_stop_hr_threads(void)
2612 {
2613         struct ptlrpc_hr_partition      *hrp;
2614         int                             i;
2615         int                             j;
2616
2617         ptlrpc_hr.hr_stopping = 1;
2618
2619         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
2620                 if (hrp->hrp_thrs == NULL)
2621                         continue; /* uninitialized */
2622                 for (j = 0; j < hrp->hrp_nthrs; j++)
2623                         wake_up_all(&hrp->hrp_thrs[j].hrt_waitq);
2624         }
2625
2626         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
2627                 if (hrp->hrp_thrs == NULL)
2628                         continue; /* uninitialized */
2629                 wait_event(ptlrpc_hr.hr_waitq,
2630                                atomic_read(&hrp->hrp_nstopped) ==
2631                                atomic_read(&hrp->hrp_nstarted));
2632         }
2633 }
2634
2635 static int ptlrpc_start_hr_threads(void)
2636 {
2637         struct ptlrpc_hr_partition      *hrp;
2638         int                             i;
2639         int                             j;
2640         ENTRY;
2641
2642         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
2643                 int     rc = 0;
2644
2645                 for (j = 0; j < hrp->hrp_nthrs; j++) {
2646                         struct ptlrpc_hr_thread *hrt = &hrp->hrp_thrs[j];
2647                         struct task_struct *task;
2648
2649                         task = kthread_run(ptlrpc_hr_main,
2650                                            &hrp->hrp_thrs[j],
2651                                            "ptlrpc_hr%02d_%03d",
2652                                            hrp->hrp_cpt,
2653                                            hrt->hrt_id);
2654                         if (IS_ERR(task)) {
2655                                 rc = PTR_ERR(task);
2656                                 break;
2657                         }
2658                 }
2659
2660                 wait_event(ptlrpc_hr.hr_waitq,
2661                            atomic_read(&hrp->hrp_nstarted) == j);
2662
2663                 if (rc < 0) {
2664                         CERROR("cannot start reply handler thread %d:%d: "
2665                                "rc = %d\n", i, j, rc);
2666                         ptlrpc_stop_hr_threads();
2667                         RETURN(rc);
2668                 }
2669         }
2670
2671         RETURN(0);
2672 }
2673
2674 static void ptlrpc_svcpt_stop_threads(struct ptlrpc_service_part *svcpt)
2675 {
2676         struct l_wait_info      lwi = { 0 };
2677         struct ptlrpc_thread    *thread;
2678         struct list_head        zombie;
2679
2680         ENTRY;
2681
2682         CDEBUG(D_INFO, "Stopping threads for service %s\n",
2683                svcpt->scp_service->srv_name);
2684
2685         INIT_LIST_HEAD(&zombie);
2686         spin_lock(&svcpt->scp_lock);
2687         /* let the thread know that we would like it to stop asap */
2688         list_for_each_entry(thread, &svcpt->scp_threads, t_link) {
2689                 CDEBUG(D_INFO, "Stopping thread %s #%u\n",
2690                        svcpt->scp_service->srv_thread_name, thread->t_id);
2691                 thread_add_flags(thread, SVC_STOPPING);
2692         }
2693
2694         wake_up_all(&svcpt->scp_waitq);
2695
2696         while (!list_empty(&svcpt->scp_threads)) {
2697                 thread = list_entry(svcpt->scp_threads.next,
2698                                         struct ptlrpc_thread, t_link);
2699                 if (thread_is_stopped(thread)) {
2700                         list_del(&thread->t_link);
2701                         list_add(&thread->t_link, &zombie);
2702                         continue;
2703                 }
2704                 spin_unlock(&svcpt->scp_lock);
2705
2706                 CDEBUG(D_INFO, "waiting for stopping-thread %s #%u\n",
2707                        svcpt->scp_service->srv_thread_name, thread->t_id);
2708                 l_wait_event(thread->t_ctl_waitq,
2709                              thread_is_stopped(thread), &lwi);
2710
2711                 spin_lock(&svcpt->scp_lock);
2712         }
2713
2714         spin_unlock(&svcpt->scp_lock);
2715
2716         while (!list_empty(&zombie)) {
2717                 thread = list_entry(zombie.next,
2718                                         struct ptlrpc_thread, t_link);
2719                 list_del(&thread->t_link);
2720                 OBD_FREE_PTR(thread);
2721         }
2722         EXIT;
2723 }
2724
2725 /**
2726  * Stops all threads of a particular service \a svc
2727  */
2728 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc)
2729 {
2730         struct ptlrpc_service_part *svcpt;
2731         int                        i;
2732         ENTRY;
2733
2734         ptlrpc_service_for_each_part(svcpt, i, svc) {
2735                 if (svcpt->scp_service != NULL)
2736                         ptlrpc_svcpt_stop_threads(svcpt);
2737         }
2738
2739         EXIT;
2740 }
2741 EXPORT_SYMBOL(ptlrpc_stop_all_threads);
2742
2743 int ptlrpc_start_threads(struct ptlrpc_service *svc)
2744 {
2745         int     rc = 0;
2746         int     i;
2747         int     j;
2748         ENTRY;
2749
2750         /* We require 2 threads min, see note in ptlrpc_server_handle_request */
2751         LASSERT(svc->srv_nthrs_cpt_init >= PTLRPC_NTHRS_INIT);
2752
2753         for (i = 0; i < svc->srv_ncpts; i++) {
2754                 for (j = 0; j < svc->srv_nthrs_cpt_init; j++) {
2755                         rc = ptlrpc_start_thread(svc->srv_parts[i], 1);
2756                         if (rc == 0)
2757                                 continue;
2758
2759                         if (rc != -EMFILE)
2760                                 goto failed;
2761                         /* We have enough threads, don't start more. b=15759 */
2762                         break;
2763                 }
2764         }
2765
2766         RETURN(0);
2767  failed:
2768         CERROR("cannot start %s thread #%d_%d: rc %d\n",
2769                svc->srv_thread_name, i, j, rc);
2770         ptlrpc_stop_all_threads(svc);
2771         RETURN(rc);
2772 }
2773 EXPORT_SYMBOL(ptlrpc_start_threads);
2774
2775 int ptlrpc_start_thread(struct ptlrpc_service_part *svcpt, int wait)
2776 {
2777         struct l_wait_info      lwi = { 0 };
2778         struct ptlrpc_thread    *thread;
2779         struct ptlrpc_service   *svc;
2780         struct task_struct      *task;
2781         int                     rc;
2782         ENTRY;
2783
2784         LASSERT(svcpt != NULL);
2785
2786         svc = svcpt->scp_service;
2787
2788         CDEBUG(D_RPCTRACE, "%s[%d] started %d min %d max %d\n",
2789                svc->srv_name, svcpt->scp_cpt, svcpt->scp_nthrs_running,
2790                svc->srv_nthrs_cpt_init, svc->srv_nthrs_cpt_limit);
2791
2792  again:
2793         if (unlikely(svc->srv_is_stopping))
2794                 RETURN(-ESRCH);
2795
2796         if (!ptlrpc_threads_increasable(svcpt) ||
2797             (OBD_FAIL_CHECK(OBD_FAIL_TGT_TOOMANY_THREADS) &&
2798              svcpt->scp_nthrs_running == svc->srv_nthrs_cpt_init - 1))
2799                 RETURN(-EMFILE);
2800
2801         OBD_CPT_ALLOC_PTR(thread, svc->srv_cptable, svcpt->scp_cpt);
2802         if (thread == NULL)
2803                 RETURN(-ENOMEM);
2804         init_waitqueue_head(&thread->t_ctl_waitq);
2805
2806         spin_lock(&svcpt->scp_lock);
2807         if (!ptlrpc_threads_increasable(svcpt)) {
2808                 spin_unlock(&svcpt->scp_lock);
2809                 OBD_FREE_PTR(thread);
2810                 RETURN(-EMFILE);
2811         }
2812
2813         if (svcpt->scp_nthrs_starting != 0) {
2814                 /* serialize starting because some modules (obdfilter)
2815                  * might require unique and contiguous t_id */
2816                 LASSERT(svcpt->scp_nthrs_starting == 1);
2817                 spin_unlock(&svcpt->scp_lock);
2818                 OBD_FREE_PTR(thread);
2819                 if (wait) {
2820                         CDEBUG(D_INFO, "Waiting for creating thread %s #%d\n",
2821                                svc->srv_thread_name, svcpt->scp_thr_nextid);
2822                         schedule();
2823                         goto again;
2824                 }
2825
2826                 CDEBUG(D_INFO, "Creating thread %s #%d race, retry later\n",
2827                        svc->srv_thread_name, svcpt->scp_thr_nextid);
2828                 RETURN(-EAGAIN);
2829         }
2830
2831         svcpt->scp_nthrs_starting++;
2832         thread->t_id = svcpt->scp_thr_nextid++;
2833         thread_add_flags(thread, SVC_STARTING);
2834         thread->t_svcpt = svcpt;
2835
2836         list_add(&thread->t_link, &svcpt->scp_threads);
2837         spin_unlock(&svcpt->scp_lock);
2838
2839         if (svcpt->scp_cpt >= 0) {
2840                 snprintf(thread->t_name, PTLRPC_THR_NAME_LEN, "%s%02d_%03d",
2841                          svc->srv_thread_name, svcpt->scp_cpt, thread->t_id);
2842         } else {
2843                 snprintf(thread->t_name, PTLRPC_THR_NAME_LEN, "%s_%04d",
2844                          svc->srv_thread_name, thread->t_id);
2845         }
2846
2847         CDEBUG(D_RPCTRACE, "starting thread '%s'\n", thread->t_name);
2848         task = kthread_run(ptlrpc_main, thread, "%s", thread->t_name);
2849         if (IS_ERR(task)) {
2850                 rc = PTR_ERR(task);
2851                 CERROR("cannot start thread '%s': rc = %d\n",
2852                        thread->t_name, rc);
2853                 spin_lock(&svcpt->scp_lock);
2854                 --svcpt->scp_nthrs_starting;
2855                 if (thread_is_stopping(thread)) {
2856                         /* this ptlrpc_thread is being hanled
2857                          * by ptlrpc_svcpt_stop_threads now
2858                          */
2859                         thread_add_flags(thread, SVC_STOPPED);
2860                         wake_up(&thread->t_ctl_waitq);
2861                         spin_unlock(&svcpt->scp_lock);
2862                 } else {
2863                         list_del(&thread->t_link);
2864                         spin_unlock(&svcpt->scp_lock);
2865                         OBD_FREE_PTR(thread);
2866                 }
2867                 RETURN(rc);
2868         }
2869
2870         if (!wait)
2871                 RETURN(0);
2872
2873         l_wait_event(thread->t_ctl_waitq,
2874                      thread_is_running(thread) || thread_is_stopped(thread),
2875                      &lwi);
2876
2877         rc = thread_is_stopped(thread) ? thread->t_id : 0;
2878         RETURN(rc);
2879 }
2880
2881 int ptlrpc_hr_init(void)
2882 {
2883         struct ptlrpc_hr_partition      *hrp;
2884         struct ptlrpc_hr_thread         *hrt;
2885         int                             rc;
2886         int                             i;
2887         int                             j;
2888         ENTRY;
2889
2890         memset(&ptlrpc_hr, 0, sizeof(ptlrpc_hr));
2891         ptlrpc_hr.hr_cpt_table = cfs_cpt_table;
2892
2893         ptlrpc_hr.hr_partitions = cfs_percpt_alloc(ptlrpc_hr.hr_cpt_table,
2894                                                    sizeof(*hrp));
2895         if (ptlrpc_hr.hr_partitions == NULL)
2896                 RETURN(-ENOMEM);
2897
2898         init_waitqueue_head(&ptlrpc_hr.hr_waitq);
2899
2900         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
2901                 hrp->hrp_cpt = i;
2902
2903                 atomic_set(&hrp->hrp_nstarted, 0);
2904                 atomic_set(&hrp->hrp_nstopped, 0);
2905
2906                 hrp->hrp_nthrs = cfs_cpt_weight(ptlrpc_hr.hr_cpt_table, i);
2907                 hrp->hrp_nthrs /= cfs_cpu_ht_nsiblings(0);
2908
2909                 LASSERT(hrp->hrp_nthrs > 0);
2910                 OBD_CPT_ALLOC(hrp->hrp_thrs, ptlrpc_hr.hr_cpt_table, i,
2911                               hrp->hrp_nthrs * sizeof(*hrt));
2912                 if (hrp->hrp_thrs == NULL)
2913                         GOTO(out, rc = -ENOMEM);
2914
2915                 for (j = 0; j < hrp->hrp_nthrs; j++) {
2916                         hrt = &hrp->hrp_thrs[j];
2917
2918                         hrt->hrt_id = j;
2919                         hrt->hrt_partition = hrp;
2920                         init_waitqueue_head(&hrt->hrt_waitq);
2921                         spin_lock_init(&hrt->hrt_lock);
2922                         INIT_LIST_HEAD(&hrt->hrt_queue);
2923                 }
2924         }
2925
2926         rc = ptlrpc_start_hr_threads();
2927 out:
2928         if (rc != 0)
2929                 ptlrpc_hr_fini();
2930         RETURN(rc);
2931 }
2932
2933 void ptlrpc_hr_fini(void)
2934 {
2935         struct ptlrpc_hr_partition      *hrp;
2936         int                             i;
2937
2938         if (ptlrpc_hr.hr_partitions == NULL)
2939                 return;
2940
2941         ptlrpc_stop_hr_threads();
2942
2943         cfs_percpt_for_each(hrp, i, ptlrpc_hr.hr_partitions) {
2944                 if (hrp->hrp_thrs != NULL) {
2945                         OBD_FREE(hrp->hrp_thrs,
2946                                  hrp->hrp_nthrs * sizeof(hrp->hrp_thrs[0]));
2947                 }
2948         }
2949
2950         cfs_percpt_free(ptlrpc_hr.hr_partitions);
2951         ptlrpc_hr.hr_partitions = NULL;
2952 }
2953
2954
2955 /**
2956  * Wait until all already scheduled replies are processed.
2957  */
2958 static void ptlrpc_wait_replies(struct ptlrpc_service_part *svcpt)
2959 {
2960         while (1) {
2961                 int rc;
2962                 struct l_wait_info lwi = LWI_TIMEOUT(cfs_time_seconds(10),
2963                                                      NULL, NULL);
2964
2965                 rc = l_wait_event(svcpt->scp_waitq,
2966                      atomic_read(&svcpt->scp_nreps_difficult) == 0, &lwi);
2967                 if (rc == 0)
2968                         break;
2969                 CWARN("Unexpectedly long timeout %s %p\n",
2970                       svcpt->scp_service->srv_name, svcpt->scp_service);
2971         }
2972 }
2973
2974 static void
2975 ptlrpc_service_del_atimer(struct ptlrpc_service *svc)
2976 {
2977         struct ptlrpc_service_part      *svcpt;
2978         int                             i;
2979
2980         /* early disarm AT timer... */
2981         ptlrpc_service_for_each_part(svcpt, i, svc) {
2982                 if (svcpt->scp_service != NULL)
2983                         cfs_timer_disarm(&svcpt->scp_at_timer);
2984         }
2985 }
2986
2987 static void
2988 ptlrpc_service_unlink_rqbd(struct ptlrpc_service *svc)
2989 {
2990         struct ptlrpc_service_part        *svcpt;
2991         struct ptlrpc_request_buffer_desc *rqbd;
2992         struct l_wait_info                lwi;
2993         int                               rc;
2994         int                               i;
2995
2996         /* All history will be culled when the next request buffer is
2997          * freed in ptlrpc_service_purge_all() */
2998         svc->srv_hist_nrqbds_cpt_max = 0;
2999
3000         rc = LNetClearLazyPortal(svc->srv_req_portal);
3001         LASSERT(rc == 0);
3002
3003         ptlrpc_service_for_each_part(svcpt, i, svc) {
3004                 if (svcpt->scp_service == NULL)
3005                         break;
3006
3007                 /* Unlink all the request buffers.  This forces a 'final'
3008                  * event with its 'unlink' flag set for each posted rqbd */
3009                 list_for_each_entry(rqbd, &svcpt->scp_rqbd_posted,
3010                                         rqbd_list) {
3011                         rc = LNetMDUnlink(rqbd->rqbd_md_h);
3012                         LASSERT(rc == 0 || rc == -ENOENT);
3013                 }
3014         }
3015
3016         ptlrpc_service_for_each_part(svcpt, i, svc) {
3017                 if (svcpt->scp_service == NULL)
3018                         break;
3019
3020                 /* Wait for the network to release any buffers
3021                  * it's currently filling */
3022                 spin_lock(&svcpt->scp_lock);
3023                 while (svcpt->scp_nrqbds_posted != 0) {
3024                         spin_unlock(&svcpt->scp_lock);
3025                         /* Network access will complete in finite time but
3026                          * the HUGE timeout lets us CWARN for visibility
3027                          * of sluggish NALs */
3028                         lwi = LWI_TIMEOUT_INTERVAL(
3029                                         cfs_time_seconds(LONG_UNLINK),
3030                                         cfs_time_seconds(1), NULL, NULL);
3031                         rc = l_wait_event(svcpt->scp_waitq,
3032                                           svcpt->scp_nrqbds_posted == 0, &lwi);
3033                         if (rc == -ETIMEDOUT) {
3034                                 CWARN("Service %s waiting for "
3035                                       "request buffers\n",
3036                                       svcpt->scp_service->srv_name);
3037                         }
3038                         spin_lock(&svcpt->scp_lock);
3039                 }
3040                 spin_unlock(&svcpt->scp_lock);
3041         }
3042 }
3043
3044 static void
3045 ptlrpc_service_purge_all(struct ptlrpc_service *svc)
3046 {
3047         struct ptlrpc_service_part              *svcpt;
3048         struct ptlrpc_request_buffer_desc       *rqbd;
3049         struct ptlrpc_request                   *req;
3050         struct ptlrpc_reply_state               *rs;
3051         int                                     i;
3052
3053         ptlrpc_service_for_each_part(svcpt, i, svc) {
3054                 if (svcpt->scp_service == NULL)
3055                         break;
3056
3057                 spin_lock(&svcpt->scp_rep_lock);
3058                 while (!list_empty(&svcpt->scp_rep_active)) {
3059                         rs = list_entry(svcpt->scp_rep_active.next,
3060                                             struct ptlrpc_reply_state, rs_list);
3061                         spin_lock(&rs->rs_lock);
3062                         ptlrpc_schedule_difficult_reply(rs);
3063                         spin_unlock(&rs->rs_lock);
3064                 }
3065                 spin_unlock(&svcpt->scp_rep_lock);
3066
3067                 /* purge the request queue.  NB No new replies (rqbds
3068                  * all unlinked) and no service threads, so I'm the only
3069                  * thread noodling the request queue now */
3070                 while (!list_empty(&svcpt->scp_req_incoming)) {
3071                         req = list_entry(svcpt->scp_req_incoming.next,
3072                                              struct ptlrpc_request, rq_list);
3073
3074                         list_del(&req->rq_list);
3075                         svcpt->scp_nreqs_incoming--;
3076                         ptlrpc_server_finish_request(svcpt, req);
3077                 }
3078
3079                 while (ptlrpc_server_request_pending(svcpt, true)) {
3080                         req = ptlrpc_server_request_get(svcpt, true);
3081                         ptlrpc_server_finish_active_request(svcpt, req);
3082                 }
3083
3084                 LASSERT(list_empty(&svcpt->scp_rqbd_posted));
3085                 LASSERT(svcpt->scp_nreqs_incoming == 0);
3086                 LASSERT(svcpt->scp_nreqs_active == 0);
3087                 /* history should have been culled by
3088                  * ptlrpc_server_finish_request */
3089                 LASSERT(svcpt->scp_hist_nrqbds == 0);
3090
3091                 /* Now free all the request buffers since nothing
3092                  * references them any more... */
3093
3094                 while (!list_empty(&svcpt->scp_rqbd_idle)) {
3095                         rqbd = list_entry(svcpt->scp_rqbd_idle.next,
3096                                               struct ptlrpc_request_buffer_desc,
3097                                               rqbd_list);
3098                         ptlrpc_free_rqbd(rqbd);
3099                 }
3100                 ptlrpc_wait_replies(svcpt);
3101
3102                 while (!list_empty(&svcpt->scp_rep_idle)) {
3103                         rs = list_entry(svcpt->scp_rep_idle.next,
3104                                             struct ptlrpc_reply_state,
3105                                             rs_list);
3106                         list_del(&rs->rs_list);
3107                         OBD_FREE_LARGE(rs, svc->srv_max_reply_size);
3108                 }
3109         }
3110 }
3111
3112 static void
3113 ptlrpc_service_free(struct ptlrpc_service *svc)
3114 {
3115         struct ptlrpc_service_part      *svcpt;
3116         struct ptlrpc_at_array          *array;
3117         int                             i;
3118
3119         ptlrpc_service_for_each_part(svcpt, i, svc) {
3120                 if (svcpt->scp_service == NULL)
3121                         break;
3122
3123                 /* In case somebody rearmed this in the meantime */
3124                 cfs_timer_disarm(&svcpt->scp_at_timer);
3125                 array = &svcpt->scp_at_array;
3126
3127                 if (array->paa_reqs_array != NULL) {
3128                         OBD_FREE(array->paa_reqs_array,
3129                                  sizeof(struct list_head) * array->paa_size);
3130                         array->paa_reqs_array = NULL;
3131                 }
3132
3133                 if (array->paa_reqs_count != NULL) {
3134                         OBD_FREE(array->paa_reqs_count,
3135                                  sizeof(__u32) * array->paa_size);
3136                         array->paa_reqs_count = NULL;
3137                 }
3138         }
3139
3140         ptlrpc_service_for_each_part(svcpt, i, svc)
3141                 OBD_FREE_PTR(svcpt);
3142
3143         if (svc->srv_cpts != NULL)
3144                 cfs_expr_list_values_free(svc->srv_cpts, svc->srv_ncpts);
3145
3146         OBD_FREE(svc, offsetof(struct ptlrpc_service,
3147                                srv_parts[svc->srv_ncpts]));
3148 }
3149
3150 int ptlrpc_unregister_service(struct ptlrpc_service *service)
3151 {
3152         ENTRY;
3153
3154         CDEBUG(D_NET, "%s: tearing down\n", service->srv_name);
3155
3156         service->srv_is_stopping = 1;
3157
3158         mutex_lock(&ptlrpc_all_services_mutex);
3159         list_del_init(&service->srv_list);
3160         mutex_unlock(&ptlrpc_all_services_mutex);
3161
3162         ptlrpc_service_del_atimer(service);
3163         ptlrpc_stop_all_threads(service);
3164
3165         ptlrpc_service_unlink_rqbd(service);
3166         ptlrpc_service_purge_all(service);
3167         ptlrpc_service_nrs_cleanup(service);
3168
3169         ptlrpc_lprocfs_unregister_service(service);
3170
3171         ptlrpc_service_free(service);
3172
3173         RETURN(0);
3174 }
3175 EXPORT_SYMBOL(ptlrpc_unregister_service);
3176
3177 /**
3178  * Returns 0 if the service is healthy.
3179  *
3180  * Right now, it just checks to make sure that requests aren't languishing
3181  * in the queue.  We'll use this health check to govern whether a node needs
3182  * to be shot, so it's intentionally non-aggressive. */
3183 int ptlrpc_svcpt_health_check(struct ptlrpc_service_part *svcpt)
3184 {
3185         struct ptlrpc_request           *request = NULL;
3186         struct timeval                  right_now;
3187         long                            timediff;
3188
3189         do_gettimeofday(&right_now);
3190
3191         spin_lock(&svcpt->scp_req_lock);
3192         /* How long has the next entry been waiting? */
3193         if (ptlrpc_server_high_pending(svcpt, true))
3194                 request = ptlrpc_nrs_req_peek_nolock(svcpt, true);
3195         else if (ptlrpc_server_normal_pending(svcpt, true))
3196                 request = ptlrpc_nrs_req_peek_nolock(svcpt, false);
3197
3198         if (request == NULL) {
3199                 spin_unlock(&svcpt->scp_req_lock);
3200                 return 0;
3201         }
3202
3203         timediff = cfs_timeval_sub(&right_now, &request->rq_arrival_time, NULL);
3204         spin_unlock(&svcpt->scp_req_lock);
3205
3206         if ((timediff / ONE_MILLION) >
3207             (AT_OFF ? obd_timeout * 3 / 2 : at_max)) {
3208                 CERROR("%s: unhealthy - request has been waiting %lds\n",
3209                        svcpt->scp_service->srv_name, timediff / ONE_MILLION);
3210                 return -1;
3211         }
3212
3213         return 0;
3214 }
3215
3216 int
3217 ptlrpc_service_health_check(struct ptlrpc_service *svc)
3218 {
3219         struct ptlrpc_service_part      *svcpt;
3220         int                             i;
3221
3222         if (svc == NULL)
3223                 return 0;
3224
3225         ptlrpc_service_for_each_part(svcpt, i, svc) {
3226                 int rc = ptlrpc_svcpt_health_check(svcpt);
3227
3228                 if (rc != 0)
3229                         return rc;
3230         }
3231         return 0;
3232 }
3233 EXPORT_SYMBOL(ptlrpc_service_health_check);