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