OSDN Git Service

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