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