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