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