Whamcloud - gitweb
09b95902a50e32b99845fbdec894faaf062a0b0b
[fs/lustre-release.git] / lustre / ldlm / ldlm_pool.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  * lustre/ldlm/ldlm_pool.c
37  *
38  * Author: Yury Umanets <umka@clusterfs.com>
39  */
40
41 /*
42  * Idea of this code is rather simple. Each second, for each server namespace
43  * we have SLV - server lock volume which is calculated on current number of
44  * granted locks, grant speed for past period, etc - that is, locking load.
45  * This SLV number may be thought as a flow definition for simplicity. It is
46  * sent to clients with each occasion to let them know what is current load
47  * situation on the server. By default, at the beginning, SLV on server is
48  * set max value which is calculated as the following: allow to one client
49  * have all locks of limit ->pl_limit for 10h.
50  *
51  * Next, on clients, number of cached locks is not limited artificially in any
52  * way as it was before. Instead, client calculates CLV, that is, client lock
53  * volume for each lock and compares it with last SLV from the server. CLV is
54  * calculated as the number of locks in LRU * lock live time in seconds. If
55  * CLV > SLV - lock is canceled.
56  *
57  * Client has LVF, that is, lock volume factor which regulates how much sensitive
58  * client should be about last SLV from server. The higher LVF is the more locks
59  * will be canceled on client. Default value for it is 1. Setting LVF to 2 means
60  * that client will cancel locks 2 times faster.
61  *
62  * Locks on a client will be canceled more intensively in these cases:
63  * (1) if SLV is smaller, that is, load is higher on the server;
64  * (2) client has a lot of locks (the more locks are held by client, the bigger
65  *     chances that some of them should be canceled);
66  * (3) client has old locks (taken some time ago);
67  *
68  * Thus, according to flow paradigm that we use for better understanding SLV,
69  * CLV is the volume of particle in flow described by SLV. According to this,
70  * if flow is getting thinner, more and more particles become outside of it and
71  * as particles are locks, they should be canceled.
72  *
73  * General idea of this belongs to Vitaly Fertman (vitaly@clusterfs.com). Andreas
74  * Dilger (adilger@clusterfs.com) proposed few nice ideas like using LVF and many
75  * cleanups. Flow definition to allow more easy understanding of the logic belongs
76  * to Nikita Danilov (nikita@clusterfs.com) as well as many cleanups and fixes.
77  * And design and implementation are done by Yury Umanets (umka@clusterfs.com).
78  *
79  * Glossary for terms used:
80  *
81  * pl_limit - Number of allowed locks in pool. Applies to server and client
82  * side (tunable);
83  *
84  * pl_granted - Number of granted locks (calculated);
85  * pl_grant_rate - Number of granted locks for last T (calculated);
86  * pl_cancel_rate - Number of canceled locks for last T (calculated);
87  * pl_grant_speed - Grant speed (GR - CR) for last T (calculated);
88  * pl_grant_plan - Planned number of granted locks for next T (calculated);
89  * pl_server_lock_volume - Current server lock volume (calculated);
90  *
91  * As it may be seen from list above, we have few possible tunables which may
92  * affect behavior much. They all may be modified via proc. However, they also
93  * give a possibility for constructing few pre-defined behavior policies. If
94  * none of predefines is suitable for a working pattern being used, new one may
95  * be "constructed" via proc tunables.
96  */
97
98 #define DEBUG_SUBSYSTEM S_LDLM
99
100 #ifdef __KERNEL__
101 # include <lustre_dlm.h>
102 #else
103 # include <liblustre.h>
104 #endif
105
106 #include <cl_object.h>
107
108 #include <obd_class.h>
109 #include <obd_support.h>
110 #include "ldlm_internal.h"
111
112 #ifdef HAVE_LRU_RESIZE_SUPPORT
113
114 /*
115  * 50 ldlm locks for 1MB of RAM.
116  */
117 #define LDLM_POOL_HOST_L ((num_physpages >> (20 - CFS_PAGE_SHIFT)) * 50)
118
119 /*
120  * Maximal possible grant step plan in %.
121  */
122 #define LDLM_POOL_MAX_GSP (30)
123
124 /*
125  * Minimal possible grant step plan in %.
126  */
127 #define LDLM_POOL_MIN_GSP (1)
128
129 /*
130  * This controls the speed of reaching LDLM_POOL_MAX_GSP
131  * with increasing thread period.
132  */
133 #define LDLM_POOL_GSP_STEP (4)
134
135 /*
136  * LDLM_POOL_GSP% of all locks is default GP.
137  */
138 #define LDLM_POOL_GP(L)   (((L) * LDLM_POOL_MAX_GSP) / 100)
139
140 /*
141  * Max age for locks on clients.
142  */
143 #define LDLM_POOL_MAX_AGE (36000)
144
145 #ifdef __KERNEL__
146 extern cfs_proc_dir_entry_t *ldlm_ns_proc_dir;
147 #endif
148
149 #define avg(src, add) \
150         ((src) = ((src) + (add)) / 2)
151
152 static inline __u64 dru(__u64 val, __u32 div)
153 {
154         __u64 ret = val + (div - 1);
155         do_div(ret, div);
156         return ret;
157 }
158
159 static inline __u64 ldlm_pool_slv_max(__u32 L)
160 {
161         /*
162          * Allow to have all locks for 1 client for 10 hrs.
163          * Formula is the following: limit * 10h / 1 client.
164          */
165         __u64 lim = L *  LDLM_POOL_MAX_AGE / 1;
166         return lim;
167 }
168
169 static inline __u64 ldlm_pool_slv_min(__u32 L)
170 {
171         return 1;
172 }
173
174 enum {
175         LDLM_POOL_FIRST_STAT = 0,
176         LDLM_POOL_GRANTED_STAT = LDLM_POOL_FIRST_STAT,
177         LDLM_POOL_GRANT_STAT,
178         LDLM_POOL_CANCEL_STAT,
179         LDLM_POOL_GRANT_RATE_STAT,
180         LDLM_POOL_CANCEL_RATE_STAT,
181         LDLM_POOL_GRANT_PLAN_STAT,
182         LDLM_POOL_SLV_STAT,
183         LDLM_POOL_SHRINK_REQTD_STAT,
184         LDLM_POOL_SHRINK_FREED_STAT,
185         LDLM_POOL_RECALC_STAT,
186         LDLM_POOL_TIMING_STAT,
187         LDLM_POOL_LAST_STAT
188 };
189
190 static inline struct ldlm_namespace *ldlm_pl2ns(struct ldlm_pool *pl)
191 {
192         return container_of(pl, struct ldlm_namespace, ns_pool);
193 }
194
195 /**
196  * Calculates suggested grant_step in % of available locks for passed
197  * \a period. This is later used in grant_plan calculations.
198  */
199 static inline int ldlm_pool_t2gsp(int t)
200 {
201         /*
202          * This yeilds 1% grant step for anything below LDLM_POOL_GSP_STEP
203          * and up to 30% for anything higher than LDLM_POOL_GSP_STEP.
204          *
205          * How this will affect execution is the following:
206          *
207          * - for thread peroid 1s we will have grant_step 1% which good from
208          * pov of taking some load off from server and push it out to clients.
209          * This is like that because 1% for grant_step means that server will
210          * not allow clients to get lots of locks inshort period of time and
211          * keep all old locks in their caches. Clients will always have to
212          * get some locks back if they want to take some new;
213          *
214          * - for thread period 10s (which is default) we will have 23% which
215          * means that clients will have enough of room to take some new locks
216          * without getting some back. All locks from this 23% which were not
217          * taken by clients in current period will contribute in SLV growing.
218          * SLV growing means more locks cached on clients until limit or grant
219          * plan is reached.
220          */
221         return LDLM_POOL_MAX_GSP -
222                 (LDLM_POOL_MAX_GSP - LDLM_POOL_MIN_GSP) /
223                 (1 << (t / LDLM_POOL_GSP_STEP));
224 }
225
226 /**
227  * Recalculates next grant limit on passed \a pl.
228  *
229  * \pre ->pl_lock is locked.
230  */
231 static inline void ldlm_pool_recalc_grant_plan(struct ldlm_pool *pl)
232 {
233         int granted, grant_step, limit;
234
235         limit = ldlm_pool_get_limit(pl);
236         granted = atomic_read(&pl->pl_granted);
237
238         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
239         grant_step = ((limit - granted) * grant_step) / 100;
240         pl->pl_grant_plan = granted + grant_step;
241 }
242
243 /**
244  * Recalculates next SLV on passed \a pl.
245  *
246  * \pre ->pl_lock is locked.
247  */
248 static inline void ldlm_pool_recalc_slv(struct ldlm_pool *pl)
249 {
250         int grant_usage, granted, grant_plan;
251         __u64 slv, slv_factor;
252         __u32 limit;
253
254         slv = pl->pl_server_lock_volume;
255         grant_plan = pl->pl_grant_plan;
256         limit = ldlm_pool_get_limit(pl);
257         granted = atomic_read(&pl->pl_granted);
258
259         grant_usage = limit - (granted - grant_plan);
260         if (grant_usage <= 0)
261                 grant_usage = 1;
262
263         /*
264          * Find out SLV change factor which is the ratio of grant usage
265          * from limit. SLV changes as fast as the ratio of grant plan
266          * consumtion. The more locks from grant plan are not consumed
267          * by clients in last interval (idle time), the faster grows
268          * SLV. And the opposite, the more grant plan is over-consumed
269          * (load time) the faster drops SLV.
270          */
271         slv_factor = (grant_usage * 100) / limit;
272         if (2 * abs(granted - limit) > limit) {
273                 slv_factor *= slv_factor;
274                 slv_factor = dru(slv_factor, 100);
275         }
276         slv = slv * slv_factor;
277         slv = dru(slv, 100);
278
279         if (slv > ldlm_pool_slv_max(limit)) {
280                 slv = ldlm_pool_slv_max(limit);
281         } else if (slv < ldlm_pool_slv_min(limit)) {
282                 slv = ldlm_pool_slv_min(limit);
283         }
284
285         pl->pl_server_lock_volume = slv;
286 }
287
288 /**
289  * Recalculates next stats on passed \a pl.
290  *
291  * \pre ->pl_lock is locked.
292  */
293 static inline void ldlm_pool_recalc_stats(struct ldlm_pool *pl)
294 {
295         int grant_plan = pl->pl_grant_plan;
296         __u64 slv = pl->pl_server_lock_volume;
297         int granted = atomic_read(&pl->pl_granted);
298         int grant_rate = atomic_read(&pl->pl_grant_rate);
299         int cancel_rate = atomic_read(&pl->pl_cancel_rate);
300
301         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_SLV_STAT,
302                             slv);
303         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
304                             granted);
305         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
306                             grant_rate);
307         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
308                             grant_plan);
309         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
310                             cancel_rate);
311 }
312
313 /**
314  * Sets current SLV into obd accessible via ldlm_pl2ns(pl)->ns_obd.
315  */
316 static void ldlm_srv_pool_push_slv(struct ldlm_pool *pl)
317 {
318         struct obd_device *obd;
319
320         /*
321          * Set new SLV in obd field for using it later without accessing the
322          * pool. This is required to avoid race between sending reply to client
323          * with new SLV and cleanup server stack in which we can't guarantee
324          * that namespace is still alive. We know only that obd is alive as
325          * long as valid export is alive.
326          */
327         obd = ldlm_pl2ns(pl)->ns_obd;
328         LASSERT(obd != NULL);
329         write_lock(&obd->obd_pool_lock);
330         obd->obd_pool_slv = pl->pl_server_lock_volume;
331         write_unlock(&obd->obd_pool_lock);
332 }
333
334 /**
335  * Recalculates all pool fields on passed \a pl.
336  *
337  * \pre ->pl_lock is not locked.
338  */
339 static int ldlm_srv_pool_recalc(struct ldlm_pool *pl)
340 {
341         time_t recalc_interval_sec;
342         ENTRY;
343
344         spin_lock(&pl->pl_lock);
345         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
346         if (recalc_interval_sec >= pl->pl_recalc_period) {
347                 /*
348                  * Recalc SLV after last period. This should be done
349                  * _before_ recalculating new grant plan.
350                  */
351                 ldlm_pool_recalc_slv(pl);
352
353                 /*
354                  * Make sure that pool informed obd of last SLV changes.
355                  */
356                 ldlm_srv_pool_push_slv(pl);
357
358                 /*
359                  * Update grant_plan for new period.
360                  */
361                 ldlm_pool_recalc_grant_plan(pl);
362
363                 pl->pl_recalc_time = cfs_time_current_sec();
364                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
365                                     recalc_interval_sec);
366         }
367
368         spin_unlock(&pl->pl_lock);
369         RETURN(0);
370 }
371
372 /**
373  * This function is used on server side as main entry point for memory
374  * preasure handling. It decreases SLV on \a pl according to passed
375  * \a nr and \a gfp_mask.
376  *
377  * Our goal here is to decrease SLV such a way that clients hold \a nr
378  * locks smaller in next 10h.
379  */
380 static int ldlm_srv_pool_shrink(struct ldlm_pool *pl,
381                                 int nr, unsigned int gfp_mask)
382 {
383         __u32 limit;
384         ENTRY;
385
386         /*
387          * VM is asking how many entries may be potentially freed.
388          */
389         if (nr == 0)
390                 RETURN(atomic_read(&pl->pl_granted));
391
392         /*
393          * Client already canceled locks but server is already in shrinker
394          * and can't cancel anything. Let's catch this race.
395          */
396         if (atomic_read(&pl->pl_granted) == 0)
397                 RETURN(0);
398
399         spin_lock(&pl->pl_lock);
400
401         /*
402          * We want shrinker to possibly cause cancelation of @nr locks from
403          * clients or grant approximately @nr locks smaller next intervals.
404          *
405          * This is why we decresed SLV by @nr. This effect will only be as
406          * long as one re-calc interval (1s these days) and this should be
407          * enough to pass this decreased SLV to all clients. On next recalc
408          * interval pool will either increase SLV if locks load is not high
409          * or will keep on same level or even decrease again, thus, shrinker
410          * decreased SLV will affect next recalc intervals and this way will
411          * make locking load lower.
412          */
413         if (nr < pl->pl_server_lock_volume) {
414                 pl->pl_server_lock_volume = pl->pl_server_lock_volume - nr;
415         } else {
416                 limit = ldlm_pool_get_limit(pl);
417                 pl->pl_server_lock_volume = ldlm_pool_slv_min(limit);
418         }
419
420         /*
421          * Make sure that pool informed obd of last SLV changes.
422          */
423         ldlm_srv_pool_push_slv(pl);
424         spin_unlock(&pl->pl_lock);
425
426         /*
427          * We did not really free any memory here so far, it only will be
428          * freed later may be, so that we return 0 to not confuse VM.
429          */
430         RETURN(0);
431 }
432
433 /**
434  * Setup server side pool \a pl with passed \a limit.
435  */
436 static int ldlm_srv_pool_setup(struct ldlm_pool *pl, int limit)
437 {
438         struct obd_device *obd;
439         ENTRY;
440
441         obd = ldlm_pl2ns(pl)->ns_obd;
442         LASSERT(obd != NULL && obd != LP_POISON);
443         LASSERT(obd->obd_type != LP_POISON);
444         write_lock(&obd->obd_pool_lock);
445         obd->obd_pool_limit = limit;
446         write_unlock(&obd->obd_pool_lock);
447
448         ldlm_pool_set_limit(pl, limit);
449         RETURN(0);
450 }
451
452 /**
453  * Sets SLV and Limit from ldlm_pl2ns(pl)->ns_obd tp passed \a pl.
454  */
455 static void ldlm_cli_pool_pop_slv(struct ldlm_pool *pl)
456 {
457         struct obd_device *obd;
458
459         /*
460          * Get new SLV and Limit from obd which is updated with comming
461          * RPCs.
462          */
463         obd = ldlm_pl2ns(pl)->ns_obd;
464         LASSERT(obd != NULL);
465         read_lock(&obd->obd_pool_lock);
466         pl->pl_server_lock_volume = obd->obd_pool_slv;
467         ldlm_pool_set_limit(pl, obd->obd_pool_limit);
468         read_unlock(&obd->obd_pool_lock);
469 }
470
471 /**
472  * Recalculates client sise pool \a pl according to current SLV and Limit.
473  */
474 static int ldlm_cli_pool_recalc(struct ldlm_pool *pl)
475 {
476         time_t recalc_interval_sec;
477         ENTRY;
478
479         spin_lock(&pl->pl_lock);
480         /*
481          * Check if we need to recalc lists now.
482          */
483         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
484         if (recalc_interval_sec < pl->pl_recalc_period) {
485                 spin_unlock(&pl->pl_lock);
486                 RETURN(0);
487         }
488
489         /*
490          * Make sure that pool knows last SLV and Limit from obd.
491          */
492         ldlm_cli_pool_pop_slv(pl);
493
494         pl->pl_recalc_time = cfs_time_current_sec();
495         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
496                             recalc_interval_sec);
497         spin_unlock(&pl->pl_lock);
498
499         /*
500          * Do not cancel locks in case lru resize is disabled for this ns.
501          */
502         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
503                 RETURN(0);
504
505         /*
506          * In the time of canceling locks on client we do not need to maintain
507          * sharp timing, we only want to cancel locks asap according to new SLV.
508          * It may be called when SLV has changed much, this is why we do not
509          * take into account pl->pl_recalc_time here.
510          */
511         RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), 0, LDLM_ASYNC,
512                                LDLM_CANCEL_LRUR));
513 }
514
515 /**
516  * This function is main entry point for memory preasure handling on client side.
517  * Main goal of this function is to cancel some number of locks on passed \a pl
518  * according to \a nr and \a gfp_mask.
519  */
520 static int ldlm_cli_pool_shrink(struct ldlm_pool *pl,
521                                 int nr, unsigned int gfp_mask)
522 {
523         ENTRY;
524
525         /*
526          * Do not cancel locks in case lru resize is disabled for this ns.
527          */
528         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
529                 RETURN(0);
530
531         /*
532          * Make sure that pool knows last SLV and Limit from obd.
533          */
534         ldlm_cli_pool_pop_slv(pl);
535
536         /*
537          * Find out how many locks may be released according to shrink
538          * policy.
539          */
540         if (nr == 0)
541                 RETURN(ldlm_cancel_lru_estimate(ldlm_pl2ns(pl), 0, 0,
542                                                 LDLM_CANCEL_SHRINK));
543
544         /*
545          * Cancel @nr locks accoding to shrink policy.
546          */
547         RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), nr, LDLM_SYNC,
548                                LDLM_CANCEL_SHRINK));
549 }
550
551 struct ldlm_pool_ops ldlm_srv_pool_ops = {
552         .po_recalc = ldlm_srv_pool_recalc,
553         .po_shrink = ldlm_srv_pool_shrink,
554         .po_setup  = ldlm_srv_pool_setup
555 };
556
557 struct ldlm_pool_ops ldlm_cli_pool_ops = {
558         .po_recalc = ldlm_cli_pool_recalc,
559         .po_shrink = ldlm_cli_pool_shrink
560 };
561
562 /**
563  * Pool recalc wrapper. Will call either client or server pool recalc callback
564  * depending what pool \a pl is used.
565  */
566 int ldlm_pool_recalc(struct ldlm_pool *pl)
567 {
568         time_t recalc_interval_sec;
569         int count;
570
571         spin_lock(&pl->pl_lock);
572         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
573         if (recalc_interval_sec > 0) {
574                 /*
575                  * Update pool statistics every 1s.
576                  */
577                 ldlm_pool_recalc_stats(pl);
578
579                 /*
580                  * Zero out all rates and speed for the last period.
581                  */
582                 atomic_set(&pl->pl_grant_rate, 0);
583                 atomic_set(&pl->pl_cancel_rate, 0);
584                 atomic_set(&pl->pl_grant_speed, 0);
585         }
586         spin_unlock(&pl->pl_lock);
587
588         if (pl->pl_ops->po_recalc != NULL) {
589                 count = pl->pl_ops->po_recalc(pl);
590                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_RECALC_STAT,
591                                     count);
592                 return count;
593         }
594
595         return 0;
596 }
597 EXPORT_SYMBOL(ldlm_pool_recalc);
598
599 /**
600  * Pool shrink wrapper. Will call either client or server pool recalc callback
601  * depending what pool \a pl is used.
602  */
603 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
604                      unsigned int gfp_mask)
605 {
606         int cancel = 0;
607
608         if (pl->pl_ops->po_shrink != NULL) {
609                 cancel = pl->pl_ops->po_shrink(pl, nr, gfp_mask);
610                 if (nr > 0) {
611                         lprocfs_counter_add(pl->pl_stats,
612                                             LDLM_POOL_SHRINK_REQTD_STAT,
613                                             nr);
614                         lprocfs_counter_add(pl->pl_stats,
615                                             LDLM_POOL_SHRINK_FREED_STAT,
616                                             cancel);
617                         CDEBUG(D_DLMTRACE, "%s: request to shrink %d locks, "
618                                "shrunk %d\n", pl->pl_name, nr, cancel);
619                 }
620         }
621         return cancel;
622 }
623 EXPORT_SYMBOL(ldlm_pool_shrink);
624
625 /**
626  * Pool setup wrapper. Will call either client or server pool recalc callback
627  * depending what pool \a pl is used.
628  *
629  * Sets passed \a limit into pool \a pl.
630  */
631 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
632 {
633         ENTRY;
634         if (pl->pl_ops->po_setup != NULL)
635                 RETURN(pl->pl_ops->po_setup(pl, limit));
636         RETURN(0);
637 }
638 EXPORT_SYMBOL(ldlm_pool_setup);
639
640 #ifdef __KERNEL__
641 static int lprocfs_rd_pool_state(char *page, char **start, off_t off,
642                                  int count, int *eof, void *data)
643 {
644         int granted, grant_rate, cancel_rate, grant_step;
645         int nr = 0, grant_speed, grant_plan, lvf;
646         struct ldlm_pool *pl = data;
647         __u64 slv, clv;
648         __u32 limit;
649
650         spin_lock(&pl->pl_lock);
651         slv = pl->pl_server_lock_volume;
652         clv = pl->pl_client_lock_volume;
653         limit = ldlm_pool_get_limit(pl);
654         grant_plan = pl->pl_grant_plan;
655         granted = atomic_read(&pl->pl_granted);
656         grant_rate = atomic_read(&pl->pl_grant_rate);
657         lvf = atomic_read(&pl->pl_lock_volume_factor);
658         grant_speed = atomic_read(&pl->pl_grant_speed);
659         cancel_rate = atomic_read(&pl->pl_cancel_rate);
660         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
661         spin_unlock(&pl->pl_lock);
662
663         nr += snprintf(page + nr, count - nr, "LDLM pool state (%s):\n",
664                        pl->pl_name);
665         nr += snprintf(page + nr, count - nr, "  SLV: "LPU64"\n", slv);
666         nr += snprintf(page + nr, count - nr, "  CLV: "LPU64"\n", clv);
667         nr += snprintf(page + nr, count - nr, "  LVF: %d\n", lvf);
668
669         if (ns_is_server(ldlm_pl2ns(pl))) {
670                 nr += snprintf(page + nr, count - nr, "  GSP: %d%%\n",
671                                grant_step);
672                 nr += snprintf(page + nr, count - nr, "  GP:  %d\n",
673                                grant_plan);
674         }
675         nr += snprintf(page + nr, count - nr, "  GR:  %d\n",
676                        grant_rate);
677         nr += snprintf(page + nr, count - nr, "  CR:  %d\n",
678                        cancel_rate);
679         nr += snprintf(page + nr, count - nr, "  GS:  %d\n",
680                        grant_speed);
681         nr += snprintf(page + nr, count - nr, "  G:   %d\n",
682                        granted);
683         nr += snprintf(page + nr, count - nr, "  L:   %d\n",
684                        limit);
685         return nr;
686 }
687
688 LDLM_POOL_PROC_READER(grant_plan, int);
689 LDLM_POOL_PROC_READER(recalc_period, int);
690 LDLM_POOL_PROC_WRITER(recalc_period, int);
691
692 static int ldlm_pool_proc_init(struct ldlm_pool *pl)
693 {
694         struct ldlm_namespace *ns = ldlm_pl2ns(pl);
695         struct proc_dir_entry *parent_ns_proc;
696         struct lprocfs_vars pool_vars[2];
697         char *var_name = NULL;
698         int rc = 0;
699         ENTRY;
700
701         OBD_ALLOC(var_name, MAX_STRING_SIZE + 1);
702         if (!var_name)
703                 RETURN(-ENOMEM);
704
705         parent_ns_proc = lprocfs_srch(ldlm_ns_proc_dir, ns->ns_name);
706         if (parent_ns_proc == NULL) {
707                 CERROR("%s: proc entry is not initialized\n",
708                        ns->ns_name);
709                 GOTO(out_free_name, rc = -EINVAL);
710         }
711         pl->pl_proc_dir = lprocfs_register("pool", parent_ns_proc,
712                                            NULL, NULL);
713         if (IS_ERR(pl->pl_proc_dir)) {
714                 CERROR("LProcFS failed in ldlm-pool-init\n");
715                 rc = PTR_ERR(pl->pl_proc_dir);
716                 GOTO(out_free_name, rc);
717         }
718
719         var_name[MAX_STRING_SIZE] = '\0';
720         memset(pool_vars, 0, sizeof(pool_vars));
721         pool_vars[0].name = var_name;
722
723         snprintf(var_name, MAX_STRING_SIZE, "server_lock_volume");
724         pool_vars[0].data = &pl->pl_server_lock_volume;
725         pool_vars[0].read_fptr = lprocfs_rd_u64;
726         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
727
728         snprintf(var_name, MAX_STRING_SIZE, "limit");
729         pool_vars[0].data = &pl->pl_limit;
730         pool_vars[0].read_fptr = lprocfs_rd_atomic;
731         pool_vars[0].write_fptr = lprocfs_wr_atomic;
732         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
733
734         snprintf(var_name, MAX_STRING_SIZE, "granted");
735         pool_vars[0].data = &pl->pl_granted;
736         pool_vars[0].read_fptr = lprocfs_rd_atomic;
737         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
738
739         snprintf(var_name, MAX_STRING_SIZE, "grant_speed");
740         pool_vars[0].data = &pl->pl_grant_speed;
741         pool_vars[0].read_fptr = lprocfs_rd_atomic;
742         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
743
744         snprintf(var_name, MAX_STRING_SIZE, "cancel_rate");
745         pool_vars[0].data = &pl->pl_cancel_rate;
746         pool_vars[0].read_fptr = lprocfs_rd_atomic;
747         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
748
749         snprintf(var_name, MAX_STRING_SIZE, "grant_rate");
750         pool_vars[0].data = &pl->pl_grant_rate;
751         pool_vars[0].read_fptr = lprocfs_rd_atomic;
752         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
753
754         snprintf(var_name, MAX_STRING_SIZE, "grant_plan");
755         pool_vars[0].data = pl;
756         pool_vars[0].read_fptr = lprocfs_rd_grant_plan;
757         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
758
759         snprintf(var_name, MAX_STRING_SIZE, "recalc_period");
760         pool_vars[0].data = pl;
761         pool_vars[0].read_fptr = lprocfs_rd_recalc_period;
762         pool_vars[0].write_fptr = lprocfs_wr_recalc_period;
763         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
764
765         snprintf(var_name, MAX_STRING_SIZE, "lock_volume_factor");
766         pool_vars[0].data = &pl->pl_lock_volume_factor;
767         pool_vars[0].read_fptr = lprocfs_rd_atomic;
768         pool_vars[0].write_fptr = lprocfs_wr_atomic;
769         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
770
771         snprintf(var_name, MAX_STRING_SIZE, "state");
772         pool_vars[0].data = pl;
773         pool_vars[0].read_fptr = lprocfs_rd_pool_state;
774         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
775
776         pl->pl_stats = lprocfs_alloc_stats(LDLM_POOL_LAST_STAT -
777                                            LDLM_POOL_FIRST_STAT, 0);
778         if (!pl->pl_stats)
779                 GOTO(out_free_name, rc = -ENOMEM);
780
781         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
782                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
783                              "granted", "locks");
784         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_STAT,
785                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
786                              "grant", "locks");
787         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_STAT,
788                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
789                              "cancel", "locks");
790         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
791                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
792                              "grant_rate", "locks/s");
793         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
794                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
795                              "cancel_rate", "locks/s");
796         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
797                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
798                              "grant_plan", "locks/s");
799         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SLV_STAT,
800                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
801                              "slv", "slv");
802         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_REQTD_STAT,
803                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
804                              "shrink_request", "locks");
805         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_FREED_STAT,
806                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
807                              "shrink_freed", "locks");
808         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_RECALC_STAT,
809                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
810                              "recalc_freed", "locks");
811         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_TIMING_STAT,
812                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
813                              "recalc_timing", "sec");
814         lprocfs_register_stats(pl->pl_proc_dir, "stats", pl->pl_stats);
815
816         EXIT;
817 out_free_name:
818         OBD_FREE(var_name, MAX_STRING_SIZE + 1);
819         return rc;
820 }
821
822 static void ldlm_pool_proc_fini(struct ldlm_pool *pl)
823 {
824         if (pl->pl_stats != NULL) {
825                 lprocfs_free_stats(&pl->pl_stats);
826                 pl->pl_stats = NULL;
827         }
828         if (pl->pl_proc_dir != NULL) {
829                 lprocfs_remove(&pl->pl_proc_dir);
830                 pl->pl_proc_dir = NULL;
831         }
832 }
833 #else /* !__KERNEL__*/
834 #define ldlm_pool_proc_init(pl) (0)
835 #define ldlm_pool_proc_fini(pl) while (0) {}
836 #endif
837
838 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
839                    int idx, ldlm_side_t client)
840 {
841         int rc;
842         ENTRY;
843
844         spin_lock_init(&pl->pl_lock);
845         atomic_set(&pl->pl_granted, 0);
846         pl->pl_recalc_time = cfs_time_current_sec();
847         atomic_set(&pl->pl_lock_volume_factor, 1);
848
849         atomic_set(&pl->pl_grant_rate, 0);
850         atomic_set(&pl->pl_cancel_rate, 0);
851         atomic_set(&pl->pl_grant_speed, 0);
852         pl->pl_grant_plan = LDLM_POOL_GP(LDLM_POOL_HOST_L);
853
854         snprintf(pl->pl_name, sizeof(pl->pl_name), "ldlm-pool-%s-%d",
855                  ns->ns_name, idx);
856
857         if (client == LDLM_NAMESPACE_SERVER) {
858                 pl->pl_ops = &ldlm_srv_pool_ops;
859                 ldlm_pool_set_limit(pl, LDLM_POOL_HOST_L);
860                 pl->pl_recalc_period = LDLM_POOL_SRV_DEF_RECALC_PERIOD;
861                 pl->pl_server_lock_volume = ldlm_pool_slv_max(LDLM_POOL_HOST_L);
862         } else {
863                 ldlm_pool_set_limit(pl, 1);
864                 pl->pl_server_lock_volume = 1;
865                 pl->pl_ops = &ldlm_cli_pool_ops;
866                 pl->pl_recalc_period = LDLM_POOL_CLI_DEF_RECALC_PERIOD;
867         }
868         pl->pl_client_lock_volume = 0;
869         rc = ldlm_pool_proc_init(pl);
870         if (rc)
871                 RETURN(rc);
872
873         CDEBUG(D_DLMTRACE, "Lock pool %s is initialized\n", pl->pl_name);
874
875         RETURN(rc);
876 }
877 EXPORT_SYMBOL(ldlm_pool_init);
878
879 void ldlm_pool_fini(struct ldlm_pool *pl)
880 {
881         ENTRY;
882         ldlm_pool_proc_fini(pl);
883
884         /*
885          * Pool should not be used after this point. We can't free it here as
886          * it lives in struct ldlm_namespace, but still interested in catching
887          * any abnormal using cases.
888          */
889         POISON(pl, 0x5a, sizeof(*pl));
890         EXIT;
891 }
892 EXPORT_SYMBOL(ldlm_pool_fini);
893
894 /**
895  * Add new taken ldlm lock \a lock into pool \a pl accounting.
896  */
897 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
898 {
899         /*
900          * FLOCK locks are special in a sense that they are almost never
901          * cancelled, instead special kind of lock is used to drop them.
902          * also there is no LRU for flock locks, so no point in tracking
903          * them anyway.
904          */
905         if (lock->l_resource->lr_type == LDLM_FLOCK)
906                 return;
907         ENTRY;
908
909         LDLM_DEBUG(lock, "add lock to pool");
910         atomic_inc(&pl->pl_granted);
911         atomic_inc(&pl->pl_grant_rate);
912         atomic_inc(&pl->pl_grant_speed);
913
914         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_GRANT_STAT);
915         /*
916          * Do not do pool recalc for client side as all locks which
917          * potentially may be canceled has already been packed into
918          * enqueue/cancel rpc. Also we do not want to run out of stack
919          * with too long call paths.
920          */
921         if (ns_is_server(ldlm_pl2ns(pl)))
922                 ldlm_pool_recalc(pl);
923         EXIT;
924 }
925 EXPORT_SYMBOL(ldlm_pool_add);
926
927 /**
928  * Remove ldlm lock \a lock from pool \a pl accounting.
929  */
930 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
931 {
932         /*
933          * Filter out FLOCK locks. Read above comment in ldlm_pool_add().
934          */
935         if (lock->l_resource->lr_type == LDLM_FLOCK)
936                 return;
937         ENTRY;
938
939         LDLM_DEBUG(lock, "del lock from pool");
940         LASSERT(atomic_read(&pl->pl_granted) > 0);
941         atomic_dec(&pl->pl_granted);
942         atomic_inc(&pl->pl_cancel_rate);
943         atomic_dec(&pl->pl_grant_speed);
944
945         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_CANCEL_STAT);
946
947         if (ns_is_server(ldlm_pl2ns(pl)))
948                 ldlm_pool_recalc(pl);
949         EXIT;
950 }
951 EXPORT_SYMBOL(ldlm_pool_del);
952
953 /**
954  * Returns current \a pl SLV.
955  *
956  * \pre ->pl_lock is not locked.
957  */
958 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
959 {
960         __u64 slv;
961         spin_lock(&pl->pl_lock);
962         slv = pl->pl_server_lock_volume;
963         spin_unlock(&pl->pl_lock);
964         return slv;
965 }
966 EXPORT_SYMBOL(ldlm_pool_get_slv);
967
968 /**
969  * Sets passed \a slv to \a pl.
970  *
971  * \pre ->pl_lock is not locked.
972  */
973 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
974 {
975         spin_lock(&pl->pl_lock);
976         pl->pl_server_lock_volume = slv;
977         spin_unlock(&pl->pl_lock);
978 }
979 EXPORT_SYMBOL(ldlm_pool_set_slv);
980
981 /**
982  * Returns current \a pl CLV.
983  *
984  * \pre ->pl_lock is not locked.
985  */
986 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
987 {
988         __u64 slv;
989         spin_lock(&pl->pl_lock);
990         slv = pl->pl_client_lock_volume;
991         spin_unlock(&pl->pl_lock);
992         return slv;
993 }
994 EXPORT_SYMBOL(ldlm_pool_get_clv);
995
996 /**
997  * Sets passed \a clv to \a pl.
998  *
999  * \pre ->pl_lock is not locked.
1000  */
1001 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1002 {
1003         spin_lock(&pl->pl_lock);
1004         pl->pl_client_lock_volume = clv;
1005         spin_unlock(&pl->pl_lock);
1006 }
1007 EXPORT_SYMBOL(ldlm_pool_set_clv);
1008
1009 /**
1010  * Returns current \a pl limit.
1011  */
1012 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1013 {
1014         return atomic_read(&pl->pl_limit);
1015 }
1016 EXPORT_SYMBOL(ldlm_pool_get_limit);
1017
1018 /**
1019  * Sets passed \a limit to \a pl.
1020  */
1021 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1022 {
1023         atomic_set(&pl->pl_limit, limit);
1024 }
1025 EXPORT_SYMBOL(ldlm_pool_set_limit);
1026
1027 /**
1028  * Returns current LVF from \a pl.
1029  */
1030 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1031 {
1032         return atomic_read(&pl->pl_lock_volume_factor);
1033 }
1034 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1035
1036 #ifdef __KERNEL__
1037 static int ldlm_pool_granted(struct ldlm_pool *pl)
1038 {
1039         return atomic_read(&pl->pl_granted);
1040 }
1041
1042 static struct ptlrpc_thread *ldlm_pools_thread;
1043 static struct shrinker *ldlm_pools_srv_shrinker;
1044 static struct shrinker *ldlm_pools_cli_shrinker;
1045 static struct completion ldlm_pools_comp;
1046
1047 /*
1048  * Cancel \a nr locks from all namespaces (if possible). Returns number of
1049  * cached locks after shrink is finished. All namespaces are asked to
1050  * cancel approximately equal amount of locks to keep balancing.
1051  */
1052 static int ldlm_pools_shrink(ldlm_side_t client, int nr,
1053                              unsigned int gfp_mask)
1054 {
1055         int total = 0, cached = 0, nr_ns;
1056         struct ldlm_namespace *ns;
1057         void *cookie;
1058
1059         if (nr != 0 && !(gfp_mask & __GFP_FS))
1060                 return -1;
1061
1062         CDEBUG(D_DLMTRACE, "Request to shrink %d %s locks from all pools\n",
1063                nr, client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1064
1065         cookie = cl_env_reenter();
1066
1067         /*
1068          * Find out how many resources we may release.
1069          */
1070         for (nr_ns = atomic_read(ldlm_namespace_nr(client));
1071              nr_ns > 0; nr_ns--)
1072         {
1073                 mutex_down(ldlm_namespace_lock(client));
1074                 if (list_empty(ldlm_namespace_list(client))) {
1075                         mutex_up(ldlm_namespace_lock(client));
1076                         cl_env_reexit(cookie);
1077                         return 0;
1078                 }
1079                 ns = ldlm_namespace_first_locked(client);
1080                 ldlm_namespace_get(ns);
1081                 ldlm_namespace_move_locked(ns, client);
1082                 mutex_up(ldlm_namespace_lock(client));
1083                 total += ldlm_pool_shrink(&ns->ns_pool, 0, gfp_mask);
1084                 ldlm_namespace_put(ns, 1);
1085         }
1086
1087         if (nr == 0 || total == 0) {
1088                 cl_env_reexit(cookie);
1089                 return total;
1090         }
1091
1092         /*
1093          * Shrink at least ldlm_namespace_nr(client) namespaces.
1094          */
1095         for (nr_ns = atomic_read(ldlm_namespace_nr(client));
1096              nr_ns > 0; nr_ns--)
1097         {
1098                 int cancel, nr_locks;
1099
1100                 /*
1101                  * Do not call shrink under ldlm_namespace_lock(client)
1102                  */
1103                 mutex_down(ldlm_namespace_lock(client));
1104                 if (list_empty(ldlm_namespace_list(client))) {
1105                         mutex_up(ldlm_namespace_lock(client));
1106                         /*
1107                          * If list is empty, we can't return any @cached > 0,
1108                          * that probably would cause needless shrinker
1109                          * call.
1110                          */
1111                         cached = 0;
1112                         break;
1113                 }
1114                 ns = ldlm_namespace_first_locked(client);
1115                 ldlm_namespace_get(ns);
1116                 ldlm_namespace_move_locked(ns, client);
1117                 mutex_up(ldlm_namespace_lock(client));
1118
1119                 nr_locks = ldlm_pool_granted(&ns->ns_pool);
1120                 cancel = 1 + nr_locks * nr / total;
1121                 ldlm_pool_shrink(&ns->ns_pool, cancel, gfp_mask);
1122                 cached += ldlm_pool_granted(&ns->ns_pool);
1123                 ldlm_namespace_put(ns, 1);
1124         }
1125         cl_env_reexit(cookie);
1126         return cached;
1127 }
1128
1129 static int ldlm_pools_srv_shrink(int nr, unsigned int gfp_mask)
1130 {
1131         return ldlm_pools_shrink(LDLM_NAMESPACE_SERVER, nr, gfp_mask);
1132 }
1133
1134 static int ldlm_pools_cli_shrink(int nr, unsigned int gfp_mask)
1135 {
1136         return ldlm_pools_shrink(LDLM_NAMESPACE_CLIENT, nr, gfp_mask);
1137 }
1138
1139 void ldlm_pools_recalc(ldlm_side_t client)
1140 {
1141         __u32 nr_l = 0, nr_p = 0, l;
1142         struct ldlm_namespace *ns;
1143         int nr, equal = 0;
1144
1145         /*
1146          * No need to setup pool limit for client pools.
1147          */
1148         if (client == LDLM_NAMESPACE_SERVER) {
1149                 /*
1150                  * Check all modest namespaces first.
1151                  */
1152                 mutex_down(ldlm_namespace_lock(client));
1153                 list_for_each_entry(ns, ldlm_namespace_list(client),
1154                                     ns_list_chain)
1155                 {
1156                         if (ns->ns_appetite != LDLM_NAMESPACE_MODEST)
1157                                 continue;
1158
1159                         l = ldlm_pool_granted(&ns->ns_pool);
1160                         if (l == 0)
1161                                 l = 1;
1162
1163                         /*
1164                          * Set the modest pools limit equal to their avg granted
1165                          * locks + 5%.
1166                          */
1167                         l += dru(l * LDLM_POOLS_MODEST_MARGIN, 100);
1168                         ldlm_pool_setup(&ns->ns_pool, l);
1169                         nr_l += l;
1170                         nr_p++;
1171                 }
1172
1173                 /*
1174                  * Make sure that modest namespaces did not eat more that 2/3
1175                  * of limit.
1176                  */
1177                 if (nr_l >= 2 * (LDLM_POOL_HOST_L / 3)) {
1178                         CWARN("\"Modest\" pools eat out 2/3 of server locks "
1179                               "limit (%d of %lu). This means that you have too "
1180                               "many clients for this amount of server RAM. "
1181                               "Upgrade server!\n", nr_l, LDLM_POOL_HOST_L);
1182                         equal = 1;
1183                 }
1184
1185                 /*
1186                  * The rest is given to greedy namespaces.
1187                  */
1188                 list_for_each_entry(ns, ldlm_namespace_list(client),
1189                                     ns_list_chain)
1190                 {
1191                         if (!equal && ns->ns_appetite != LDLM_NAMESPACE_GREEDY)
1192                                 continue;
1193
1194                         if (equal) {
1195                                 /*
1196                                  * In the case 2/3 locks are eaten out by
1197                                  * modest pools, we re-setup equal limit
1198                                  * for _all_ pools.
1199                                  */
1200                                 l = LDLM_POOL_HOST_L /
1201                                         atomic_read(ldlm_namespace_nr(client));
1202                         } else {
1203                                 /*
1204                                  * All the rest of greedy pools will have
1205                                  * all locks in equal parts.
1206                                  */
1207                                 l = (LDLM_POOL_HOST_L - nr_l) /
1208                                         (atomic_read(ldlm_namespace_nr(client)) -
1209                                          nr_p);
1210                         }
1211                         ldlm_pool_setup(&ns->ns_pool, l);
1212                 }
1213                 mutex_up(ldlm_namespace_lock(client));
1214         }
1215
1216         /*
1217          * Recalc at least ldlm_namespace_nr(client) namespaces.
1218          */
1219         for (nr = atomic_read(ldlm_namespace_nr(client)); nr > 0; nr--) {
1220                 /*
1221                  * Lock the list, get first @ns in the list, getref, move it
1222                  * to the tail, unlock and call pool recalc. This way we avoid
1223                  * calling recalc under @ns lock what is really good as we get
1224                  * rid of potential deadlock on client nodes when canceling
1225                  * locks synchronously.
1226                  */
1227                 mutex_down(ldlm_namespace_lock(client));
1228                 if (list_empty(ldlm_namespace_list(client))) {
1229                         mutex_up(ldlm_namespace_lock(client));
1230                         break;
1231                 }
1232                 ns = ldlm_namespace_first_locked(client);
1233                 ldlm_namespace_get(ns);
1234                 ldlm_namespace_move_locked(ns, client);
1235                 mutex_up(ldlm_namespace_lock(client));
1236
1237                 /*
1238                  * After setup is done - recalc the pool.
1239                  */
1240                 ldlm_pool_recalc(&ns->ns_pool);
1241                 ldlm_namespace_put(ns, 1);
1242         }
1243 }
1244 EXPORT_SYMBOL(ldlm_pools_recalc);
1245
1246 static int ldlm_pools_thread_main(void *arg)
1247 {
1248         struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
1249         char *t_name = "ldlm_poold";
1250         ENTRY;
1251
1252         cfs_daemonize(t_name);
1253         thread->t_flags = SVC_RUNNING;
1254         cfs_waitq_signal(&thread->t_ctl_waitq);
1255
1256         CDEBUG(D_DLMTRACE, "%s: pool thread starting, process %d\n",
1257                t_name, cfs_curproc_pid());
1258
1259         while (1) {
1260                 struct l_wait_info lwi;
1261
1262                 /*
1263                  * Recal all pools on this tick.
1264                  */
1265                 ldlm_pools_recalc(LDLM_NAMESPACE_SERVER);
1266                 ldlm_pools_recalc(LDLM_NAMESPACE_CLIENT);
1267
1268                 /*
1269                  * Wait until the next check time, or until we're
1270                  * stopped.
1271                  */
1272                 lwi = LWI_TIMEOUT(cfs_time_seconds(LDLM_POOLS_THREAD_PERIOD),
1273                                   NULL, NULL);
1274                 l_wait_event(thread->t_ctl_waitq, (thread->t_flags &
1275                                                    (SVC_STOPPING|SVC_EVENT)),
1276                              &lwi);
1277
1278                 if (thread->t_flags & SVC_STOPPING) {
1279                         thread->t_flags &= ~SVC_STOPPING;
1280                         break;
1281                 } else if (thread->t_flags & SVC_EVENT) {
1282                         thread->t_flags &= ~SVC_EVENT;
1283                 }
1284         }
1285
1286         thread->t_flags = SVC_STOPPED;
1287         cfs_waitq_signal(&thread->t_ctl_waitq);
1288
1289         CDEBUG(D_DLMTRACE, "%s: pool thread exiting, process %d\n",
1290                t_name, cfs_curproc_pid());
1291
1292         complete_and_exit(&ldlm_pools_comp, 0);
1293 }
1294
1295 static int ldlm_pools_thread_start(void)
1296 {
1297         struct l_wait_info lwi = { 0 };
1298         int rc;
1299         ENTRY;
1300
1301         if (ldlm_pools_thread != NULL)
1302                 RETURN(-EALREADY);
1303
1304         OBD_ALLOC_PTR(ldlm_pools_thread);
1305         if (ldlm_pools_thread == NULL)
1306                 RETURN(-ENOMEM);
1307
1308         init_completion(&ldlm_pools_comp);
1309         cfs_waitq_init(&ldlm_pools_thread->t_ctl_waitq);
1310
1311         /*
1312          * CLONE_VM and CLONE_FILES just avoid a needless copy, because we
1313          * just drop the VM and FILES in ptlrpc_daemonize() right away.
1314          */
1315         rc = cfs_kernel_thread(ldlm_pools_thread_main, ldlm_pools_thread,
1316                                CLONE_VM | CLONE_FILES);
1317         if (rc < 0) {
1318                 CERROR("Can't start pool thread, error %d\n",
1319                        rc);
1320                 OBD_FREE(ldlm_pools_thread, sizeof(*ldlm_pools_thread));
1321                 ldlm_pools_thread = NULL;
1322                 RETURN(rc);
1323         }
1324         l_wait_event(ldlm_pools_thread->t_ctl_waitq,
1325                      (ldlm_pools_thread->t_flags & SVC_RUNNING), &lwi);
1326         RETURN(0);
1327 }
1328
1329 static void ldlm_pools_thread_stop(void)
1330 {
1331         ENTRY;
1332
1333         if (ldlm_pools_thread == NULL) {
1334                 EXIT;
1335                 return;
1336         }
1337
1338         ldlm_pools_thread->t_flags = SVC_STOPPING;
1339         cfs_waitq_signal(&ldlm_pools_thread->t_ctl_waitq);
1340
1341         /*
1342          * Make sure that pools thread is finished before freeing @thread.
1343          * This fixes possible race and oops due to accessing freed memory
1344          * in pools thread.
1345          */
1346         wait_for_completion(&ldlm_pools_comp);
1347         OBD_FREE_PTR(ldlm_pools_thread);
1348         ldlm_pools_thread = NULL;
1349         EXIT;
1350 }
1351
1352 int ldlm_pools_init(void)
1353 {
1354         int rc;
1355         ENTRY;
1356
1357         rc = ldlm_pools_thread_start();
1358         if (rc == 0) {
1359                 ldlm_pools_srv_shrinker = set_shrinker(DEFAULT_SEEKS,
1360                                                        ldlm_pools_srv_shrink);
1361                 ldlm_pools_cli_shrinker = set_shrinker(DEFAULT_SEEKS,
1362                                                        ldlm_pools_cli_shrink);
1363         }
1364         RETURN(rc);
1365 }
1366 EXPORT_SYMBOL(ldlm_pools_init);
1367
1368 void ldlm_pools_fini(void)
1369 {
1370         if (ldlm_pools_srv_shrinker != NULL) {
1371                 remove_shrinker(ldlm_pools_srv_shrinker);
1372                 ldlm_pools_srv_shrinker = NULL;
1373         }
1374         if (ldlm_pools_cli_shrinker != NULL) {
1375                 remove_shrinker(ldlm_pools_cli_shrinker);
1376                 ldlm_pools_cli_shrinker = NULL;
1377         }
1378         ldlm_pools_thread_stop();
1379 }
1380 EXPORT_SYMBOL(ldlm_pools_fini);
1381 #endif /* __KERNEL__ */
1382
1383 #else /* !HAVE_LRU_RESIZE_SUPPORT */
1384 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
1385 {
1386         return 0;
1387 }
1388 EXPORT_SYMBOL(ldlm_pool_setup);
1389
1390 int ldlm_pool_recalc(struct ldlm_pool *pl)
1391 {
1392         return 0;
1393 }
1394 EXPORT_SYMBOL(ldlm_pool_recalc);
1395
1396 int ldlm_pool_shrink(struct ldlm_pool *pl,
1397                      int nr, unsigned int gfp_mask)
1398 {
1399         return 0;
1400 }
1401 EXPORT_SYMBOL(ldlm_pool_shrink);
1402
1403 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1404                    int idx, ldlm_side_t client)
1405 {
1406         return 0;
1407 }
1408 EXPORT_SYMBOL(ldlm_pool_init);
1409
1410 void ldlm_pool_fini(struct ldlm_pool *pl)
1411 {
1412         return;
1413 }
1414 EXPORT_SYMBOL(ldlm_pool_fini);
1415
1416 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
1417 {
1418         return;
1419 }
1420 EXPORT_SYMBOL(ldlm_pool_add);
1421
1422 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
1423 {
1424         return;
1425 }
1426 EXPORT_SYMBOL(ldlm_pool_del);
1427
1428 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
1429 {
1430         return 1;
1431 }
1432 EXPORT_SYMBOL(ldlm_pool_get_slv);
1433
1434 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
1435 {
1436         return;
1437 }
1438 EXPORT_SYMBOL(ldlm_pool_set_slv);
1439
1440 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
1441 {
1442         return 1;
1443 }
1444 EXPORT_SYMBOL(ldlm_pool_get_clv);
1445
1446 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1447 {
1448         return;
1449 }
1450 EXPORT_SYMBOL(ldlm_pool_set_clv);
1451
1452 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1453 {
1454         return 0;
1455 }
1456 EXPORT_SYMBOL(ldlm_pool_get_limit);
1457
1458 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1459 {
1460         return;
1461 }
1462 EXPORT_SYMBOL(ldlm_pool_set_limit);
1463
1464 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1465 {
1466         return 0;
1467 }
1468 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1469
1470 int ldlm_pools_init(void)
1471 {
1472         return 0;
1473 }
1474 EXPORT_SYMBOL(ldlm_pools_init);
1475
1476 void ldlm_pools_fini(void)
1477 {
1478         return;
1479 }
1480 EXPORT_SYMBOL(ldlm_pools_fini);
1481
1482 void ldlm_pools_recalc(ldlm_side_t client)
1483 {
1484         return;
1485 }
1486 EXPORT_SYMBOL(ldlm_pools_recalc);
1487 #endif /* HAVE_LRU_RESIZE_SUPPORT */