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