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