Whamcloud - gitweb
b=22827 restore locking for thread->t_flags
[fs/lustre-release.git] / lustre / ptlrpc / service.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38 #ifndef __KERNEL__
39 #include <liblustre.h>
40 #endif
41 #include <obd_support.h>
42 #include <obd_class.h>
43 #include <lustre_net.h>
44 #include <lu_object.h>
45 #include <lnet/types.h>
46 #include "ptlrpc_internal.h"
47
48 /* The following are visible and mutable through /sys/module/ptlrpc */
49 int test_req_buffer_pressure = 0;
50 CFS_MODULE_PARM(test_req_buffer_pressure, "i", int, 0444,
51                 "set non-zero to put pressure on request buffer pools");
52 CFS_MODULE_PARM(at_min, "i", int, 0644,
53                 "Adaptive timeout minimum (sec)");
54 CFS_MODULE_PARM(at_max, "i", int, 0644,
55                 "Adaptive timeout maximum (sec)");
56 CFS_MODULE_PARM(at_history, "i", int, 0644,
57                 "Adaptive timeouts remember the slowest event that took place "
58                 "within this period (sec)");
59 CFS_MODULE_PARM(at_early_margin, "i", int, 0644,
60                 "How soon before an RPC deadline to send an early reply");
61 CFS_MODULE_PARM(at_extra, "i", int, 0644,
62                 "How much extra time to give with each early reply");
63
64
65 /* forward ref */
66 static int ptlrpc_server_post_idle_rqbds (struct ptlrpc_service *svc);
67
68 static CFS_LIST_HEAD(ptlrpc_all_services);
69 cfs_spinlock_t ptlrpc_all_services_lock;
70
71 static char *
72 ptlrpc_alloc_request_buffer (int size)
73 {
74         char *ptr;
75
76         if (size > SVC_BUF_VMALLOC_THRESHOLD)
77                 OBD_VMALLOC(ptr, size);
78         else
79                 OBD_ALLOC(ptr, size);
80
81         return (ptr);
82 }
83
84 static void
85 ptlrpc_free_request_buffer (char *ptr, int size)
86 {
87         if (size > SVC_BUF_VMALLOC_THRESHOLD)
88                 OBD_VFREE(ptr, size);
89         else
90                 OBD_FREE(ptr, size);
91 }
92
93 struct ptlrpc_request_buffer_desc *
94 ptlrpc_alloc_rqbd (struct ptlrpc_service *svc)
95 {
96         struct ptlrpc_request_buffer_desc *rqbd;
97
98         OBD_ALLOC_PTR(rqbd);
99         if (rqbd == NULL)
100                 return (NULL);
101
102         rqbd->rqbd_service = svc;
103         rqbd->rqbd_refcount = 0;
104         rqbd->rqbd_cbid.cbid_fn = request_in_callback;
105         rqbd->rqbd_cbid.cbid_arg = rqbd;
106         CFS_INIT_LIST_HEAD(&rqbd->rqbd_reqs);
107         rqbd->rqbd_buffer = ptlrpc_alloc_request_buffer(svc->srv_buf_size);
108
109         if (rqbd->rqbd_buffer == NULL) {
110                 OBD_FREE_PTR(rqbd);
111                 return (NULL);
112         }
113
114         cfs_spin_lock(&svc->srv_lock);
115         cfs_list_add(&rqbd->rqbd_list, &svc->srv_idle_rqbds);
116         svc->srv_nbufs++;
117         cfs_spin_unlock(&svc->srv_lock);
118
119         return (rqbd);
120 }
121
122 void
123 ptlrpc_free_rqbd (struct ptlrpc_request_buffer_desc *rqbd)
124 {
125         struct ptlrpc_service *svc = rqbd->rqbd_service;
126
127         LASSERT (rqbd->rqbd_refcount == 0);
128         LASSERT (cfs_list_empty(&rqbd->rqbd_reqs));
129
130         cfs_spin_lock(&svc->srv_lock);
131         cfs_list_del(&rqbd->rqbd_list);
132         svc->srv_nbufs--;
133         cfs_spin_unlock(&svc->srv_lock);
134
135         ptlrpc_free_request_buffer (rqbd->rqbd_buffer, svc->srv_buf_size);
136         OBD_FREE_PTR(rqbd);
137 }
138
139 int
140 ptlrpc_grow_req_bufs(struct ptlrpc_service *svc)
141 {
142         struct ptlrpc_request_buffer_desc *rqbd;
143         int                                i;
144
145         CDEBUG(D_RPCTRACE, "%s: allocate %d new %d-byte reqbufs (%d/%d left)\n",
146                svc->srv_name, svc->srv_nbuf_per_group, svc->srv_buf_size,
147                svc->srv_nrqbd_receiving, svc->srv_nbufs);
148         for (i = 0; i < svc->srv_nbuf_per_group; i++) {
149                 rqbd = ptlrpc_alloc_rqbd(svc);
150
151                 if (rqbd == NULL) {
152                         CERROR ("%s: Can't allocate request buffer\n",
153                                 svc->srv_name);
154                         return (-ENOMEM);
155                 }
156
157                 if (ptlrpc_server_post_idle_rqbds(svc) < 0)
158                         return (-EAGAIN);
159         }
160
161         return (0);
162 }
163
164 void
165 ptlrpc_save_lock(struct ptlrpc_request *req,
166                  struct lustre_handle *lock, int mode, int no_ack)
167 {
168         struct ptlrpc_reply_state *rs = req->rq_reply_state;
169         int                        idx;
170
171         LASSERT(rs != NULL);
172         LASSERT(rs->rs_nlocks < RS_MAX_LOCKS);
173
174         if (req->rq_export->exp_disconnected) {
175                 ldlm_lock_decref(lock, mode);
176         } else {
177                 idx = rs->rs_nlocks++;
178                 rs->rs_locks[idx] = *lock;
179                 rs->rs_modes[idx] = mode;
180                 rs->rs_difficult = 1;
181                 rs->rs_no_ack = !!no_ack;
182         }
183 }
184
185 #ifdef __KERNEL__
186
187 #define HRT_RUNNING 0
188 #define HRT_STOPPING 1
189
190 struct ptlrpc_hr_thread {
191         cfs_spinlock_t        hrt_lock;
192         unsigned long         hrt_flags;
193         cfs_waitq_t           hrt_wait;
194         cfs_list_t            hrt_queue;
195         cfs_completion_t      hrt_completion;
196 };
197
198 struct ptlrpc_hr_service {
199         int                     hr_index;
200         int                     hr_n_threads;
201         int                     hr_size;
202         struct ptlrpc_hr_thread hr_threads[0];
203 };
204
205 struct rs_batch {
206         cfs_list_t              rsb_replies;
207         struct ptlrpc_service  *rsb_svc;
208         unsigned int            rsb_n_replies;
209 };
210
211 /**
212  *  A pointer to per-node reply handling service.
213  */
214 static struct ptlrpc_hr_service *ptlrpc_hr = NULL;
215
216 /**
217  * maximum mumber of replies scheduled in one batch
218  */
219 #define MAX_SCHEDULED 256
220
221 /**
222  * Initialize a reply batch.
223  *
224  * \param b batch
225  */
226 static void rs_batch_init(struct rs_batch *b)
227 {
228         memset(b, 0, sizeof *b);
229         CFS_INIT_LIST_HEAD(&b->rsb_replies);
230 }
231
232 /**
233  * Choose an hr thread to dispatch requests to.
234  */
235 static unsigned int get_hr_thread_index(struct ptlrpc_hr_service *hr)
236 {
237         unsigned int idx;
238
239         /* Concurrent modification of hr_index w/o any spinlock
240            protection is harmless as long as the result fits
241            [0..(hr_n_threads-1)] range and each thread gets near equal
242            load. */
243         idx = hr->hr_index;
244         hr->hr_index = (idx >= hr->hr_n_threads - 1) ? 0 : idx + 1;
245         return idx;
246 }
247
248 /**
249  * Dispatch all replies accumulated in the batch to one from
250  * dedicated reply handling threads.
251  *
252  * \param b batch
253  */
254 static void rs_batch_dispatch(struct rs_batch *b)
255 {
256         if (b->rsb_n_replies != 0) {
257                 struct ptlrpc_hr_service *hr = ptlrpc_hr;
258                 int idx;
259
260                 idx = get_hr_thread_index(hr);
261
262                 cfs_spin_lock(&hr->hr_threads[idx].hrt_lock);
263                 cfs_list_splice_init(&b->rsb_replies,
264                                      &hr->hr_threads[idx].hrt_queue);
265                 cfs_spin_unlock(&hr->hr_threads[idx].hrt_lock);
266                 cfs_waitq_signal(&hr->hr_threads[idx].hrt_wait);
267                 b->rsb_n_replies = 0;
268         }
269 }
270
271 /**
272  * Add a reply to a batch.
273  * Add one reply object to a batch, schedule batched replies if overload.
274  *
275  * \param b batch
276  * \param rs reply
277  */
278 static void rs_batch_add(struct rs_batch *b, struct ptlrpc_reply_state *rs)
279 {
280         struct ptlrpc_service *svc = rs->rs_service;
281
282         if (svc != b->rsb_svc || b->rsb_n_replies >= MAX_SCHEDULED) {
283                 if (b->rsb_svc != NULL) {
284                         rs_batch_dispatch(b);
285                         cfs_spin_unlock(&b->rsb_svc->srv_lock);
286                 }
287                 cfs_spin_lock(&svc->srv_lock);
288                 b->rsb_svc = svc;
289         }
290         cfs_spin_lock(&rs->rs_lock);
291         rs->rs_scheduled_ever = 1;
292         if (rs->rs_scheduled == 0) {
293                 cfs_list_move(&rs->rs_list, &b->rsb_replies);
294                 rs->rs_scheduled = 1;
295                 b->rsb_n_replies++;
296         }
297         rs->rs_committed = 1;
298         cfs_spin_unlock(&rs->rs_lock);
299 }
300
301 /**
302  * Reply batch finalization.
303  * Dispatch remaining replies from the batch
304  * and release remaining spinlock.
305  *
306  * \param b batch
307  */
308 static void rs_batch_fini(struct rs_batch *b)
309 {
310         if (b->rsb_svc != 0) {
311                 rs_batch_dispatch(b);
312                 cfs_spin_unlock(&b->rsb_svc->srv_lock);
313         }
314 }
315
316 #define DECLARE_RS_BATCH(b)     struct rs_batch b
317
318 #else /* __KERNEL__ */
319
320 #define rs_batch_init(b)        do{}while(0)
321 #define rs_batch_fini(b)        do{}while(0)
322 #define rs_batch_add(b, r)      ptlrpc_schedule_difficult_reply(r)
323 #define DECLARE_RS_BATCH(b)
324
325 #endif /* __KERNEL__ */
326
327 void ptlrpc_dispatch_difficult_reply(struct ptlrpc_reply_state *rs)
328 {
329 #ifdef __KERNEL__
330         struct ptlrpc_hr_service *hr = ptlrpc_hr;
331         int idx;
332         ENTRY;
333
334         LASSERT(cfs_list_empty(&rs->rs_list));
335
336         idx = get_hr_thread_index(hr);
337         cfs_spin_lock(&hr->hr_threads[idx].hrt_lock);
338         cfs_list_add_tail(&rs->rs_list, &hr->hr_threads[idx].hrt_queue);
339         cfs_spin_unlock(&hr->hr_threads[idx].hrt_lock);
340         cfs_waitq_signal(&hr->hr_threads[idx].hrt_wait);
341         EXIT;
342 #else
343         cfs_list_add_tail(&rs->rs_list, &rs->rs_service->srv_reply_queue);
344 #endif
345 }
346
347 void
348 ptlrpc_schedule_difficult_reply (struct ptlrpc_reply_state *rs)
349 {
350         ENTRY;
351
352         LASSERT_SPIN_LOCKED(&rs->rs_service->srv_lock);
353         LASSERT_SPIN_LOCKED(&rs->rs_lock);
354         LASSERT (rs->rs_difficult);
355         rs->rs_scheduled_ever = 1;              /* flag any notification attempt */
356
357         if (rs->rs_scheduled) {                  /* being set up or already notified */
358                 EXIT;
359                 return;
360         }
361
362         rs->rs_scheduled = 1;
363         cfs_list_del_init(&rs->rs_list);
364         ptlrpc_dispatch_difficult_reply(rs);
365         EXIT;
366 }
367
368 void ptlrpc_commit_replies(struct obd_export *exp)
369 {
370         struct ptlrpc_reply_state *rs, *nxt;
371         DECLARE_RS_BATCH(batch);
372         ENTRY;
373
374         rs_batch_init(&batch);
375         /* Find any replies that have been committed and get their service
376          * to attend to complete them. */
377
378         /* CAVEAT EMPTOR: spinlock ordering!!! */
379         cfs_spin_lock(&exp->exp_uncommitted_replies_lock);
380         cfs_list_for_each_entry_safe(rs, nxt, &exp->exp_uncommitted_replies,
381                                      rs_obd_list) {
382                 LASSERT (rs->rs_difficult);
383                 /* VBR: per-export last_committed */
384                 LASSERT(rs->rs_export);
385                 if (rs->rs_transno <= exp->exp_last_committed) {
386                         cfs_list_del_init(&rs->rs_obd_list);
387                         rs_batch_add(&batch, rs);
388                 }
389         }
390         cfs_spin_unlock(&exp->exp_uncommitted_replies_lock);
391         rs_batch_fini(&batch);
392         EXIT;
393 }
394
395 static int
396 ptlrpc_server_post_idle_rqbds (struct ptlrpc_service *svc)
397 {
398         struct ptlrpc_request_buffer_desc *rqbd;
399         int                                rc;
400         int                                posted = 0;
401
402         for (;;) {
403                 cfs_spin_lock(&svc->srv_lock);
404
405                 if (cfs_list_empty (&svc->srv_idle_rqbds)) {
406                         cfs_spin_unlock(&svc->srv_lock);
407                         return (posted);
408                 }
409
410                 rqbd = cfs_list_entry(svc->srv_idle_rqbds.next,
411                                       struct ptlrpc_request_buffer_desc,
412                                       rqbd_list);
413                 cfs_list_del (&rqbd->rqbd_list);
414
415                 /* assume we will post successfully */
416                 svc->srv_nrqbd_receiving++;
417                 cfs_list_add (&rqbd->rqbd_list, &svc->srv_active_rqbds);
418
419                 cfs_spin_unlock(&svc->srv_lock);
420
421                 rc = ptlrpc_register_rqbd(rqbd);
422                 if (rc != 0)
423                         break;
424
425                 posted = 1;
426         }
427
428         cfs_spin_lock(&svc->srv_lock);
429
430         svc->srv_nrqbd_receiving--;
431         cfs_list_del(&rqbd->rqbd_list);
432         cfs_list_add_tail(&rqbd->rqbd_list, &svc->srv_idle_rqbds);
433
434         /* Don't complain if no request buffers are posted right now; LNET
435          * won't drop requests because we set the portal lazy! */
436
437         cfs_spin_unlock(&svc->srv_lock);
438
439         return (-1);
440 }
441
442 struct ptlrpc_service *ptlrpc_init_svc_conf(struct ptlrpc_service_conf *c,
443                                             svc_handler_t h, char *name,
444                                             struct proc_dir_entry *proc_entry,
445                                             svcreq_printfn_t prntfn,
446                                             char *threadname)
447 {
448         return ptlrpc_init_svc(c->psc_nbufs, c->psc_bufsize,
449                                c->psc_max_req_size, c->psc_max_reply_size,
450                                c->psc_req_portal, c->psc_rep_portal,
451                                c->psc_watchdog_factor,
452                                h, name, proc_entry,
453                                prntfn, c->psc_min_threads, c->psc_max_threads,
454                                threadname, c->psc_ctx_tags, NULL);
455 }
456 EXPORT_SYMBOL(ptlrpc_init_svc_conf);
457
458 static void ptlrpc_at_timer(unsigned long castmeharder)
459 {
460         struct ptlrpc_service *svc = (struct ptlrpc_service *)castmeharder;
461         svc->srv_at_check = 1;
462         svc->srv_at_checktime = cfs_time_current();
463         cfs_waitq_signal(&svc->srv_waitq);
464 }
465
466 /* @threadname should be 11 characters or less - 3 will be added on */
467 struct ptlrpc_service *
468 ptlrpc_init_svc(int nbufs, int bufsize, int max_req_size, int max_reply_size,
469                 int req_portal, int rep_portal, int watchdog_factor,
470                 svc_handler_t handler, char *name,
471                 cfs_proc_dir_entry_t *proc_entry,
472                 svcreq_printfn_t svcreq_printfn,
473                 int min_threads, int max_threads,
474                 char *threadname, __u32 ctx_tags,
475                 svc_hpreq_handler_t hp_handler)
476 {
477         int                     rc;
478         struct ptlrpc_at_array *array;
479         struct ptlrpc_service  *service;
480         unsigned int            size, index;
481         ENTRY;
482
483         LASSERT (nbufs > 0);
484         LASSERT (bufsize >= max_req_size + SPTLRPC_MAX_PAYLOAD);
485         LASSERT (ctx_tags != 0);
486
487         OBD_ALLOC_PTR(service);
488         if (service == NULL)
489                 RETURN(NULL);
490
491         /* First initialise enough for early teardown */
492
493         service->srv_name = name;
494         cfs_spin_lock_init(&service->srv_lock);
495         CFS_INIT_LIST_HEAD(&service->srv_threads);
496         cfs_waitq_init(&service->srv_waitq);
497
498         service->srv_nbuf_per_group = test_req_buffer_pressure ? 1 : nbufs;
499         service->srv_max_req_size = max_req_size + SPTLRPC_MAX_PAYLOAD;
500         service->srv_buf_size = bufsize;
501         service->srv_rep_portal = rep_portal;
502         service->srv_req_portal = req_portal;
503         service->srv_watchdog_factor = watchdog_factor;
504         service->srv_handler = handler;
505         service->srv_request_history_print_fn = svcreq_printfn;
506         service->srv_request_seq = 1;           /* valid seq #s start at 1 */
507         service->srv_request_max_cull_seq = 0;
508         service->srv_threads_min = min_threads;
509         service->srv_threads_max = max_threads;
510         service->srv_thread_name = threadname;
511         service->srv_ctx_tags = ctx_tags;
512         service->srv_hpreq_handler = hp_handler;
513         service->srv_hpreq_ratio = PTLRPC_SVC_HP_RATIO;
514         service->srv_hpreq_count = 0;
515         service->srv_n_hpreq = 0;
516
517         rc = LNetSetLazyPortal(service->srv_req_portal);
518         LASSERT (rc == 0);
519
520         CFS_INIT_LIST_HEAD(&service->srv_request_queue);
521         CFS_INIT_LIST_HEAD(&service->srv_request_hpq);
522         CFS_INIT_LIST_HEAD(&service->srv_idle_rqbds);
523         CFS_INIT_LIST_HEAD(&service->srv_active_rqbds);
524         CFS_INIT_LIST_HEAD(&service->srv_history_rqbds);
525         CFS_INIT_LIST_HEAD(&service->srv_request_history);
526         CFS_INIT_LIST_HEAD(&service->srv_active_replies);
527 #ifndef __KERNEL__
528         CFS_INIT_LIST_HEAD(&service->srv_reply_queue);
529 #endif
530         CFS_INIT_LIST_HEAD(&service->srv_free_rs_list);
531         cfs_waitq_init(&service->srv_free_rs_waitq);
532         cfs_atomic_set(&service->srv_n_difficult_replies, 0);
533
534         cfs_spin_lock_init(&service->srv_at_lock);
535         CFS_INIT_LIST_HEAD(&service->srv_req_in_queue);
536
537         array = &service->srv_at_array;
538         size = at_est2timeout(at_max);
539         array->paa_size = size;
540         array->paa_count = 0;
541         array->paa_deadline = -1;
542
543         /* allocate memory for srv_at_array (ptlrpc_at_array) */
544         OBD_ALLOC(array->paa_reqs_array, sizeof(cfs_list_t) * size);
545         if (array->paa_reqs_array == NULL)
546                 GOTO(failed, NULL);
547
548         for (index = 0; index < size; index++)
549                 CFS_INIT_LIST_HEAD(&array->paa_reqs_array[index]);
550
551         OBD_ALLOC(array->paa_reqs_count, sizeof(__u32) * size);
552         if (array->paa_reqs_count == NULL)
553                 GOTO(failed, NULL);
554
555         cfs_timer_init(&service->srv_at_timer, ptlrpc_at_timer, service);
556         /* At SOW, service time should be quick; 10s seems generous. If client
557            timeout is less than this, we'll be sending an early reply. */
558         at_init(&service->srv_at_estimate, 10, 0);
559
560         cfs_spin_lock (&ptlrpc_all_services_lock);
561         cfs_list_add (&service->srv_list, &ptlrpc_all_services);
562         cfs_spin_unlock (&ptlrpc_all_services_lock);
563
564         /* Now allocate the request buffers */
565         rc = ptlrpc_grow_req_bufs(service);
566         /* We shouldn't be under memory pressure at startup, so
567          * fail if we can't post all our buffers at this time. */
568         if (rc != 0)
569                 GOTO(failed, NULL);
570
571         /* Now allocate pool of reply buffers */
572         /* Increase max reply size to next power of two */
573         service->srv_max_reply_size = 1;
574         while (service->srv_max_reply_size <
575                max_reply_size + SPTLRPC_MAX_PAYLOAD)
576                 service->srv_max_reply_size <<= 1;
577
578         if (proc_entry != NULL)
579                 ptlrpc_lprocfs_register_service(proc_entry, service);
580
581         CDEBUG(D_NET, "%s: Started, listening on portal %d\n",
582                service->srv_name, service->srv_req_portal);
583
584         RETURN(service);
585 failed:
586         ptlrpc_unregister_service(service);
587         return NULL;
588 }
589
590 /**
591  * to actually free the request, must be called without holding svc_lock.
592  * note it's caller's responsibility to unlink req->rq_list.
593  */
594 static void ptlrpc_server_free_request(struct ptlrpc_request *req)
595 {
596         LASSERT(cfs_atomic_read(&req->rq_refcount) == 0);
597         LASSERT(cfs_list_empty(&req->rq_timed_list));
598
599          /* DEBUG_REQ() assumes the reply state of a request with a valid
600           * ref will not be destroyed until that reference is dropped. */
601         ptlrpc_req_drop_rs(req);
602
603         sptlrpc_svc_ctx_decref(req);
604
605         if (req != &req->rq_rqbd->rqbd_req) {
606                 /* NB request buffers use an embedded
607                  * req if the incoming req unlinked the
608                  * MD; this isn't one of them! */
609                 OBD_FREE(req, sizeof(*req));
610         }
611 }
612
613 /**
614  * increment the number of active requests consuming service threads.
615  */
616 void ptlrpc_server_active_request_inc(struct ptlrpc_request *req)
617 {
618         struct ptlrpc_request_buffer_desc *rqbd = req->rq_rqbd;
619         struct ptlrpc_service *svc = rqbd->rqbd_service;
620
621         cfs_spin_lock(&svc->srv_lock);
622         svc->srv_n_active_reqs++;
623         cfs_spin_unlock(&svc->srv_lock);
624 }
625
626 /**
627  * decrement the number of active requests consuming service threads.
628  */
629 void ptlrpc_server_active_request_dec(struct ptlrpc_request *req)
630 {
631         struct ptlrpc_request_buffer_desc *rqbd = req->rq_rqbd;
632         struct ptlrpc_service *svc = rqbd->rqbd_service;
633
634         cfs_spin_lock(&svc->srv_lock);
635         svc->srv_n_active_reqs--;
636         cfs_spin_unlock(&svc->srv_lock);
637 }
638
639 /**
640  * drop a reference count of the request. if it reaches 0, we either
641  * put it into history list, or free it immediately.
642  */
643 void ptlrpc_server_drop_request(struct ptlrpc_request *req)
644 {
645         struct ptlrpc_request_buffer_desc *rqbd = req->rq_rqbd;
646         struct ptlrpc_service             *svc = rqbd->rqbd_service;
647         int                                refcount;
648         cfs_list_t                        *tmp;
649         cfs_list_t                        *nxt;
650
651         if (!cfs_atomic_dec_and_test(&req->rq_refcount))
652                 return;
653
654         cfs_spin_lock(&svc->srv_at_lock);
655         if (req->rq_at_linked) {
656                 struct ptlrpc_at_array *array = &svc->srv_at_array;
657                 __u32 index = req->rq_at_index;
658
659                 LASSERT(!cfs_list_empty(&req->rq_timed_list));
660                 cfs_list_del_init(&req->rq_timed_list);
661                 cfs_spin_lock(&req->rq_lock);
662                 req->rq_at_linked = 0;
663                 cfs_spin_unlock(&req->rq_lock);
664                 array->paa_reqs_count[index]--;
665                 array->paa_count--;
666         } else
667                 LASSERT(cfs_list_empty(&req->rq_timed_list));
668         cfs_spin_unlock(&svc->srv_at_lock);
669
670         /* finalize request */
671         if (req->rq_export) {
672                 class_export_put(req->rq_export);
673                 req->rq_export = NULL;
674         }
675
676         cfs_spin_lock(&svc->srv_lock);
677
678         svc->srv_n_active_reqs--;
679         cfs_list_add(&req->rq_list, &rqbd->rqbd_reqs);
680
681         refcount = --(rqbd->rqbd_refcount);
682         if (refcount == 0) {
683                 /* request buffer is now idle: add to history */
684                 cfs_list_del(&rqbd->rqbd_list);
685                 cfs_list_add_tail(&rqbd->rqbd_list, &svc->srv_history_rqbds);
686                 svc->srv_n_history_rqbds++;
687
688                 /* cull some history?
689                  * I expect only about 1 or 2 rqbds need to be recycled here */
690                 while (svc->srv_n_history_rqbds > svc->srv_max_history_rqbds) {
691                         rqbd = cfs_list_entry(svc->srv_history_rqbds.next,
692                                               struct ptlrpc_request_buffer_desc,
693                                               rqbd_list);
694
695                         cfs_list_del(&rqbd->rqbd_list);
696                         svc->srv_n_history_rqbds--;
697
698                         /* remove rqbd's reqs from svc's req history while
699                          * I've got the service lock */
700                         cfs_list_for_each(tmp, &rqbd->rqbd_reqs) {
701                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
702                                                      rq_list);
703                                 /* Track the highest culled req seq */
704                                 if (req->rq_history_seq >
705                                     svc->srv_request_max_cull_seq)
706                                         svc->srv_request_max_cull_seq =
707                                                 req->rq_history_seq;
708                                 cfs_list_del(&req->rq_history_list);
709                         }
710
711                         cfs_spin_unlock(&svc->srv_lock);
712
713                         cfs_list_for_each_safe(tmp, nxt, &rqbd->rqbd_reqs) {
714                                 req = cfs_list_entry(rqbd->rqbd_reqs.next,
715                                                      struct ptlrpc_request,
716                                                      rq_list);
717                                 cfs_list_del(&req->rq_list);
718                                 ptlrpc_server_free_request(req);
719                         }
720
721                         cfs_spin_lock(&svc->srv_lock);
722                         /*
723                          * now all reqs including the embedded req has been
724                          * disposed, schedule request buffer for re-use.
725                          */
726                         LASSERT(cfs_atomic_read(&rqbd->rqbd_req.rq_refcount) ==
727                                 0);
728                         cfs_list_add_tail(&rqbd->rqbd_list,
729                                           &svc->srv_idle_rqbds);
730                 }
731
732                 cfs_spin_unlock(&svc->srv_lock);
733         } else if (req->rq_reply_state && req->rq_reply_state->rs_prealloc) {
734                 /* If we are low on memory, we are not interested in history */
735                 cfs_list_del(&req->rq_list);
736                 cfs_list_del_init(&req->rq_history_list);
737                 cfs_spin_unlock(&svc->srv_lock);
738
739                 ptlrpc_server_free_request(req);
740         } else {
741                 cfs_spin_unlock(&svc->srv_lock);
742         }
743 }
744
745 /**
746  * to finish a request: stop sending more early replies, and release
747  * the request. should be called after we finished handling the request.
748  */
749 static void ptlrpc_server_finish_request(struct ptlrpc_request *req)
750 {
751         ptlrpc_server_drop_request(req);
752 }
753
754 /* This function makes sure dead exports are evicted in a timely manner.
755    This function is only called when some export receives a message (i.e.,
756    the network is up.) */
757 static void ptlrpc_update_export_timer(struct obd_export *exp, long extra_delay)
758 {
759         struct obd_export *oldest_exp;
760         time_t oldest_time, new_time;
761
762         ENTRY;
763
764         LASSERT(exp);
765
766         /* Compensate for slow machines, etc, by faking our request time
767            into the future.  Although this can break the strict time-ordering
768            of the list, we can be really lazy here - we don't have to evict
769            at the exact right moment.  Eventually, all silent exports
770            will make it to the top of the list. */
771
772         /* Do not pay attention on 1sec or smaller renewals. */
773         new_time = cfs_time_current_sec() + extra_delay;
774         if (exp->exp_last_request_time + 1 /*second */ >= new_time)
775                 RETURN_EXIT;
776
777         exp->exp_last_request_time = new_time;
778         CDEBUG(D_HA, "updating export %s at "CFS_TIME_T" exp %p\n",
779                exp->exp_client_uuid.uuid,
780                exp->exp_last_request_time, exp);
781
782         /* exports may get disconnected from the chain even though the
783            export has references, so we must keep the spin lock while
784            manipulating the lists */
785         cfs_spin_lock(&exp->exp_obd->obd_dev_lock);
786
787         if (cfs_list_empty(&exp->exp_obd_chain_timed)) {
788                 /* this one is not timed */
789                 cfs_spin_unlock(&exp->exp_obd->obd_dev_lock);
790                 RETURN_EXIT;
791         }
792
793         cfs_list_move_tail(&exp->exp_obd_chain_timed,
794                            &exp->exp_obd->obd_exports_timed);
795
796         oldest_exp = cfs_list_entry(exp->exp_obd->obd_exports_timed.next,
797                                     struct obd_export, exp_obd_chain_timed);
798         oldest_time = oldest_exp->exp_last_request_time;
799         cfs_spin_unlock(&exp->exp_obd->obd_dev_lock);
800
801         if (exp->exp_obd->obd_recovering) {
802                 /* be nice to everyone during recovery */
803                 EXIT;
804                 return;
805         }
806
807         /* Note - racing to start/reset the obd_eviction timer is safe */
808         if (exp->exp_obd->obd_eviction_timer == 0) {
809                 /* Check if the oldest entry is expired. */
810                 if (cfs_time_current_sec() > (oldest_time + PING_EVICT_TIMEOUT +
811                                               extra_delay)) {
812                         /* We need a second timer, in case the net was down and
813                          * it just came back. Since the pinger may skip every
814                          * other PING_INTERVAL (see note in ptlrpc_pinger_main),
815                          * we better wait for 3. */
816                         exp->exp_obd->obd_eviction_timer =
817                                 cfs_time_current_sec() + 3 * PING_INTERVAL;
818                         CDEBUG(D_HA, "%s: Think about evicting %s from "CFS_TIME_T"\n",
819                                exp->exp_obd->obd_name, 
820                                obd_export_nid2str(oldest_exp), oldest_time);
821                 }
822         } else {
823                 if (cfs_time_current_sec() >
824                     (exp->exp_obd->obd_eviction_timer + extra_delay)) {
825                         /* The evictor won't evict anyone who we've heard from
826                          * recently, so we don't have to check before we start
827                          * it. */
828                         if (!ping_evictor_wake(exp))
829                                 exp->exp_obd->obd_eviction_timer = 0;
830                 }
831         }
832
833         EXIT;
834 }
835
836 static int ptlrpc_check_req(struct ptlrpc_request *req)
837 {
838         if (unlikely(lustre_msg_get_conn_cnt(req->rq_reqmsg) <
839                      req->rq_export->exp_conn_cnt)) {
840                 DEBUG_REQ(D_ERROR, req,
841                           "DROPPING req from old connection %d < %d",
842                           lustre_msg_get_conn_cnt(req->rq_reqmsg),
843                           req->rq_export->exp_conn_cnt);
844                 return -EEXIST;
845         }
846         if (unlikely(req->rq_export->exp_obd &&
847                      req->rq_export->exp_obd->obd_fail)) {
848              /* Failing over, don't handle any more reqs, send
849                 error response instead. */
850                 CDEBUG(D_RPCTRACE, "Dropping req %p for failed obd %s\n",
851                        req, req->rq_export->exp_obd->obd_name);
852                 req->rq_status = -ENODEV;
853                 ptlrpc_error(req);
854                 return -ENODEV;
855         }
856
857         return 0;
858 }
859
860 static void ptlrpc_at_set_timer(struct ptlrpc_service *svc)
861 {
862         struct ptlrpc_at_array *array = &svc->srv_at_array;
863         __s32 next;
864
865         cfs_spin_lock(&svc->srv_at_lock);
866         if (array->paa_count == 0) {
867                 cfs_timer_disarm(&svc->srv_at_timer);
868                 cfs_spin_unlock(&svc->srv_at_lock);
869                 return;
870         }
871
872         /* Set timer for closest deadline */
873         next = (__s32)(array->paa_deadline - cfs_time_current_sec() -
874                        at_early_margin);
875         if (next <= 0)
876                 ptlrpc_at_timer((unsigned long)svc);
877         else
878                 cfs_timer_arm(&svc->srv_at_timer, cfs_time_shift(next));
879         cfs_spin_unlock(&svc->srv_at_lock);
880         CDEBUG(D_INFO, "armed %s at %+ds\n", svc->srv_name, next);
881 }
882
883 /* Add rpc to early reply check list */
884 static int ptlrpc_at_add_timed(struct ptlrpc_request *req)
885 {
886         struct ptlrpc_service *svc = req->rq_rqbd->rqbd_service;
887         struct ptlrpc_request *rq = NULL;
888         struct ptlrpc_at_array *array = &svc->srv_at_array;
889         __u32 index;
890         int found = 0;
891
892         if (AT_OFF)
893                 return(0);
894
895         if (req->rq_no_reply)
896                 return 0;
897
898         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0)
899                 return(-ENOSYS);
900
901         cfs_spin_lock(&svc->srv_at_lock);
902         LASSERT(cfs_list_empty(&req->rq_timed_list));
903
904         index = (unsigned long)req->rq_deadline % array->paa_size;
905         if (array->paa_reqs_count[index] > 0) {
906                 /* latest rpcs will have the latest deadlines in the list,
907                  * so search backward. */
908                 cfs_list_for_each_entry_reverse(rq,
909                                                 &array->paa_reqs_array[index],
910                                                 rq_timed_list) {
911                         if (req->rq_deadline >= rq->rq_deadline) {
912                                 cfs_list_add(&req->rq_timed_list,
913                                              &rq->rq_timed_list);
914                                 break;
915                         }
916                 }
917         }
918
919         /* Add the request at the head of the list */
920         if (cfs_list_empty(&req->rq_timed_list))
921                 cfs_list_add(&req->rq_timed_list,
922                              &array->paa_reqs_array[index]);
923
924         cfs_spin_lock(&req->rq_lock);
925         req->rq_at_linked = 1;
926         cfs_spin_unlock(&req->rq_lock);
927         req->rq_at_index = index;
928         array->paa_reqs_count[index]++;
929         array->paa_count++;
930         if (array->paa_count == 1 || array->paa_deadline > req->rq_deadline) {
931                 array->paa_deadline = req->rq_deadline;
932                 found = 1;
933         }
934         cfs_spin_unlock(&svc->srv_at_lock);
935
936         if (found)
937                 ptlrpc_at_set_timer(svc);
938
939         return 0;
940 }
941
942 static int ptlrpc_at_send_early_reply(struct ptlrpc_request *req)
943 {
944         struct ptlrpc_service *svc = req->rq_rqbd->rqbd_service;
945         struct ptlrpc_request *reqcopy;
946         struct lustre_msg *reqmsg;
947         cfs_duration_t olddl = req->rq_deadline - cfs_time_current_sec();
948         time_t newdl;
949         int rc;
950         ENTRY;
951
952         /* deadline is when the client expects us to reply, margin is the
953            difference between clients' and servers' expectations */
954         DEBUG_REQ(D_ADAPTTO, req,
955                   "%ssending early reply (deadline %+lds, margin %+lds) for "
956                   "%d+%d", AT_OFF ? "AT off - not " : "",
957                   olddl, olddl - at_get(&svc->srv_at_estimate),
958                   at_get(&svc->srv_at_estimate), at_extra);
959
960         if (AT_OFF)
961                 RETURN(0);
962
963         if (olddl < 0) {
964                 DEBUG_REQ(D_WARNING, req, "Already past deadline (%+lds), "
965                           "not sending early reply. Consider increasing "
966                           "at_early_margin (%d)?", olddl, at_early_margin);
967
968                 /* Return an error so we're not re-added to the timed list. */
969                 RETURN(-ETIMEDOUT);
970         }
971
972         if ((lustre_msghdr_get_flags(req->rq_reqmsg) & MSGHDR_AT_SUPPORT) == 0){
973                 DEBUG_REQ(D_INFO, req, "Wanted to ask client for more time, "
974                           "but no AT support");
975                 RETURN(-ENOSYS);
976         }
977
978         if (req->rq_export &&
979             lustre_msg_get_flags(req->rq_reqmsg) &
980             (MSG_REPLAY | MSG_REQ_REPLAY_DONE | MSG_LOCK_REPLAY_DONE)) {
981                 /* During recovery, we don't want to send too many early
982                  * replies, but on the other hand we want to make sure the
983                  * client has enough time to resend if the rpc is lost. So
984                  * during the recovery period send at least 4 early replies,
985                  * spacing them every at_extra if we can. at_estimate should
986                  * always equal this fixed value during recovery. */
987                 at_measured(&svc->srv_at_estimate, min(at_extra,
988                             req->rq_export->exp_obd->obd_recovery_timeout / 4));
989         } else {
990                 /* Fake our processing time into the future to ask the clients
991                  * for some extra amount of time */
992                 at_measured(&svc->srv_at_estimate, at_extra +
993                             cfs_time_current_sec() -
994                             req->rq_arrival_time.tv_sec);
995
996                 /* Check to see if we've actually increased the deadline -
997                  * we may be past adaptive_max */
998                 if (req->rq_deadline >= req->rq_arrival_time.tv_sec +
999                     at_get(&svc->srv_at_estimate)) {
1000                         DEBUG_REQ(D_WARNING, req, "Couldn't add any time "
1001                                   "(%ld/%ld), not sending early reply\n",
1002                                   olddl, req->rq_arrival_time.tv_sec +
1003                                   at_get(&svc->srv_at_estimate) -
1004                                   cfs_time_current_sec());
1005                         RETURN(-ETIMEDOUT);
1006                 }
1007         }
1008         newdl = cfs_time_current_sec() + at_get(&svc->srv_at_estimate);
1009
1010         OBD_ALLOC(reqcopy, sizeof *reqcopy);
1011         if (reqcopy == NULL)
1012                 RETURN(-ENOMEM);
1013         OBD_ALLOC(reqmsg, req->rq_reqlen);
1014         if (!reqmsg) {
1015                 OBD_FREE(reqcopy, sizeof *reqcopy);
1016                 RETURN(-ENOMEM);
1017         }
1018
1019         *reqcopy = *req;
1020         reqcopy->rq_reply_state = NULL;
1021         reqcopy->rq_rep_swab_mask = 0;
1022         reqcopy->rq_pack_bulk = 0;
1023         reqcopy->rq_pack_udesc = 0;
1024         reqcopy->rq_packed_final = 0;
1025         sptlrpc_svc_ctx_addref(reqcopy);
1026         /* We only need the reqmsg for the magic */
1027         reqcopy->rq_reqmsg = reqmsg;
1028         memcpy(reqmsg, req->rq_reqmsg, req->rq_reqlen);
1029
1030         LASSERT(cfs_atomic_read(&req->rq_refcount));
1031         /** if it is last refcount then early reply isn't needed */
1032         if (cfs_atomic_read(&req->rq_refcount) == 1) {
1033                 DEBUG_REQ(D_ADAPTTO, reqcopy, "Normal reply already sent out, "
1034                           "abort sending early reply\n");
1035                 GOTO(out, rc = -EINVAL);
1036         }
1037
1038         /* Connection ref */
1039         reqcopy->rq_export = class_conn2export(
1040                                      lustre_msg_get_handle(reqcopy->rq_reqmsg));
1041         if (reqcopy->rq_export == NULL)
1042                 GOTO(out, rc = -ENODEV);
1043
1044         /* RPC ref */
1045         class_export_rpc_get(reqcopy->rq_export);
1046         if (reqcopy->rq_export->exp_obd &&
1047             reqcopy->rq_export->exp_obd->obd_fail)
1048                 GOTO(out_put, rc = -ENODEV);
1049
1050         rc = lustre_pack_reply_flags(reqcopy, 1, NULL, NULL, LPRFL_EARLY_REPLY);
1051         if (rc)
1052                 GOTO(out_put, rc);
1053
1054         rc = ptlrpc_send_reply(reqcopy, PTLRPC_REPLY_EARLY);
1055
1056         if (!rc) {
1057                 /* Adjust our own deadline to what we told the client */
1058                 req->rq_deadline = newdl;
1059                 req->rq_early_count++; /* number sent, server side */
1060         } else {
1061                 DEBUG_REQ(D_ERROR, req, "Early reply send failed %d", rc);
1062         }
1063
1064         /* Free the (early) reply state from lustre_pack_reply.
1065            (ptlrpc_send_reply takes it's own rs ref, so this is safe here) */
1066         ptlrpc_req_drop_rs(reqcopy);
1067
1068 out_put:
1069         class_export_rpc_put(reqcopy->rq_export);
1070         class_export_put(reqcopy->rq_export);
1071 out:
1072         sptlrpc_svc_ctx_decref(reqcopy);
1073         OBD_FREE(reqmsg, req->rq_reqlen);
1074         OBD_FREE(reqcopy, sizeof *reqcopy);
1075         RETURN(rc);
1076 }
1077
1078 /* Send early replies to everybody expiring within at_early_margin
1079    asking for at_extra time */
1080 static int ptlrpc_at_check_timed(struct ptlrpc_service *svc)
1081 {
1082         struct ptlrpc_request *rq, *n;
1083         cfs_list_t work_list;
1084         struct ptlrpc_at_array *array = &svc->srv_at_array;
1085         __u32  index, count;
1086         time_t deadline;
1087         time_t now = cfs_time_current_sec();
1088         cfs_duration_t delay;
1089         int first, counter = 0;
1090         ENTRY;
1091
1092         cfs_spin_lock(&svc->srv_at_lock);
1093         if (svc->srv_at_check == 0) {
1094                 cfs_spin_unlock(&svc->srv_at_lock);
1095                 RETURN(0);
1096         }
1097         delay = cfs_time_sub(cfs_time_current(), svc->srv_at_checktime);
1098         svc->srv_at_check = 0;
1099
1100         if (array->paa_count == 0) {
1101                 cfs_spin_unlock(&svc->srv_at_lock);
1102                 RETURN(0);
1103         }
1104
1105         /* The timer went off, but maybe the nearest rpc already completed. */
1106         first = array->paa_deadline - now;
1107         if (first > at_early_margin) {
1108                 /* We've still got plenty of time.  Reset the timer. */
1109                 cfs_spin_unlock(&svc->srv_at_lock);
1110                 ptlrpc_at_set_timer(svc);
1111                 RETURN(0);
1112         }
1113
1114         /* We're close to a timeout, and we don't know how much longer the
1115            server will take. Send early replies to everyone expiring soon. */
1116         CFS_INIT_LIST_HEAD(&work_list);
1117         deadline = -1;
1118         index = (unsigned long)array->paa_deadline % array->paa_size;
1119         count = array->paa_count;
1120         while (count > 0) {
1121                 count -= array->paa_reqs_count[index];
1122                 cfs_list_for_each_entry_safe(rq, n,
1123                                              &array->paa_reqs_array[index],
1124                                              rq_timed_list) {
1125                         if (rq->rq_deadline <= now + at_early_margin) {
1126                                 cfs_list_del_init(&rq->rq_timed_list);
1127                                 /**
1128                                  * ptlrpc_server_drop_request() may drop
1129                                  * refcount to 0 already. Let's check this and
1130                                  * don't add entry to work_list
1131                                  */
1132                                 if (likely(cfs_atomic_inc_not_zero(&rq->rq_refcount)))
1133                                         cfs_list_add(&rq->rq_timed_list, &work_list);
1134                                 counter++;
1135                                 array->paa_reqs_count[index]--;
1136                                 array->paa_count--;
1137                                 cfs_spin_lock(&rq->rq_lock);
1138                                 rq->rq_at_linked = 0;
1139                                 cfs_spin_unlock(&rq->rq_lock);
1140                                 continue;
1141                         }
1142
1143                         /* update the earliest deadline */
1144                         if (deadline == -1 || rq->rq_deadline < deadline)
1145                                 deadline = rq->rq_deadline;
1146
1147                         break;
1148                 }
1149
1150                 if (++index >= array->paa_size)
1151                         index = 0;
1152         }
1153         array->paa_deadline = deadline;
1154         cfs_spin_unlock(&svc->srv_at_lock);
1155
1156         /* we have a new earliest deadline, restart the timer */
1157         ptlrpc_at_set_timer(svc);
1158
1159         CDEBUG(D_ADAPTTO, "timeout in %+ds, asking for %d secs on %d early "
1160                "replies\n", first, at_extra, counter);
1161         if (first < 0) {
1162                 /* We're already past request deadlines before we even get a
1163                    chance to send early replies */
1164                 LCONSOLE_WARN("%s: This server is not able to keep up with "
1165                               "request traffic (cpu-bound).\n", svc->srv_name);
1166                 CWARN("earlyQ=%d reqQ=%d recA=%d, svcEst=%d, "
1167                       "delay="CFS_DURATION_T"(jiff)\n",
1168                       counter, svc->srv_n_queued_reqs, svc->srv_n_active_reqs,
1169                       at_get(&svc->srv_at_estimate), delay);
1170         }
1171
1172         /* we took additional refcount so entries can't be deleted from list, no
1173          * locking is needed */
1174         while (!cfs_list_empty(&work_list)) {
1175                 rq = cfs_list_entry(work_list.next, struct ptlrpc_request,
1176                                     rq_timed_list);
1177                 cfs_list_del_init(&rq->rq_timed_list);
1178
1179                 if (ptlrpc_at_send_early_reply(rq) == 0)
1180                         ptlrpc_at_add_timed(rq);
1181
1182                 ptlrpc_server_drop_request(rq);
1183         }
1184
1185         RETURN(0);
1186 }
1187
1188 /**
1189  * Put the request to the export list if the request may become
1190  * a high priority one.
1191  */
1192 static int ptlrpc_hpreq_init(struct ptlrpc_service *svc,
1193                              struct ptlrpc_request *req)
1194 {
1195         int rc;
1196         ENTRY;
1197
1198         if (svc->srv_hpreq_handler) {
1199                 rc = svc->srv_hpreq_handler(req);
1200                 if (rc)
1201                         RETURN(rc);
1202         }
1203         if (req->rq_export && req->rq_ops) {
1204                 cfs_spin_lock(&req->rq_export->exp_lock);
1205                 cfs_list_add(&req->rq_exp_list,
1206                              &req->rq_export->exp_queued_rpc);
1207                 cfs_spin_unlock(&req->rq_export->exp_lock);
1208         }
1209
1210         RETURN(0);
1211 }
1212
1213 /** Remove the request from the export list. */
1214 static void ptlrpc_hpreq_fini(struct ptlrpc_request *req)
1215 {
1216         ENTRY;
1217         if (req->rq_export && req->rq_ops) {
1218                 cfs_spin_lock(&req->rq_export->exp_lock);
1219                 cfs_list_del_init(&req->rq_exp_list);
1220                 cfs_spin_unlock(&req->rq_export->exp_lock);
1221         }
1222         EXIT;
1223 }
1224
1225 /**
1226  * Make the request a high priority one.
1227  *
1228  * All the high priority requests are queued in a separate FIFO
1229  * ptlrpc_service::srv_request_hpq list which is parallel to
1230  * ptlrpc_service::srv_request_queue list but has a higher priority
1231  * for handling.
1232  *
1233  * \see ptlrpc_server_handle_request().
1234  */
1235 static void ptlrpc_hpreq_reorder_nolock(struct ptlrpc_service *svc,
1236                                         struct ptlrpc_request *req)
1237 {
1238         ENTRY;
1239         LASSERT(svc != NULL);
1240         cfs_spin_lock(&req->rq_lock);
1241         if (req->rq_hp == 0) {
1242                 int opc = lustre_msg_get_opc(req->rq_reqmsg);
1243
1244                 /* Add to the high priority queue. */
1245                 cfs_list_move_tail(&req->rq_list, &svc->srv_request_hpq);
1246                 req->rq_hp = 1;
1247                 if (opc != OBD_PING)
1248                         DEBUG_REQ(D_NET, req, "high priority req");
1249         }
1250         cfs_spin_unlock(&req->rq_lock);
1251         EXIT;
1252 }
1253
1254 void ptlrpc_hpreq_reorder(struct ptlrpc_request *req)
1255 {
1256         struct ptlrpc_service *svc = req->rq_rqbd->rqbd_service;
1257         ENTRY;
1258
1259         cfs_spin_lock(&svc->srv_lock);
1260         /* It may happen that the request is already taken for the processing
1261          * but still in the export list, do not re-add it into the HP list. */
1262         if (req->rq_phase == RQ_PHASE_NEW)
1263                 ptlrpc_hpreq_reorder_nolock(svc, req);
1264         cfs_spin_unlock(&svc->srv_lock);
1265         EXIT;
1266 }
1267
1268 /** Check if the request is a high priority one. */
1269 static int ptlrpc_server_hpreq_check(struct ptlrpc_request *req)
1270 {
1271         int opc, rc = 0;
1272         ENTRY;
1273
1274         /* Check by request opc. */
1275         opc = lustre_msg_get_opc(req->rq_reqmsg);
1276         if (opc == OBD_PING)
1277                 RETURN(1);
1278
1279         /* Perform request specific check. */
1280         if (req->rq_ops && req->rq_ops->hpreq_check)
1281                 rc = req->rq_ops->hpreq_check(req);
1282         RETURN(rc);
1283 }
1284
1285 /** Check if a request is a high priority one. */
1286 static int ptlrpc_server_request_add(struct ptlrpc_service *svc,
1287                                      struct ptlrpc_request *req)
1288 {
1289         int rc;
1290         ENTRY;
1291
1292         rc = ptlrpc_server_hpreq_check(req);
1293         if (rc < 0)
1294                 RETURN(rc);
1295
1296         cfs_spin_lock(&svc->srv_lock);
1297         /* Before inserting the request into the queue, check if it is not
1298          * inserted yet, or even already handled -- it may happen due to
1299          * a racing ldlm_server_blocking_ast(). */
1300         if (req->rq_phase == RQ_PHASE_NEW && cfs_list_empty(&req->rq_list)) {
1301                 if (rc)
1302                         ptlrpc_hpreq_reorder_nolock(svc, req);
1303                 else
1304                         cfs_list_add_tail(&req->rq_list,
1305                                           &svc->srv_request_queue);
1306         }
1307         cfs_spin_unlock(&svc->srv_lock);
1308
1309         RETURN(0);
1310 }
1311
1312 /* Only allow normal priority requests on a service that has a high-priority
1313  * queue if forced (i.e. cleanup), if there are other high priority requests
1314  * already being processed (i.e. those threads can service more high-priority
1315  * requests), or if there are enough idle threads that a later thread can do
1316  * a high priority request. */
1317 static int ptlrpc_server_allow_normal(struct ptlrpc_service *svc, int force)
1318 {
1319         return force || !svc->srv_hpreq_handler || svc->srv_n_hpreq > 0 ||
1320                svc->srv_threads_running < svc->srv_threads_started - 2;
1321 }
1322
1323 static struct ptlrpc_request *
1324 ptlrpc_server_request_get(struct ptlrpc_service *svc)
1325 {
1326         struct ptlrpc_request *req = NULL;
1327         ENTRY;
1328
1329         if (!cfs_list_empty(&svc->srv_request_queue) &&
1330             (cfs_list_empty(&svc->srv_request_hpq) ||
1331              svc->srv_hpreq_count >= svc->srv_hpreq_ratio)) {
1332                 req = cfs_list_entry(svc->srv_request_queue.next,
1333                                      struct ptlrpc_request, rq_list);
1334                 svc->srv_hpreq_count = 0;
1335         } else if (!cfs_list_empty(&svc->srv_request_hpq)) {
1336                 req = cfs_list_entry(svc->srv_request_hpq.next,
1337                                      struct ptlrpc_request, rq_list);
1338                 svc->srv_hpreq_count++;
1339         }
1340         RETURN(req);
1341 }
1342
1343 static int ptlrpc_server_request_pending(struct ptlrpc_service *svc, int force)
1344 {
1345         return ((ptlrpc_server_allow_normal(svc, force) &&
1346                  !cfs_list_empty(&svc->srv_request_queue)) ||
1347                 !cfs_list_empty(&svc->srv_request_hpq));
1348 }
1349
1350 /* Handle freshly incoming reqs, add to timed early reply list,
1351    pass on to regular request queue */
1352 static int
1353 ptlrpc_server_handle_req_in(struct ptlrpc_service *svc)
1354 {
1355         struct ptlrpc_request *req;
1356         __u32                  deadline;
1357         int                    rc;
1358         ENTRY;
1359
1360         LASSERT(svc);
1361
1362         cfs_spin_lock(&svc->srv_lock);
1363         if (cfs_list_empty(&svc->srv_req_in_queue)) {
1364                 cfs_spin_unlock(&svc->srv_lock);
1365                 RETURN(0);
1366         }
1367
1368         req = cfs_list_entry(svc->srv_req_in_queue.next,
1369                              struct ptlrpc_request, rq_list);
1370         cfs_list_del_init (&req->rq_list);
1371         /* Consider this still a "queued" request as far as stats are
1372            concerned */
1373         cfs_spin_unlock(&svc->srv_lock);
1374
1375         /* go through security check/transform */
1376         rc = sptlrpc_svc_unwrap_request(req);
1377         switch (rc) {
1378         case SECSVC_OK:
1379                 break;
1380         case SECSVC_COMPLETE:
1381                 target_send_reply(req, 0, OBD_FAIL_MDS_ALL_REPLY_NET);
1382                 goto err_req;
1383         case SECSVC_DROP:
1384                 goto err_req;
1385         default:
1386                 LBUG();
1387         }
1388
1389         /*
1390          * for null-flavored rpc, msg has been unpacked by sptlrpc, although
1391          * redo it wouldn't be harmful.
1392          */
1393         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
1394                 rc = ptlrpc_unpack_req_msg(req, req->rq_reqlen);
1395                 if (rc != 0) {
1396                         CERROR("error unpacking request: ptl %d from %s "
1397                                "x"LPU64"\n", svc->srv_req_portal,
1398                                libcfs_id2str(req->rq_peer), req->rq_xid);
1399                         goto err_req;
1400                 }
1401         }
1402
1403         rc = lustre_unpack_req_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
1404         if (rc) {
1405                 CERROR ("error unpacking ptlrpc body: ptl %d from %s x"
1406                         LPU64"\n", svc->srv_req_portal,
1407                         libcfs_id2str(req->rq_peer), req->rq_xid);
1408                 goto err_req;
1409         }
1410
1411         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DROP_REQ_OPC) &&
1412             lustre_msg_get_opc(req->rq_reqmsg) == obd_fail_val) {
1413                 CERROR("drop incoming rpc opc %u, x"LPU64"\n",
1414                        obd_fail_val, req->rq_xid);
1415                 goto err_req;
1416         }
1417
1418         rc = -EINVAL;
1419         if (lustre_msg_get_type(req->rq_reqmsg) != PTL_RPC_MSG_REQUEST) {
1420                 CERROR("wrong packet type received (type=%u) from %s\n",
1421                        lustre_msg_get_type(req->rq_reqmsg),
1422                        libcfs_id2str(req->rq_peer));
1423                 goto err_req;
1424         }
1425
1426         switch(lustre_msg_get_opc(req->rq_reqmsg)) {
1427         case MDS_WRITEPAGE:
1428         case OST_WRITE:
1429                 req->rq_bulk_write = 1;
1430                 break;
1431         case MDS_READPAGE:
1432         case OST_READ:
1433                 req->rq_bulk_read = 1;
1434                 break;
1435         }
1436
1437         CDEBUG(D_NET, "got req "LPU64"\n", req->rq_xid);
1438
1439         req->rq_export = class_conn2export(
1440                 lustre_msg_get_handle(req->rq_reqmsg));
1441         if (req->rq_export) {
1442                 rc = ptlrpc_check_req(req);
1443                 if (rc == 0) {
1444                         rc = sptlrpc_target_export_check(req->rq_export, req);
1445                         if (rc)
1446                                 DEBUG_REQ(D_ERROR, req, "DROPPING req with "
1447                                           "illegal security flavor,");
1448                 }
1449
1450                 if (rc)
1451                         goto err_req;
1452                 ptlrpc_update_export_timer(req->rq_export, 0);
1453         }
1454
1455         /* req_in handling should/must be fast */
1456         if (cfs_time_current_sec() - req->rq_arrival_time.tv_sec > 5)
1457                 DEBUG_REQ(D_WARNING, req, "Slow req_in handling "CFS_DURATION_T"s",
1458                           cfs_time_sub(cfs_time_current_sec(),
1459                                        req->rq_arrival_time.tv_sec));
1460
1461         /* Set rpc server deadline and add it to the timed list */
1462         deadline = (lustre_msghdr_get_flags(req->rq_reqmsg) &
1463                     MSGHDR_AT_SUPPORT) ?
1464                    /* The max time the client expects us to take */
1465                    lustre_msg_get_timeout(req->rq_reqmsg) : obd_timeout;
1466         req->rq_deadline = req->rq_arrival_time.tv_sec + deadline;
1467         if (unlikely(deadline == 0)) {
1468                 DEBUG_REQ(D_ERROR, req, "Dropping request with 0 timeout");
1469                 goto err_req;
1470         }
1471
1472         ptlrpc_at_add_timed(req);
1473         rc = ptlrpc_hpreq_init(svc, req);
1474         if (rc)
1475                 GOTO(err_req, rc);
1476
1477         /* Move it over to the request processing queue */
1478         rc = ptlrpc_server_request_add(svc, req);
1479         if (rc)
1480                 GOTO(err_req, rc);
1481         cfs_waitq_signal(&svc->srv_waitq);
1482         RETURN(1);
1483
1484 err_req:
1485         cfs_spin_lock(&svc->srv_lock);
1486         svc->srv_n_queued_reqs--;
1487         svc->srv_n_active_reqs++;
1488         cfs_spin_unlock(&svc->srv_lock);
1489         ptlrpc_server_finish_request(req);
1490
1491         RETURN(1);
1492 }
1493
1494 static int
1495 ptlrpc_server_handle_request(struct ptlrpc_service *svc,
1496                              struct ptlrpc_thread *thread)
1497 {
1498         struct obd_export     *export = NULL;
1499         struct ptlrpc_request *request;
1500         struct timeval         work_start;
1501         struct timeval         work_end;
1502         long                   timediff;
1503         int                    opc, rc;
1504         int                    fail_opc = 0;
1505         ENTRY;
1506
1507         LASSERT(svc);
1508
1509         cfs_spin_lock(&svc->srv_lock);
1510 #ifndef __KERNEL__
1511         /* !@%$# liblustre only has 1 thread */
1512         if (cfs_atomic_read(&svc->srv_n_difficult_replies) != 0) {
1513                 cfs_spin_unlock(&svc->srv_lock);
1514                 RETURN(0);
1515         }
1516 #endif
1517         request = ptlrpc_server_request_get(svc);
1518         if  (request == NULL) {
1519                 cfs_spin_unlock(&svc->srv_lock);
1520                 RETURN(0);
1521         }
1522
1523         opc = lustre_msg_get_opc(request->rq_reqmsg);
1524         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT))
1525                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT;
1526         else if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_HPREQ_TIMEOUT))
1527                 fail_opc = OBD_FAIL_PTLRPC_HPREQ_TIMEOUT;
1528
1529         if (unlikely(fail_opc)) {
1530                 if (request->rq_export && request->rq_ops) {
1531                         cfs_spin_unlock(&svc->srv_lock);
1532                         OBD_FAIL_TIMEOUT(fail_opc, 4);
1533                         cfs_spin_lock(&svc->srv_lock);
1534                         request = ptlrpc_server_request_get(svc);
1535                         if  (request == NULL) {
1536                                 cfs_spin_unlock(&svc->srv_lock);
1537                                 RETURN(0);
1538                         }
1539                 }
1540         }
1541
1542         cfs_list_del_init(&request->rq_list);
1543         svc->srv_n_queued_reqs--;
1544         svc->srv_n_active_reqs++;
1545         if (request->rq_hp)
1546                 svc->srv_n_hpreq++;
1547
1548         /* The phase is changed under the lock here because we need to know
1549          * the request is under processing (see ptlrpc_hpreq_reorder()). */
1550         ptlrpc_rqphase_move(request, RQ_PHASE_INTERPRET);
1551         cfs_spin_unlock(&svc->srv_lock);
1552
1553         ptlrpc_hpreq_fini(request);
1554
1555         if(OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_DUMP_LOG))
1556                 libcfs_debug_dumplog();
1557
1558         cfs_gettimeofday(&work_start);
1559         timediff = cfs_timeval_sub(&work_start, &request->rq_arrival_time,NULL);
1560         if (likely(svc->srv_stats != NULL)) {
1561                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQWAIT_CNTR,
1562                                     timediff);
1563                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQQDEPTH_CNTR,
1564                                     svc->srv_n_queued_reqs);
1565                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQACTIVE_CNTR,
1566                                     svc->srv_n_active_reqs);
1567                 lprocfs_counter_add(svc->srv_stats, PTLRPC_TIMEOUT,
1568                                     at_get(&svc->srv_at_estimate));
1569         }
1570
1571         rc = lu_context_init(&request->rq_session,
1572                              LCT_SESSION|LCT_REMEMBER|LCT_NOREF);
1573         if (rc) {
1574                 CERROR("Failure to initialize session: %d\n", rc);
1575                 goto out_req;
1576         }
1577         request->rq_session.lc_thread = thread;
1578         request->rq_session.lc_cookie = 0x5;
1579         lu_context_enter(&request->rq_session);
1580
1581         CDEBUG(D_NET, "got req "LPU64"\n", request->rq_xid);
1582
1583         request->rq_svc_thread = thread;
1584         if (thread)
1585                 request->rq_svc_thread->t_env->le_ses = &request->rq_session;
1586
1587         if (likely(request->rq_export)) {
1588                 if (unlikely(ptlrpc_check_req(request)))
1589                         goto put_conn;
1590                 ptlrpc_update_export_timer(request->rq_export, timediff >> 19);
1591                 export = class_export_rpc_get(request->rq_export);
1592         }
1593
1594         /* Discard requests queued for longer than the deadline.
1595            The deadline is increased if we send an early reply. */
1596         if (cfs_time_current_sec() > request->rq_deadline) {
1597                 DEBUG_REQ(D_ERROR, request, "Dropping timed-out request from %s"
1598                           ": deadline "CFS_DURATION_T":"CFS_DURATION_T"s ago\n",
1599                           libcfs_id2str(request->rq_peer),
1600                           cfs_time_sub(request->rq_deadline,
1601                           request->rq_arrival_time.tv_sec),
1602                           cfs_time_sub(cfs_time_current_sec(),
1603                           request->rq_deadline));
1604                 goto put_rpc_export;
1605         }
1606
1607         CDEBUG(D_RPCTRACE, "Handling RPC pname:cluuid+ref:pid:xid:nid:opc "
1608                "%s:%s+%d:%d:x"LPU64":%s:%d\n", cfs_curproc_comm(),
1609                (request->rq_export ?
1610                 (char *)request->rq_export->exp_client_uuid.uuid : "0"),
1611                (request->rq_export ?
1612                 cfs_atomic_read(&request->rq_export->exp_refcount) : -99),
1613                lustre_msg_get_status(request->rq_reqmsg), request->rq_xid,
1614                libcfs_id2str(request->rq_peer),
1615                lustre_msg_get_opc(request->rq_reqmsg));
1616
1617         if (lustre_msg_get_opc(request->rq_reqmsg) != OBD_PING)
1618                 OBD_FAIL_TIMEOUT_MS(OBD_FAIL_PTLRPC_PAUSE_REQ, obd_fail_val);
1619
1620         rc = svc->srv_handler(request);
1621
1622         ptlrpc_rqphase_move(request, RQ_PHASE_COMPLETE);
1623
1624 put_rpc_export:
1625         if (export != NULL)
1626                 class_export_rpc_put(export);
1627 put_conn:
1628         lu_context_exit(&request->rq_session);
1629         lu_context_fini(&request->rq_session);
1630
1631         if (unlikely(cfs_time_current_sec() > request->rq_deadline)) {
1632                 DEBUG_REQ(D_WARNING, request, "Request x"LPU64" took longer "
1633                           "than estimated ("CFS_DURATION_T":"CFS_DURATION_T"s);"
1634                           " client may timeout.",
1635                           request->rq_xid, cfs_time_sub(request->rq_deadline,
1636                           request->rq_arrival_time.tv_sec),
1637                           cfs_time_sub(cfs_time_current_sec(),
1638                           request->rq_deadline));
1639         }
1640
1641         cfs_gettimeofday(&work_end);
1642         timediff = cfs_timeval_sub(&work_end, &work_start, NULL);
1643         CDEBUG(D_RPCTRACE, "Handled RPC pname:cluuid+ref:pid:xid:nid:opc "
1644                "%s:%s+%d:%d:x"LPU64":%s:%d Request procesed in "
1645                "%ldus (%ldus total) trans "LPU64" rc %d/%d\n",
1646                 cfs_curproc_comm(),
1647                 (request->rq_export ?
1648                  (char *)request->rq_export->exp_client_uuid.uuid : "0"),
1649                 (request->rq_export ?
1650                  cfs_atomic_read(&request->rq_export->exp_refcount) : -99),
1651                 lustre_msg_get_status(request->rq_reqmsg),
1652                 request->rq_xid,
1653                 libcfs_id2str(request->rq_peer),
1654                 lustre_msg_get_opc(request->rq_reqmsg),
1655                 timediff,
1656                 cfs_timeval_sub(&work_end, &request->rq_arrival_time, NULL),
1657                 (request->rq_repmsg ?
1658                  lustre_msg_get_transno(request->rq_repmsg) :
1659                  request->rq_transno),
1660                 request->rq_status,
1661                 (request->rq_repmsg ?
1662                  lustre_msg_get_status(request->rq_repmsg) : -999));
1663         if (likely(svc->srv_stats != NULL && request->rq_reqmsg != NULL)) {
1664                 __u32 op = lustre_msg_get_opc(request->rq_reqmsg);
1665                 int opc = opcode_offset(op);
1666                 if (opc > 0 && !(op == LDLM_ENQUEUE || op == MDS_REINT)) {
1667                         LASSERT(opc < LUSTRE_MAX_OPCODES);
1668                         lprocfs_counter_add(svc->srv_stats,
1669                                             opc + EXTRA_MAX_OPCODES,
1670                                             timediff);
1671                 }
1672         }
1673         if (unlikely(request->rq_early_count)) {
1674                 DEBUG_REQ(D_ADAPTTO, request,
1675                           "sent %d early replies before finishing in "
1676                           CFS_DURATION_T"s",
1677                           request->rq_early_count,
1678                           cfs_time_sub(work_end.tv_sec,
1679                           request->rq_arrival_time.tv_sec));
1680         }
1681
1682 out_req:
1683         cfs_spin_lock(&svc->srv_lock);
1684         if (request->rq_hp)
1685                 svc->srv_n_hpreq--;
1686         cfs_spin_unlock(&svc->srv_lock);
1687         ptlrpc_server_finish_request(request);
1688
1689         RETURN(1);
1690 }
1691
1692 /**
1693  * An internal function to process a single reply state object.
1694  */
1695 static int
1696 ptlrpc_handle_rs (struct ptlrpc_reply_state *rs)
1697 {
1698         struct ptlrpc_service     *svc = rs->rs_service;
1699         struct obd_export         *exp;
1700         struct obd_device         *obd;
1701         int                        nlocks;
1702         int                        been_handled;
1703         ENTRY;
1704
1705         exp = rs->rs_export;
1706         obd = exp->exp_obd;
1707
1708         LASSERT (rs->rs_difficult);
1709         LASSERT (rs->rs_scheduled);
1710         LASSERT (cfs_list_empty(&rs->rs_list));
1711
1712         cfs_spin_lock (&exp->exp_lock);
1713         /* Noop if removed already */
1714         cfs_list_del_init (&rs->rs_exp_list);
1715         cfs_spin_unlock (&exp->exp_lock);
1716
1717         /* The disk commit callback holds exp_uncommitted_replies_lock while it
1718          * iterates over newly committed replies, removing them from
1719          * exp_uncommitted_replies.  It then drops this lock and schedules the
1720          * replies it found for handling here.
1721          *
1722          * We can avoid contention for exp_uncommitted_replies_lock between the
1723          * HRT threads and further commit callbacks by checking rs_committed
1724          * which is set in the commit callback while it holds both
1725          * rs_lock and exp_uncommitted_reples.
1726          *
1727          * If we see rs_committed clear, the commit callback _may_ not have
1728          * handled this reply yet and we race with it to grab
1729          * exp_uncommitted_replies_lock before removing the reply from
1730          * exp_uncommitted_replies.  Note that if we lose the race and the
1731          * reply has already been removed, list_del_init() is a noop.
1732          *
1733          * If we see rs_committed set, we know the commit callback is handling,
1734          * or has handled this reply since store reordering might allow us to
1735          * see rs_committed set out of sequence.  But since this is done
1736          * holding rs_lock, we can be sure it has all completed once we hold
1737          * rs_lock, which we do right next.
1738          */
1739         if (!rs->rs_committed) {
1740                 cfs_spin_lock(&exp->exp_uncommitted_replies_lock);
1741                 cfs_list_del_init(&rs->rs_obd_list);
1742                 cfs_spin_unlock(&exp->exp_uncommitted_replies_lock);
1743         }
1744
1745         cfs_spin_lock(&rs->rs_lock);
1746
1747         been_handled = rs->rs_handled;
1748         rs->rs_handled = 1;
1749
1750         nlocks = rs->rs_nlocks;                 /* atomic "steal", but */
1751         rs->rs_nlocks = 0;                      /* locks still on rs_locks! */
1752
1753         if (nlocks == 0 && !been_handled) {
1754                 /* If we see this, we should already have seen the warning
1755                  * in mds_steal_ack_locks()  */
1756                 CWARN("All locks stolen from rs %p x"LPD64".t"LPD64
1757                       " o%d NID %s\n",
1758                       rs,
1759                       rs->rs_xid, rs->rs_transno, rs->rs_opc,
1760                       libcfs_nid2str(exp->exp_connection->c_peer.nid));
1761         }
1762
1763         if ((!been_handled && rs->rs_on_net) || nlocks > 0) {
1764                 cfs_spin_unlock(&rs->rs_lock);
1765
1766                 if (!been_handled && rs->rs_on_net) {
1767                         LNetMDUnlink(rs->rs_md_h);
1768                         /* Ignore return code; we're racing with
1769                          * completion... */
1770                 }
1771
1772                 while (nlocks-- > 0)
1773                         ldlm_lock_decref(&rs->rs_locks[nlocks],
1774                                          rs->rs_modes[nlocks]);
1775
1776                 cfs_spin_lock(&rs->rs_lock);
1777         }
1778
1779         rs->rs_scheduled = 0;
1780
1781         if (!rs->rs_on_net) {
1782                 /* Off the net */
1783                 cfs_spin_unlock(&rs->rs_lock);
1784
1785                 class_export_put (exp);
1786                 rs->rs_export = NULL;
1787                 ptlrpc_rs_decref (rs);
1788                 cfs_atomic_dec (&svc->srv_outstanding_replies);
1789                 if (cfs_atomic_dec_and_test(&svc->srv_n_difficult_replies) &&
1790                     svc->srv_is_stopping)
1791                         cfs_waitq_broadcast(&svc->srv_waitq);
1792                 RETURN(1);
1793         }
1794
1795         /* still on the net; callback will schedule */
1796         cfs_spin_unlock(&rs->rs_lock);
1797         RETURN(1);
1798 }
1799
1800 #ifndef __KERNEL__
1801
1802 /**
1803  * Check whether given service has a reply available for processing
1804  * and process it.
1805  *
1806  * \param svc a ptlrpc service
1807  * \retval 0 no replies processed
1808  * \retval 1 one reply processed
1809  */
1810 static int
1811 ptlrpc_server_handle_reply(struct ptlrpc_service *svc)
1812 {
1813         struct ptlrpc_reply_state *rs = NULL;
1814         ENTRY;
1815
1816         cfs_spin_lock(&svc->srv_lock);
1817         if (!cfs_list_empty(&svc->srv_reply_queue)) {
1818                 rs = cfs_list_entry(svc->srv_reply_queue.prev,
1819                                     struct ptlrpc_reply_state,
1820                                     rs_list);
1821                 cfs_list_del_init(&rs->rs_list);
1822         }
1823         cfs_spin_unlock(&svc->srv_lock);
1824         if (rs != NULL)
1825                 ptlrpc_handle_rs(rs);
1826         RETURN(rs != NULL);
1827 }
1828
1829 /* FIXME make use of timeout later */
1830 int
1831 liblustre_check_services (void *arg)
1832 {
1833         int  did_something = 0;
1834         int  rc;
1835         cfs_list_t *tmp, *nxt;
1836         ENTRY;
1837
1838         /* I'm relying on being single threaded, not to have to lock
1839          * ptlrpc_all_services etc */
1840         cfs_list_for_each_safe (tmp, nxt, &ptlrpc_all_services) {
1841                 struct ptlrpc_service *svc =
1842                         cfs_list_entry (tmp, struct ptlrpc_service, srv_list);
1843
1844                 if (svc->srv_threads_running != 0)     /* I've recursed */
1845                         continue;
1846
1847                 /* service threads can block for bulk, so this limits us
1848                  * (arbitrarily) to recursing 1 stack frame per service.
1849                  * Note that the problem with recursion is that we have to
1850                  * unwind completely before our caller can resume. */
1851
1852                 svc->srv_threads_running++;
1853
1854                 do {
1855                         rc = ptlrpc_server_handle_req_in(svc);
1856                         rc |= ptlrpc_server_handle_reply(svc);
1857                         rc |= ptlrpc_at_check_timed(svc);
1858                         rc |= ptlrpc_server_handle_request(svc, NULL);
1859                         rc |= (ptlrpc_server_post_idle_rqbds(svc) > 0);
1860                         did_something |= rc;
1861                 } while (rc);
1862
1863                 svc->srv_threads_running--;
1864         }
1865
1866         RETURN(did_something);
1867 }
1868 #define ptlrpc_stop_all_threads(s) do {} while (0)
1869
1870 #else /* __KERNEL__ */
1871
1872 static void
1873 ptlrpc_check_rqbd_pool(struct ptlrpc_service *svc)
1874 {
1875         int avail = svc->srv_nrqbd_receiving;
1876         int low_water = test_req_buffer_pressure ? 0 :
1877                         svc->srv_nbuf_per_group/2;
1878
1879         /* NB I'm not locking; just looking. */
1880
1881         /* CAVEAT EMPTOR: We might be allocating buffers here because we've
1882          * allowed the request history to grow out of control.  We could put a
1883          * sanity check on that here and cull some history if we need the
1884          * space. */
1885
1886         if (avail <= low_water)
1887                 ptlrpc_grow_req_bufs(svc);
1888
1889         if (svc->srv_stats)
1890                 lprocfs_counter_add(svc->srv_stats, PTLRPC_REQBUF_AVAIL_CNTR,
1891                                     avail);
1892 }
1893
1894 static int
1895 ptlrpc_retry_rqbds(void *arg)
1896 {
1897         struct ptlrpc_service *svc = (struct ptlrpc_service *)arg;
1898
1899         svc->srv_rqbd_timeout = 0;
1900         return (-ETIMEDOUT);
1901 }
1902
1903 /**
1904  *  Status bits to pass todo info from
1905  *  ptlrpc_main_check_event to ptlrpc_main.
1906  */
1907 #define PTLRPC_MAIN_STOPPING    0x01
1908 #define PTLRPC_MAIN_IN_REQ      0x02
1909 #define PTLRPC_MAIN_ACTIVE_REQ  0x04
1910 #define PTLRPC_MAIN_CHECK_TIMED 0x08
1911 #define PTLRPC_MAIN_REPOST      0x10
1912
1913 /**
1914  * A container to share per-thread status variables between
1915  * ptlrpc_main_check_event and ptlrpc_main functions.
1916  */
1917 struct ptlrpc_main_check_s {
1918         /** todo info for the ptrlrpc_main */
1919         int todo;
1920         /** is this thread counted as running or not? */
1921         int running;
1922 };
1923
1924 /**
1925  * Check whether current service thread has work to do.
1926  */
1927 static int ptlrpc_main_check_event(struct ptlrpc_thread *t,
1928                                    struct ptlrpc_main_check_s *status)
1929 {
1930         struct ptlrpc_service *svc = t->t_svc;
1931         ENTRY;
1932
1933         status->todo = 0;
1934
1935         /* check the stop flags w/o any locking to make all
1936          * concurrently running threads stop faster. */
1937         if (unlikely((t->t_flags & SVC_STOPPING) ||
1938                      svc->srv_is_stopping)) {
1939                 status->todo |= PTLRPC_MAIN_STOPPING;
1940                 goto out;
1941         }
1942
1943         cfs_spin_lock(&svc->srv_lock);
1944         /* count this thread as not running before possible sleep in
1945          * the outer wait event if it is not done yet. */
1946         if (status->running) {
1947                 LASSERT(svc->srv_threads_running > 0);
1948                 svc->srv_threads_running--;
1949                 status->running = 0;
1950         }
1951         /* Process all incoming reqs before handling any */
1952         if (!cfs_list_empty(&svc->srv_req_in_queue)) {
1953                         status->todo |= PTLRPC_MAIN_IN_REQ;
1954         }
1955         /* Don't handle regular requests in the last thread, in order
1956          * to handle any incoming reqs, early replies, etc. */
1957         if (ptlrpc_server_request_pending(svc, 0) &&
1958             (svc->srv_threads_running < (svc->srv_threads_started - 1))) {
1959                 status->todo |= PTLRPC_MAIN_ACTIVE_REQ;
1960         }
1961         if (svc->srv_at_check) {
1962                 status->todo |= PTLRPC_MAIN_CHECK_TIMED;
1963         }
1964         if ((!cfs_list_empty(&svc->srv_idle_rqbds) &&
1965              svc->srv_rqbd_timeout == 0)) {
1966                 status->todo |= PTLRPC_MAIN_REPOST;
1967         }
1968         /* count this thread as active if it goes out the outer
1969          * wait event */
1970         if (status->todo) {
1971                 svc->srv_threads_running++;
1972                 status->running = 1;
1973         }
1974         cfs_spin_unlock(&svc->srv_lock);
1975  out:
1976         RETURN(status->todo);
1977 }
1978
1979 /**
1980  * Main prlrpc service thread routine.
1981  */
1982 static int ptlrpc_main(void *arg)
1983 {
1984         struct ptlrpc_svc_data *data = (struct ptlrpc_svc_data *)arg;
1985         struct ptlrpc_service  *svc = data->svc;
1986         struct ptlrpc_thread   *thread = data->thread;
1987         struct obd_device      *dev = data->dev;
1988         struct ptlrpc_reply_state *rs;
1989         struct ptlrpc_main_check_s st;
1990 #ifdef WITH_GROUP_INFO
1991         cfs_group_info_t *ginfo = NULL;
1992 #endif
1993         struct lu_env env;
1994         int counter = 0, rc = 0;
1995         ENTRY;
1996
1997         thread->t_pid = cfs_curproc_pid();
1998         cfs_daemonize_ctxt(data->name);
1999
2000 #if defined(HAVE_NODE_TO_CPUMASK) && defined(CONFIG_NUMA)
2001         /* we need to do this before any per-thread allocation is done so that
2002          * we get the per-thread allocations on local node.  bug 7342 */
2003         if (svc->srv_cpu_affinity) {
2004                 int cpu, num_cpu;
2005
2006                 for (cpu = 0, num_cpu = 0; cpu < cfs_num_possible_cpus();
2007                      cpu++) {
2008                         if (!cfs_cpu_online(cpu))
2009                                 continue;
2010                         if (num_cpu == thread->t_id % cfs_num_online_cpus())
2011                                 break;
2012                         num_cpu++;
2013                 }
2014                 cfs_set_cpus_allowed(cfs_current(),
2015                                      node_to_cpumask(cpu_to_node(cpu)));
2016         }
2017 #endif
2018
2019 #ifdef WITH_GROUP_INFO
2020         ginfo = cfs_groups_alloc(0);
2021         if (!ginfo) {
2022                 rc = -ENOMEM;
2023                 goto out;
2024         }
2025
2026         cfs_set_current_groups(ginfo);
2027         cfs_put_group_info(ginfo);
2028 #endif
2029
2030         if (svc->srv_init != NULL) {
2031                 rc = svc->srv_init(thread);
2032                 if (rc)
2033                         goto out;
2034         }
2035
2036         rc = lu_context_init(&env.le_ctx,
2037                              svc->srv_ctx_tags|LCT_REMEMBER|LCT_NOREF);
2038         if (rc)
2039                 goto out_srv_fini;
2040
2041         thread->t_env = &env;
2042         env.le_ctx.lc_thread = thread;
2043         env.le_ctx.lc_cookie = 0x6;
2044
2045         /* Alloc reply state structure for this one */
2046         OBD_ALLOC_GFP(rs, svc->srv_max_reply_size, CFS_ALLOC_STD);
2047         if (!rs) {
2048                 rc = -ENOMEM;
2049                 goto out_srv_fini;
2050         }
2051
2052         cfs_spin_lock(&svc->srv_lock);
2053         /* SVC_STOPPING may already be set here if someone else is trying
2054          * to stop the service while this new thread has been dynamically
2055          * forked. We still set SVC_RUNNING to let our creator know that
2056          * we are now running, however we will exit as soon as possible */
2057         thread->t_flags |= SVC_RUNNING;
2058         cfs_spin_unlock(&svc->srv_lock);
2059
2060         /*
2061          * wake up our creator. Note: @data is invalid after this point,
2062          * because it's allocated on ptlrpc_start_thread() stack.
2063          */
2064         cfs_waitq_signal(&thread->t_ctl_waitq);
2065
2066         thread->t_watchdog = lc_watchdog_add(CFS_GET_TIMEOUT(svc), NULL, NULL);
2067
2068         cfs_spin_lock(&svc->srv_lock);
2069         cfs_list_add(&rs->rs_list, &svc->srv_free_rs_list);
2070         cfs_spin_unlock(&svc->srv_lock);
2071         cfs_waitq_signal(&svc->srv_free_rs_waitq);
2072
2073         CDEBUG(D_NET, "service thread %d (#%d) started\n", thread->t_id,
2074                svc->srv_threads_running);
2075
2076         /* XXX maintain a list of all managed devices: insert here */
2077
2078         st.running = 0;
2079         st.todo = 0;
2080
2081         while (!(st.todo & PTLRPC_MAIN_STOPPING)) {
2082                 /* Don't exit while there are replies to be handled */
2083                 struct l_wait_info lwi = LWI_TIMEOUT(svc->srv_rqbd_timeout,
2084                                                      ptlrpc_retry_rqbds, svc);
2085
2086                 lc_watchdog_disable(thread->t_watchdog);
2087
2088                 cfs_cond_resched();
2089
2090                 l_wait_event_exclusive (svc->srv_waitq,
2091                                         ptlrpc_main_check_event(thread, &st),
2092                                         &lwi);
2093
2094                 lc_watchdog_touch(thread->t_watchdog, CFS_GET_TIMEOUT(svc));
2095
2096                 ptlrpc_check_rqbd_pool(svc);
2097
2098                 if (svc->srv_threads_started < svc->srv_threads_max &&
2099                     svc->srv_n_active_reqs >= (svc->srv_threads_started - 1)) 
2100                         /* Ignore return code - we tried... */
2101                         ptlrpc_start_thread(dev, svc);
2102
2103                 if (st.todo & PTLRPC_MAIN_IN_REQ) {
2104                         ptlrpc_server_handle_req_in(svc);
2105                         /* but limit ourselves in case of flood */
2106                         if (counter++ < 1000)
2107                                 continue;
2108                         counter = 0;
2109                 }
2110                 if (st.todo & PTLRPC_MAIN_CHECK_TIMED) {
2111                         ptlrpc_at_check_timed(svc);
2112                 }
2113                 if (st.todo & PTLRPC_MAIN_ACTIVE_REQ) {
2114                         lu_context_enter(&env.le_ctx);
2115                         ptlrpc_server_handle_request(svc, thread);
2116                         lu_context_exit(&env.le_ctx);
2117                 }
2118                 if ((st.todo & PTLRPC_MAIN_REPOST) &&
2119                     ptlrpc_server_post_idle_rqbds(svc) < 0) {
2120                         /* I just failed to repost request buffers.
2121                          * Wait for a timeout (unless something else
2122                          * happens) before I try again */
2123                         svc->srv_rqbd_timeout = cfs_time_seconds(1)/10;
2124                         CDEBUG(D_RPCTRACE,"Posted buffers: %d\n",
2125                                svc->srv_nrqbd_receiving);
2126                 }
2127         }
2128
2129         lc_watchdog_delete(thread->t_watchdog);
2130         thread->t_watchdog = NULL;
2131
2132 out_srv_fini:
2133         /*
2134          * deconstruct service specific state created by ptlrpc_start_thread()
2135          */
2136         if (svc->srv_done != NULL)
2137                 svc->srv_done(thread);
2138
2139         lu_context_fini(&env.le_ctx);
2140 out:
2141         CDEBUG(D_RPCTRACE, "service thread [ %p : %u ] %d exiting: rc %d\n",
2142                thread, thread->t_pid, thread->t_id, rc);
2143
2144         cfs_spin_lock(&svc->srv_lock);
2145         if (st.running)
2146                 svc->srv_threads_running--;
2147         thread->t_id = rc;
2148         thread->t_flags = SVC_STOPPED;
2149         cfs_waitq_signal(&thread->t_ctl_waitq);
2150         cfs_spin_unlock(&svc->srv_lock);
2151
2152         return rc;
2153 }
2154
2155 struct ptlrpc_hr_args {
2156         int                       thread_index;
2157         int                       cpu_index;
2158         struct ptlrpc_hr_service *hrs;
2159 };
2160
2161 static int hrt_dont_sleep(struct ptlrpc_hr_thread *t,
2162                           cfs_list_t *replies)
2163 {
2164         int result;
2165
2166         cfs_spin_lock(&t->hrt_lock);
2167         cfs_list_splice_init(&t->hrt_queue, replies);
2168         result = cfs_test_bit(HRT_STOPPING, &t->hrt_flags) ||
2169                 !cfs_list_empty(replies);
2170         cfs_spin_unlock(&t->hrt_lock);
2171         return result;
2172 }
2173
2174 static int ptlrpc_hr_main(void *arg)
2175 {
2176         struct ptlrpc_hr_args * hr_args = arg;
2177         struct ptlrpc_hr_service *hr = hr_args->hrs;
2178         struct ptlrpc_hr_thread *t = &hr->hr_threads[hr_args->thread_index];
2179         char threadname[20];
2180         CFS_LIST_HEAD(replies);
2181
2182         snprintf(threadname, sizeof(threadname),
2183                  "ptlrpc_hr_%d", hr_args->thread_index);
2184
2185         cfs_daemonize_ctxt(threadname);
2186 #if defined(CONFIG_SMP) && defined(HAVE_NODE_TO_CPUMASK)
2187         cfs_set_cpus_allowed(cfs_current(),
2188                              node_to_cpumask(cpu_to_node(hr_args->cpu_index)));
2189 #endif
2190         cfs_set_bit(HRT_RUNNING, &t->hrt_flags);
2191         cfs_waitq_signal(&t->hrt_wait);
2192
2193         while (!cfs_test_bit(HRT_STOPPING, &t->hrt_flags)) {
2194
2195                 l_cfs_wait_event(t->hrt_wait, hrt_dont_sleep(t, &replies));
2196                 while (!cfs_list_empty(&replies)) {
2197                         struct ptlrpc_reply_state *rs;
2198
2199                         rs = cfs_list_entry(replies.prev,
2200                                             struct ptlrpc_reply_state,
2201                                             rs_list);
2202                         cfs_list_del_init(&rs->rs_list);
2203                         ptlrpc_handle_rs(rs);
2204                 }
2205         }
2206
2207         cfs_clear_bit(HRT_RUNNING, &t->hrt_flags);
2208         cfs_complete(&t->hrt_completion);
2209
2210         return 0;
2211 }
2212
2213 static int ptlrpc_start_hr_thread(struct ptlrpc_hr_service *hr, int n, int cpu)
2214 {
2215         struct ptlrpc_hr_thread *t = &hr->hr_threads[n];
2216         struct ptlrpc_hr_args args;
2217         int rc;
2218         ENTRY;
2219
2220         args.thread_index = n;
2221         args.cpu_index = cpu;
2222         args.hrs = hr;
2223
2224         rc = cfs_kernel_thread(ptlrpc_hr_main, (void*)&args,
2225                                CLONE_VM|CLONE_FILES);
2226         if (rc < 0) {
2227                 cfs_complete(&t->hrt_completion);
2228                 GOTO(out, rc);
2229         }
2230         l_cfs_wait_event(t->hrt_wait, cfs_test_bit(HRT_RUNNING, &t->hrt_flags));
2231         RETURN(0);
2232  out:
2233         return rc;
2234 }
2235
2236 static void ptlrpc_stop_hr_thread(struct ptlrpc_hr_thread *t)
2237 {
2238         ENTRY;
2239
2240         cfs_set_bit(HRT_STOPPING, &t->hrt_flags);
2241         cfs_waitq_signal(&t->hrt_wait);
2242         cfs_wait_for_completion(&t->hrt_completion);
2243
2244         EXIT;
2245 }
2246
2247 static void ptlrpc_stop_hr_threads(struct ptlrpc_hr_service *hrs)
2248 {
2249         int n;
2250         ENTRY;
2251
2252         for (n = 0; n < hrs->hr_n_threads; n++)
2253                 ptlrpc_stop_hr_thread(&hrs->hr_threads[n]);
2254
2255         EXIT;
2256 }
2257
2258 static int ptlrpc_start_hr_threads(struct ptlrpc_hr_service *hr)
2259 {
2260         int rc = -ENOMEM;
2261         int n, cpu, threads_started = 0;
2262         ENTRY;
2263
2264         LASSERT(hr != NULL);
2265         LASSERT(hr->hr_n_threads > 0);
2266
2267         for (n = 0, cpu = 0; n < hr->hr_n_threads; n++) {
2268 #if defined(CONFIG_SMP) && defined(HAVE_NODE_TO_CPUMASK)
2269                 while(!cfs_cpu_online(cpu)) {
2270                         cpu++;
2271                         if (cpu >= cfs_num_possible_cpus())
2272                                 cpu = 0;
2273                 }
2274 #endif
2275                 rc = ptlrpc_start_hr_thread(hr, n, cpu);
2276                 if (rc != 0)
2277                         break;
2278                 threads_started++;
2279                 cpu++;
2280         }
2281         if (threads_started == 0) {
2282                 CERROR("No reply handling threads started\n");
2283                 RETURN(-ESRCH);
2284         }
2285         if (threads_started < hr->hr_n_threads) {
2286                 CWARN("Started only %d reply handling threads from %d\n",
2287                       threads_started, hr->hr_n_threads);
2288                 hr->hr_n_threads = threads_started;
2289         }
2290         RETURN(0);
2291 }
2292
2293 static void ptlrpc_stop_thread(struct ptlrpc_service *svc,
2294                                struct ptlrpc_thread *thread)
2295 {
2296         struct l_wait_info lwi = { 0 };
2297         ENTRY;
2298
2299         CDEBUG(D_RPCTRACE, "Stopping thread [ %p : %u ]\n",
2300                thread, thread->t_pid);
2301
2302         cfs_spin_lock(&svc->srv_lock);
2303         /* let the thread know that we would like it to stop asap */
2304         thread->t_flags |= SVC_STOPPING;
2305         cfs_spin_unlock(&svc->srv_lock);
2306
2307         cfs_waitq_broadcast(&svc->srv_waitq);
2308         l_wait_event(thread->t_ctl_waitq,
2309                      (thread->t_flags & SVC_STOPPED), &lwi);
2310
2311         cfs_spin_lock(&svc->srv_lock);
2312         cfs_list_del(&thread->t_link);
2313         cfs_spin_unlock(&svc->srv_lock);
2314
2315         OBD_FREE_PTR(thread);
2316         EXIT;
2317 }
2318
2319 void ptlrpc_stop_all_threads(struct ptlrpc_service *svc)
2320 {
2321         struct ptlrpc_thread *thread;
2322         ENTRY;
2323
2324         cfs_spin_lock(&svc->srv_lock);
2325         while (!cfs_list_empty(&svc->srv_threads)) {
2326                 thread = cfs_list_entry(svc->srv_threads.next,
2327                                         struct ptlrpc_thread, t_link);
2328
2329                 cfs_spin_unlock(&svc->srv_lock);
2330                 ptlrpc_stop_thread(svc, thread);
2331                 cfs_spin_lock(&svc->srv_lock);
2332         }
2333
2334         cfs_spin_unlock(&svc->srv_lock);
2335         EXIT;
2336 }
2337
2338 int ptlrpc_start_threads(struct obd_device *dev, struct ptlrpc_service *svc)
2339 {
2340         int i, rc = 0;
2341         ENTRY;
2342
2343         /* We require 2 threads min - see note in
2344            ptlrpc_server_handle_request */
2345         LASSERT(svc->srv_threads_min >= 2);
2346         for (i = 0; i < svc->srv_threads_min; i++) {
2347                 rc = ptlrpc_start_thread(dev, svc);
2348                 /* We have enough threads, don't start more.  b=15759 */
2349                 if (rc == -EMFILE)
2350                         break;
2351                 if (rc) {
2352                         CERROR("cannot start %s thread #%d: rc %d\n",
2353                                svc->srv_thread_name, i, rc);
2354                         ptlrpc_stop_all_threads(svc);
2355                         break;
2356                 }
2357         }
2358         RETURN(rc);
2359 }
2360
2361 int ptlrpc_start_thread(struct obd_device *dev, struct ptlrpc_service *svc)
2362 {
2363         struct l_wait_info lwi = { 0 };
2364         struct ptlrpc_svc_data d;
2365         struct ptlrpc_thread *thread;
2366         char name[32];
2367         int id, rc;
2368         ENTRY;
2369
2370         CDEBUG(D_RPCTRACE, "%s started %d min %d max %d running %d\n",
2371                svc->srv_name, svc->srv_threads_started, svc->srv_threads_min,
2372                svc->srv_threads_max, svc->srv_threads_running);
2373
2374         if (unlikely(svc->srv_is_stopping))
2375                 RETURN(-ESRCH);
2376
2377         if (unlikely(svc->srv_threads_started >= svc->srv_threads_max) ||
2378             (OBD_FAIL_CHECK(OBD_FAIL_TGT_TOOMANY_THREADS) &&
2379              svc->srv_threads_started == svc->srv_threads_min - 1))
2380                 RETURN(-EMFILE);
2381
2382         OBD_ALLOC_PTR(thread);
2383         if (thread == NULL)
2384                 RETURN(-ENOMEM);
2385         cfs_waitq_init(&thread->t_ctl_waitq);
2386
2387         cfs_spin_lock(&svc->srv_lock);
2388         if (svc->srv_threads_started >= svc->srv_threads_max) {
2389                 cfs_spin_unlock(&svc->srv_lock);
2390                 OBD_FREE_PTR(thread);
2391                 RETURN(-EMFILE);
2392         }
2393         cfs_list_add(&thread->t_link, &svc->srv_threads);
2394         id = svc->srv_threads_started++;
2395         cfs_spin_unlock(&svc->srv_lock);
2396
2397         thread->t_svc = svc;
2398         thread->t_id = id;
2399         sprintf(name, "%s_%02d", svc->srv_thread_name, id);
2400         d.dev = dev;
2401         d.svc = svc;
2402         d.name = name;
2403         d.thread = thread;
2404
2405         CDEBUG(D_RPCTRACE, "starting thread '%s'\n", name);
2406
2407         /* CLONE_VM and CLONE_FILES just avoid a needless copy, because we
2408          * just drop the VM and FILES in cfs_daemonize_ctxt() right away.
2409          */
2410         rc = cfs_kernel_thread(ptlrpc_main, &d, CLONE_VM | CLONE_FILES);
2411         if (rc < 0) {
2412                 CERROR("cannot start thread '%s': rc %d\n", name, rc);
2413
2414                 cfs_spin_lock(&svc->srv_lock);
2415                 cfs_list_del(&thread->t_link);
2416                 --svc->srv_threads_started;
2417                 cfs_spin_unlock(&svc->srv_lock);
2418
2419                 OBD_FREE(thread, sizeof(*thread));
2420                 RETURN(rc);
2421         }
2422         l_wait_event(thread->t_ctl_waitq,
2423                      thread->t_flags & (SVC_RUNNING | SVC_STOPPED), &lwi);
2424
2425         rc = (thread->t_flags & SVC_STOPPED) ? thread->t_id : 0;
2426         RETURN(rc);
2427 }
2428
2429
2430 int ptlrpc_hr_init(void)
2431 {
2432         int i;
2433         int n_cpus = cfs_num_online_cpus();
2434         struct ptlrpc_hr_service *hr;
2435         int size;
2436         int rc;
2437         ENTRY;
2438
2439         LASSERT(ptlrpc_hr == NULL);
2440
2441         size = offsetof(struct ptlrpc_hr_service, hr_threads[n_cpus]);
2442         OBD_ALLOC(hr, size);
2443         if (hr == NULL)
2444                 RETURN(-ENOMEM);
2445         for (i = 0; i < n_cpus; i++) {
2446                 struct ptlrpc_hr_thread *t = &hr->hr_threads[i];
2447
2448                 cfs_spin_lock_init(&t->hrt_lock);
2449                 cfs_waitq_init(&t->hrt_wait);
2450                 CFS_INIT_LIST_HEAD(&t->hrt_queue);
2451                 cfs_init_completion(&t->hrt_completion);
2452         }
2453         hr->hr_n_threads = n_cpus;
2454         hr->hr_size = size;
2455         ptlrpc_hr = hr;
2456
2457         rc = ptlrpc_start_hr_threads(hr);
2458         if (rc) {
2459                 OBD_FREE(hr, hr->hr_size);
2460                 ptlrpc_hr = NULL;
2461         }
2462         RETURN(rc);
2463 }
2464
2465 void ptlrpc_hr_fini(void)
2466 {
2467         if (ptlrpc_hr != NULL) {
2468                 ptlrpc_stop_hr_threads(ptlrpc_hr);
2469                 OBD_FREE(ptlrpc_hr, ptlrpc_hr->hr_size);
2470                 ptlrpc_hr = NULL;
2471         }
2472 }
2473
2474 #endif /* __KERNEL__ */
2475
2476 /**
2477  * Wait until all already scheduled replies are processed.
2478  */
2479 static void ptlrpc_wait_replies(struct ptlrpc_service *svc)
2480 {
2481         while (1) {
2482                 int rc;
2483                 struct l_wait_info lwi = LWI_TIMEOUT(cfs_time_seconds(10),
2484                                                      NULL, NULL);
2485                 rc = l_wait_event(svc->srv_waitq, cfs_atomic_read(&svc-> \
2486                                   srv_n_difficult_replies) == 0,
2487                                   &lwi);
2488                 if (rc == 0)
2489                         break;
2490                 CWARN("Unexpectedly long timeout %p\n", svc);
2491         }
2492 }
2493
2494 int ptlrpc_unregister_service(struct ptlrpc_service *service)
2495 {
2496         int                   rc;
2497         struct l_wait_info    lwi;
2498         cfs_list_t           *tmp;
2499         struct ptlrpc_reply_state *rs, *t;
2500         struct ptlrpc_at_array *array = &service->srv_at_array;
2501         ENTRY;
2502
2503         service->srv_is_stopping = 1;
2504         cfs_timer_disarm(&service->srv_at_timer);
2505
2506         ptlrpc_stop_all_threads(service);
2507         LASSERT(cfs_list_empty(&service->srv_threads));
2508
2509         cfs_spin_lock (&ptlrpc_all_services_lock);
2510         cfs_list_del_init (&service->srv_list);
2511         cfs_spin_unlock (&ptlrpc_all_services_lock);
2512
2513         ptlrpc_lprocfs_unregister_service(service);
2514
2515         /* All history will be culled when the next request buffer is
2516          * freed */
2517         service->srv_max_history_rqbds = 0;
2518
2519         CDEBUG(D_NET, "%s: tearing down\n", service->srv_name);
2520
2521         rc = LNetClearLazyPortal(service->srv_req_portal);
2522         LASSERT (rc == 0);
2523
2524         /* Unlink all the request buffers.  This forces a 'final' event with
2525          * its 'unlink' flag set for each posted rqbd */
2526         cfs_list_for_each(tmp, &service->srv_active_rqbds) {
2527                 struct ptlrpc_request_buffer_desc *rqbd =
2528                         cfs_list_entry(tmp, struct ptlrpc_request_buffer_desc,
2529                                        rqbd_list);
2530
2531                 rc = LNetMDUnlink(rqbd->rqbd_md_h);
2532                 LASSERT (rc == 0 || rc == -ENOENT);
2533         }
2534
2535         /* Wait for the network to release any buffers it's currently
2536          * filling */
2537         for (;;) {
2538                 cfs_spin_lock(&service->srv_lock);
2539                 rc = service->srv_nrqbd_receiving;
2540                 cfs_spin_unlock(&service->srv_lock);
2541
2542                 if (rc == 0)
2543                         break;
2544
2545                 /* Network access will complete in finite time but the HUGE
2546                  * timeout lets us CWARN for visibility of sluggish NALs */
2547                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2548                                            cfs_time_seconds(1), NULL, NULL);
2549                 rc = l_wait_event(service->srv_waitq,
2550                                   service->srv_nrqbd_receiving == 0,
2551                                   &lwi);
2552                 if (rc == -ETIMEDOUT)
2553                         CWARN("Service %s waiting for request buffers\n",
2554                               service->srv_name);
2555         }
2556
2557         /* schedule all outstanding replies to terminate them */
2558         cfs_spin_lock(&service->srv_lock);
2559         while (!cfs_list_empty(&service->srv_active_replies)) {
2560                 struct ptlrpc_reply_state *rs =
2561                         cfs_list_entry(service->srv_active_replies.next,
2562                                        struct ptlrpc_reply_state, rs_list);
2563                 cfs_spin_lock(&rs->rs_lock);
2564                 ptlrpc_schedule_difficult_reply(rs);
2565                 cfs_spin_unlock(&rs->rs_lock);
2566         }
2567         cfs_spin_unlock(&service->srv_lock);
2568
2569         /* purge the request queue.  NB No new replies (rqbds all unlinked)
2570          * and no service threads, so I'm the only thread noodling the
2571          * request queue now */
2572         while (!cfs_list_empty(&service->srv_req_in_queue)) {
2573                 struct ptlrpc_request *req =
2574                         cfs_list_entry(service->srv_req_in_queue.next,
2575                                        struct ptlrpc_request,
2576                                        rq_list);
2577
2578                 cfs_list_del(&req->rq_list);
2579                 service->srv_n_queued_reqs--;
2580                 service->srv_n_active_reqs++;
2581                 ptlrpc_server_finish_request(req);
2582         }
2583         while (ptlrpc_server_request_pending(service, 1)) {
2584                 struct ptlrpc_request *req;
2585
2586                 req = ptlrpc_server_request_get(service);
2587                 cfs_list_del(&req->rq_list);
2588                 service->srv_n_queued_reqs--;
2589                 service->srv_n_active_reqs++;
2590                 ptlrpc_hpreq_fini(req);
2591                 ptlrpc_server_finish_request(req);
2592         }
2593         LASSERT(service->srv_n_queued_reqs == 0);
2594         LASSERT(service->srv_n_active_reqs == 0);
2595         LASSERT(service->srv_n_history_rqbds == 0);
2596         LASSERT(cfs_list_empty(&service->srv_active_rqbds));
2597
2598         /* Now free all the request buffers since nothing references them
2599          * any more... */
2600         while (!cfs_list_empty(&service->srv_idle_rqbds)) {
2601                 struct ptlrpc_request_buffer_desc *rqbd =
2602                         cfs_list_entry(service->srv_idle_rqbds.next,
2603                                        struct ptlrpc_request_buffer_desc,
2604                                        rqbd_list);
2605
2606                 ptlrpc_free_rqbd(rqbd);
2607         }
2608
2609         ptlrpc_wait_replies(service);
2610
2611         cfs_list_for_each_entry_safe(rs, t, &service->srv_free_rs_list,
2612                                      rs_list) {
2613                 cfs_list_del(&rs->rs_list);
2614                 OBD_FREE(rs, service->srv_max_reply_size);
2615         }
2616
2617         /* In case somebody rearmed this in the meantime */
2618         cfs_timer_disarm(&service->srv_at_timer);
2619
2620         if (array->paa_reqs_array != NULL) {
2621                 OBD_FREE(array->paa_reqs_array,
2622                          sizeof(cfs_list_t) * array->paa_size);
2623                 array->paa_reqs_array = NULL;
2624         }
2625
2626         if (array->paa_reqs_count != NULL) {
2627                 OBD_FREE(array->paa_reqs_count,
2628                          sizeof(__u32) * array->paa_size);
2629                 array->paa_reqs_count= NULL;
2630         }
2631
2632         OBD_FREE_PTR(service);
2633         RETURN(0);
2634 }
2635
2636 /* Returns 0 if the service is healthy.
2637  *
2638  * Right now, it just checks to make sure that requests aren't languishing
2639  * in the queue.  We'll use this health check to govern whether a node needs
2640  * to be shot, so it's intentionally non-aggressive. */
2641 int ptlrpc_service_health_check(struct ptlrpc_service *svc)
2642 {
2643         struct ptlrpc_request *request;
2644         struct timeval         right_now;
2645         long                   timediff;
2646
2647         if (svc == NULL)
2648                 return 0;
2649
2650         cfs_gettimeofday(&right_now);
2651
2652         cfs_spin_lock(&svc->srv_lock);
2653         if (!ptlrpc_server_request_pending(svc, 1)) {
2654                 cfs_spin_unlock(&svc->srv_lock);
2655                 return 0;
2656         }
2657
2658         /* How long has the next entry been waiting? */
2659         if (cfs_list_empty(&svc->srv_request_queue))
2660                 request = cfs_list_entry(svc->srv_request_hpq.next,
2661                                          struct ptlrpc_request, rq_list);
2662         else
2663                 request = cfs_list_entry(svc->srv_request_queue.next,
2664                                          struct ptlrpc_request, rq_list);
2665         timediff = cfs_timeval_sub(&right_now, &request->rq_arrival_time, NULL);
2666         cfs_spin_unlock(&svc->srv_lock);
2667
2668         if ((timediff / ONE_MILLION) > (AT_OFF ? obd_timeout * 3/2 :
2669                                         at_max)) {
2670                 CERROR("%s: unhealthy - request has been waiting %lds\n",
2671                        svc->srv_name, timediff / ONE_MILLION);
2672                 return (-1);
2673         }
2674
2675         return 0;
2676 }