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