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