Whamcloud - gitweb
LU-3319 procfs: move ldlm proc handling over to seq_file
[fs/lustre-release.git] / lustre / ldlm / ldlm_pool.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2012, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * 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_CACHEPAGES >> (20 - PAGE_CACHE_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_SHIFT (2)
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 /*
146  * The granularity of SLV calculation.
147  */
148 #define LDLM_POOL_SLV_SHIFT (10)
149
150 #ifdef __KERNEL__
151 extern struct proc_dir_entry *ldlm_ns_proc_dir;
152 #endif
153
154 static inline __u64 dru(__u64 val, __u32 shift, int round_up)
155 {
156         return (val + (round_up ? (1 << shift) - 1 : 0)) >> shift;
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 = (__u64)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(unsigned int t)
200 {
201         /*
202          * This yields 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 period 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 in short 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                  (t >> LDLM_POOL_GSP_STEP_SHIFT));
224 }
225
226 /**
227  * Recalculates next grant limit on passed \a pl.
228  *
229  * \pre ->pl_lock is locked.
230  */
231 static 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 = cfs_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         limit = (limit * 5) >> 2;
242         if (pl->pl_grant_plan > limit)
243                 pl->pl_grant_plan = limit;
244 }
245
246 /**
247  * Recalculates next SLV on passed \a pl.
248  *
249  * \pre ->pl_lock is locked.
250  */
251 static void ldlm_pool_recalc_slv(struct ldlm_pool *pl)
252 {
253         int granted;
254         int grant_plan;
255         int round_up;
256         __u64 slv;
257         __u64 slv_factor;
258         __u64 grant_usage;
259         __u32 limit;
260
261         slv = pl->pl_server_lock_volume;
262         grant_plan = pl->pl_grant_plan;
263         limit = ldlm_pool_get_limit(pl);
264         granted = cfs_atomic_read(&pl->pl_granted);
265         round_up = granted < limit;
266
267         grant_usage = max_t(int, limit - (granted - grant_plan), 1);
268
269         /*
270          * Find out SLV change factor which is the ratio of grant usage
271          * from limit. SLV changes as fast as the ratio of grant plan
272          * consumption. The more locks from grant plan are not consumed
273          * by clients in last interval (idle time), the faster grows
274          * SLV. And the opposite, the more grant plan is over-consumed
275          * (load time) the faster drops SLV.
276          */
277         slv_factor = (grant_usage << LDLM_POOL_SLV_SHIFT);
278         do_div(slv_factor, limit);
279         slv = slv * slv_factor;
280         slv = dru(slv, LDLM_POOL_SLV_SHIFT, round_up);
281
282         if (slv > ldlm_pool_slv_max(limit)) {
283                 slv = ldlm_pool_slv_max(limit);
284         } else if (slv < ldlm_pool_slv_min(limit)) {
285                 slv = ldlm_pool_slv_min(limit);
286         }
287
288         pl->pl_server_lock_volume = slv;
289 }
290
291 /**
292  * Recalculates next stats on passed \a pl.
293  *
294  * \pre ->pl_lock is locked.
295  */
296 static void ldlm_pool_recalc_stats(struct ldlm_pool *pl)
297 {
298         int grant_plan = pl->pl_grant_plan;
299         __u64 slv = pl->pl_server_lock_volume;
300         int granted = cfs_atomic_read(&pl->pl_granted);
301         int grant_rate = cfs_atomic_read(&pl->pl_grant_rate);
302         int cancel_rate = cfs_atomic_read(&pl->pl_cancel_rate);
303
304         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_SLV_STAT,
305                             slv);
306         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
307                             granted);
308         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
309                             grant_rate);
310         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
311                             grant_plan);
312         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
313                             cancel_rate);
314 }
315
316 /**
317  * Sets current SLV into obd accessible via ldlm_pl2ns(pl)->ns_obd.
318  */
319 static void ldlm_srv_pool_push_slv(struct ldlm_pool *pl)
320 {
321         struct obd_device *obd;
322
323         /*
324          * Set new SLV in obd field for using it later without accessing the
325          * pool. This is required to avoid race between sending reply to client
326          * with new SLV and cleanup server stack in which we can't guarantee
327          * that namespace is still alive. We know only that obd is alive as
328          * long as valid export is alive.
329          */
330         obd = ldlm_pl2ns(pl)->ns_obd;
331         LASSERT(obd != NULL);
332         write_lock(&obd->obd_pool_lock);
333         obd->obd_pool_slv = pl->pl_server_lock_volume;
334         write_unlock(&obd->obd_pool_lock);
335 }
336
337 /**
338  * Recalculates all pool fields on passed \a pl.
339  *
340  * \pre ->pl_lock is not locked.
341  */
342 static int ldlm_srv_pool_recalc(struct ldlm_pool *pl)
343 {
344         time_t recalc_interval_sec;
345         ENTRY;
346
347         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
348         if (recalc_interval_sec < pl->pl_recalc_period)
349                 RETURN(0);
350
351         spin_lock(&pl->pl_lock);
352         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
353         if (recalc_interval_sec < pl->pl_recalc_period) {
354                 spin_unlock(&pl->pl_lock);
355                 RETURN(0);
356         }
357         /*
358          * Recalc SLV after last period. This should be done
359          * _before_ recalculating new grant plan.
360          */
361         ldlm_pool_recalc_slv(pl);
362
363         /*
364          * Make sure that pool informed obd of last SLV changes.
365          */
366         ldlm_srv_pool_push_slv(pl);
367
368         /*
369          * Update grant_plan for new period.
370          */
371         ldlm_pool_recalc_grant_plan(pl);
372
373         pl->pl_recalc_time = cfs_time_current_sec();
374         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
375                             recalc_interval_sec);
376         spin_unlock(&pl->pl_lock);
377         RETURN(0);
378 }
379
380 /**
381  * This function is used on server side as main entry point for memory
382  * pressure handling. It decreases SLV on \a pl according to passed
383  * \a nr and \a gfp_mask.
384  *
385  * Our goal here is to decrease SLV such a way that clients hold \a nr
386  * locks smaller in next 10h.
387  */
388 static int ldlm_srv_pool_shrink(struct ldlm_pool *pl,
389                                 int nr, unsigned int gfp_mask)
390 {
391         __u32 limit;
392
393         /*
394          * VM is asking how many entries may be potentially freed.
395          */
396         if (nr == 0)
397                 return cfs_atomic_read(&pl->pl_granted);
398
399         /*
400          * Client already canceled locks but server is already in shrinker
401          * and can't cancel anything. Let's catch this race.
402          */
403         if (cfs_atomic_read(&pl->pl_granted) == 0)
404                 RETURN(0);
405
406         spin_lock(&pl->pl_lock);
407
408         /*
409          * We want shrinker to possibly cause cancellation of @nr locks from
410          * clients or grant approximately @nr locks smaller next intervals.
411          *
412          * This is why we decreased SLV by @nr. This effect will only be as
413          * long as one re-calc interval (1s these days) and this should be
414          * enough to pass this decreased SLV to all clients. On next recalc
415          * interval pool will either increase SLV if locks load is not high
416          * or will keep on same level or even decrease again, thus, shrinker
417          * decreased SLV will affect next recalc intervals and this way will
418          * make locking load lower.
419          */
420         if (nr < pl->pl_server_lock_volume) {
421                 pl->pl_server_lock_volume = pl->pl_server_lock_volume - nr;
422         } else {
423                 limit = ldlm_pool_get_limit(pl);
424                 pl->pl_server_lock_volume = ldlm_pool_slv_min(limit);
425         }
426
427         /*
428          * Make sure that pool informed obd of last SLV changes.
429          */
430         ldlm_srv_pool_push_slv(pl);
431         spin_unlock(&pl->pl_lock);
432
433         /*
434          * We did not really free any memory here so far, it only will be
435          * freed later may be, so that we return 0 to not confuse VM.
436          */
437         return 0;
438 }
439
440 /**
441  * Setup server side pool \a pl with passed \a limit.
442  */
443 static int ldlm_srv_pool_setup(struct ldlm_pool *pl, int limit)
444 {
445         struct obd_device *obd;
446
447         obd = ldlm_pl2ns(pl)->ns_obd;
448         LASSERT(obd != NULL && obd != LP_POISON);
449         LASSERT(obd->obd_type != LP_POISON);
450         write_lock(&obd->obd_pool_lock);
451         obd->obd_pool_limit = limit;
452         write_unlock(&obd->obd_pool_lock);
453
454         ldlm_pool_set_limit(pl, limit);
455         return 0;
456 }
457
458 /**
459  * Sets SLV and Limit from ldlm_pl2ns(pl)->ns_obd tp passed \a pl.
460  */
461 static void ldlm_cli_pool_pop_slv(struct ldlm_pool *pl)
462 {
463         struct obd_device *obd;
464
465         /*
466          * Get new SLV and Limit from obd which is updated with coming
467          * RPCs.
468          */
469         obd = ldlm_pl2ns(pl)->ns_obd;
470         LASSERT(obd != NULL);
471         read_lock(&obd->obd_pool_lock);
472         pl->pl_server_lock_volume = obd->obd_pool_slv;
473         ldlm_pool_set_limit(pl, obd->obd_pool_limit);
474         read_unlock(&obd->obd_pool_lock);
475 }
476
477 /**
478  * Recalculates client size pool \a pl according to current SLV and Limit.
479  */
480 static int ldlm_cli_pool_recalc(struct ldlm_pool *pl)
481 {
482         time_t recalc_interval_sec;
483         ENTRY;
484
485         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
486         if (recalc_interval_sec < pl->pl_recalc_period)
487                 RETURN(0);
488
489         spin_lock(&pl->pl_lock);
490         /*
491          * Check if we need to recalc lists now.
492          */
493         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
494         if (recalc_interval_sec < pl->pl_recalc_period) {
495                 spin_unlock(&pl->pl_lock);
496                 RETURN(0);
497         }
498
499         /*
500          * Make sure that pool knows last SLV and Limit from obd.
501          */
502         ldlm_cli_pool_pop_slv(pl);
503
504         pl->pl_recalc_time = cfs_time_current_sec();
505         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
506                             recalc_interval_sec);
507         spin_unlock(&pl->pl_lock);
508
509         /*
510          * Do not cancel locks in case lru resize is disabled for this ns.
511          */
512         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
513                 RETURN(0);
514
515         /*
516          * In the time of canceling locks on client we do not need to maintain
517          * sharp timing, we only want to cancel locks asap according to new SLV.
518          * It may be called when SLV has changed much, this is why we do not
519          * take into account pl->pl_recalc_time here.
520          */
521         RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), 0, LCF_ASYNC,
522                                LDLM_CANCEL_LRUR));
523 }
524
525 /**
526  * This function is main entry point for memory pressure handling on client
527  * side.  Main goal of this function is to cancel some number of locks on
528  * passed \a pl according to \a nr and \a gfp_mask.
529  */
530 static int ldlm_cli_pool_shrink(struct ldlm_pool *pl,
531                                 int nr, unsigned int gfp_mask)
532 {
533         struct ldlm_namespace *ns;
534         int canceled = 0, unused;
535
536         ns = ldlm_pl2ns(pl);
537
538         /*
539          * Do not cancel locks in case lru resize is disabled for this ns.
540          */
541         if (!ns_connect_lru_resize(ns))
542                 RETURN(0);
543
544         /*
545          * Make sure that pool knows last SLV and Limit from obd.
546          */
547         ldlm_cli_pool_pop_slv(pl);
548
549         spin_lock(&ns->ns_lock);
550         unused = ns->ns_nr_unused;
551         spin_unlock(&ns->ns_lock);
552
553         if (nr) {
554                 canceled = ldlm_cancel_lru(ns, nr, LCF_ASYNC,
555                                            LDLM_CANCEL_SHRINK);
556         }
557 #ifdef __KERNEL__
558         /*
559          * Return the number of potentially reclaimable locks.
560          */
561         return ((unused - canceled) / 100) * sysctl_vfs_cache_pressure;
562 #else
563         return unused - canceled;
564 #endif
565 }
566
567 struct ldlm_pool_ops ldlm_srv_pool_ops = {
568         .po_recalc = ldlm_srv_pool_recalc,
569         .po_shrink = ldlm_srv_pool_shrink,
570         .po_setup  = ldlm_srv_pool_setup
571 };
572
573 struct ldlm_pool_ops ldlm_cli_pool_ops = {
574         .po_recalc = ldlm_cli_pool_recalc,
575         .po_shrink = ldlm_cli_pool_shrink
576 };
577
578 /**
579  * Pool recalc wrapper. Will call either client or server pool recalc callback
580  * depending what pool \a pl is used.
581  */
582 int ldlm_pool_recalc(struct ldlm_pool *pl)
583 {
584         time_t recalc_interval_sec;
585         int count;
586
587         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
588         if (recalc_interval_sec <= 0)
589                 goto recalc;
590
591         spin_lock(&pl->pl_lock);
592         if (recalc_interval_sec > 0) {
593                 /*
594                  * Update pool statistics every 1s.
595                  */
596                 ldlm_pool_recalc_stats(pl);
597
598                 /*
599                  * Zero out all rates and speed for the last period.
600                  */
601                 cfs_atomic_set(&pl->pl_grant_rate, 0);
602                 cfs_atomic_set(&pl->pl_cancel_rate, 0);
603         }
604         spin_unlock(&pl->pl_lock);
605
606  recalc:
607         if (pl->pl_ops->po_recalc != NULL) {
608                 count = pl->pl_ops->po_recalc(pl);
609                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_RECALC_STAT,
610                                     count);
611         }
612         recalc_interval_sec = pl->pl_recalc_time - cfs_time_current_sec() +
613                               pl->pl_recalc_period;
614
615         return recalc_interval_sec;
616 }
617
618 /**
619  * Pool shrink wrapper. Will call either client or server pool recalc callback
620  * depending what pool \a pl is used.
621  */
622 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
623                      unsigned int gfp_mask)
624 {
625         int cancel = 0;
626
627         if (pl->pl_ops->po_shrink != NULL) {
628                 cancel = pl->pl_ops->po_shrink(pl, nr, gfp_mask);
629                 if (nr > 0) {
630                         lprocfs_counter_add(pl->pl_stats,
631                                             LDLM_POOL_SHRINK_REQTD_STAT,
632                                             nr);
633                         lprocfs_counter_add(pl->pl_stats,
634                                             LDLM_POOL_SHRINK_FREED_STAT,
635                                             cancel);
636                         CDEBUG(D_DLMTRACE, "%s: request to shrink %d locks, "
637                                "shrunk %d\n", pl->pl_name, nr, cancel);
638                 }
639         }
640         return cancel;
641 }
642 EXPORT_SYMBOL(ldlm_pool_shrink);
643
644 /**
645  * Pool setup wrapper. Will call either client or server pool recalc callback
646  * depending what pool \a pl is used.
647  *
648  * Sets passed \a limit into pool \a pl.
649  */
650 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
651 {
652         if (pl->pl_ops->po_setup != NULL)
653                 return(pl->pl_ops->po_setup(pl, limit));
654         return 0;
655 }
656 EXPORT_SYMBOL(ldlm_pool_setup);
657
658 #ifdef __KERNEL__
659 static int lprocfs_pool_state_seq_show(struct seq_file *m, void *unused)
660 {
661         int granted, grant_rate, cancel_rate, grant_step;
662         int grant_speed, grant_plan, lvf;
663         struct ldlm_pool *pl = m->private;
664         __u64 slv, clv;
665         __u32 limit;
666
667         spin_lock(&pl->pl_lock);
668         slv = pl->pl_server_lock_volume;
669         clv = pl->pl_client_lock_volume;
670         limit = ldlm_pool_get_limit(pl);
671         grant_plan = pl->pl_grant_plan;
672         granted = cfs_atomic_read(&pl->pl_granted);
673         grant_rate = cfs_atomic_read(&pl->pl_grant_rate);
674         cancel_rate = cfs_atomic_read(&pl->pl_cancel_rate);
675         grant_speed = grant_rate - cancel_rate;
676         lvf = cfs_atomic_read(&pl->pl_lock_volume_factor);
677         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
678         spin_unlock(&pl->pl_lock);
679
680         seq_printf(m, "LDLM pool state (%s):\n"
681                       "  SLV: "LPU64"\n"
682                       "  CLV: "LPU64"\n"
683                       "  LVF: %d\n",
684                       pl->pl_name, slv, clv, lvf);
685
686         if (ns_is_server(ldlm_pl2ns(pl))) {
687                 seq_printf(m, "  GSP: %d%%\n"
688                               "  GP:  %d\n",
689                               grant_step, grant_plan);
690         }
691         seq_printf(m, "  GR:  %d\n" "  CR:  %d\n" "  GS:  %d\n"
692                       "  G:   %d\n" "  L:   %d\n",
693                       grant_rate, cancel_rate, grant_speed,
694                       granted, limit);
695         return 0;
696 }
697 LPROC_SEQ_FOPS_RO(lprocfs_pool_state);
698
699 static int lprocfs_grant_speed_seq_show(struct seq_file *m, void *unused)
700 {
701         struct ldlm_pool *pl = m->private;
702         int               grant_speed;
703
704         spin_lock(&pl->pl_lock);
705         /* serialize with ldlm_pool_recalc */
706         grant_speed = cfs_atomic_read(&pl->pl_grant_rate) -
707                         cfs_atomic_read(&pl->pl_cancel_rate);
708         spin_unlock(&pl->pl_lock);
709         return lprocfs_uint_seq_show(m, &grant_speed);
710 }
711
712 LDLM_POOL_PROC_READER_SEQ_SHOW(grant_plan, int);
713 LPROC_SEQ_FOPS_RO(lprocfs_grant_plan);
714
715 LDLM_POOL_PROC_READER_SEQ_SHOW(recalc_period, int);
716 LDLM_POOL_PROC_WRITER(recalc_period, int);
717 static ssize_t lprocfs_recalc_period_seq_write(struct file *file, const char *buf,
718                                                size_t len, loff_t *off)
719 {
720         struct seq_file *seq = file->private_data;
721
722         return lprocfs_wr_recalc_period(file, buf, len, seq->private);
723 }
724 LPROC_SEQ_FOPS(lprocfs_recalc_period);
725
726 LPROC_SEQ_FOPS_RO_TYPE(ldlm_pool, u64);
727 LPROC_SEQ_FOPS_RO_TYPE(ldlm_pool, atomic);
728 LPROC_SEQ_FOPS_RW_TYPE(ldlm_pool_rw, atomic);
729
730 LPROC_SEQ_FOPS_RO(lprocfs_grant_speed);
731
732 static int ldlm_pool_proc_init(struct ldlm_pool *pl)
733 {
734         struct ldlm_namespace *ns = ldlm_pl2ns(pl);
735         struct proc_dir_entry *parent_ns_proc;
736         struct lprocfs_seq_vars pool_vars[2];
737         char *var_name = NULL;
738         int rc = 0;
739         ENTRY;
740
741         OBD_ALLOC(var_name, MAX_STRING_SIZE + 1);
742         if (!var_name)
743                 RETURN(-ENOMEM);
744
745         parent_ns_proc = ns->ns_proc_dir_entry;
746         if (parent_ns_proc == NULL) {
747                 CERROR("%s: proc entry is not initialized\n",
748                        ldlm_ns_name(ns));
749                 GOTO(out_free_name, rc = -EINVAL);
750         }
751         pl->pl_proc_dir = lprocfs_seq_register("pool", parent_ns_proc,
752                                                 NULL, NULL);
753         if (IS_ERR(pl->pl_proc_dir)) {
754                 rc = PTR_ERR(pl->pl_proc_dir);
755                 pl->pl_proc_dir = NULL;
756                 CERROR("%s: cannot create 'pool' proc entry: rc = %d\n",
757                        ldlm_ns_name(ns), rc);
758                 GOTO(out_free_name, rc);
759         }
760
761         var_name[MAX_STRING_SIZE] = '\0';
762         memset(pool_vars, 0, sizeof(pool_vars));
763         pool_vars[0].name = var_name;
764
765         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "server_lock_volume",
766                      &pl->pl_server_lock_volume, &ldlm_pool_u64_fops);
767         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "limit", &pl->pl_limit,
768                      &ldlm_pool_rw_atomic_fops);
769         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "granted",
770                      &pl->pl_granted, &ldlm_pool_atomic_fops);
771         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "grant_speed", pl,
772                      &lprocfs_grant_speed_fops);
773         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "cancel_rate",
774                      &pl->pl_cancel_rate, &ldlm_pool_atomic_fops);
775         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "grant_rate",
776                      &pl->pl_grant_rate, &ldlm_pool_atomic_fops);
777         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "grant_plan", pl,
778                      &lprocfs_grant_plan_fops);
779         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "recalc_period",
780                      pl, &lprocfs_recalc_period_fops);
781         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "lock_volume_factor",
782                      &pl->pl_lock_volume_factor, &ldlm_pool_rw_atomic_fops);
783         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "state", pl,
784                      &lprocfs_pool_state_fops);
785
786         pl->pl_stats = lprocfs_alloc_stats(LDLM_POOL_LAST_STAT -
787                                            LDLM_POOL_FIRST_STAT, 0);
788         if (!pl->pl_stats)
789                 GOTO(out_free_name, rc = -ENOMEM);
790
791         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
792                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
793                              "granted", "locks");
794         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_STAT,
795                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
796                              "grant", "locks");
797         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_STAT,
798                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
799                              "cancel", "locks");
800         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
801                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
802                              "grant_rate", "locks/s");
803         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
804                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
805                              "cancel_rate", "locks/s");
806         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
807                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
808                              "grant_plan", "locks/s");
809         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SLV_STAT,
810                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
811                              "slv", "slv");
812         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_REQTD_STAT,
813                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
814                              "shrink_request", "locks");
815         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_FREED_STAT,
816                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
817                              "shrink_freed", "locks");
818         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_RECALC_STAT,
819                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
820                              "recalc_freed", "locks");
821         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_TIMING_STAT,
822                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
823                              "recalc_timing", "sec");
824         rc = lprocfs_register_stats(pl->pl_proc_dir, "stats", pl->pl_stats);
825
826         EXIT;
827 out_free_name:
828         OBD_FREE(var_name, MAX_STRING_SIZE + 1);
829         return rc;
830 }
831
832 static void ldlm_pool_proc_fini(struct ldlm_pool *pl)
833 {
834         if (pl->pl_stats != NULL) {
835                 lprocfs_free_stats(&pl->pl_stats);
836                 pl->pl_stats = NULL;
837         }
838         if (pl->pl_proc_dir != NULL) {
839                 lprocfs_remove(&pl->pl_proc_dir);
840                 pl->pl_proc_dir = NULL;
841         }
842 }
843 #else /* !__KERNEL__*/
844 #define ldlm_pool_proc_init(pl) (0)
845 #define ldlm_pool_proc_fini(pl) while (0) {}
846 #endif
847
848 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
849                    int idx, ldlm_side_t client)
850 {
851         int rc;
852         ENTRY;
853
854         spin_lock_init(&pl->pl_lock);
855         cfs_atomic_set(&pl->pl_granted, 0);
856         pl->pl_recalc_time = cfs_time_current_sec();
857         cfs_atomic_set(&pl->pl_lock_volume_factor, 1);
858
859         cfs_atomic_set(&pl->pl_grant_rate, 0);
860         cfs_atomic_set(&pl->pl_cancel_rate, 0);
861         pl->pl_grant_plan = LDLM_POOL_GP(LDLM_POOL_HOST_L);
862
863         snprintf(pl->pl_name, sizeof(pl->pl_name), "ldlm-pool-%s-%d",
864                  ldlm_ns_name(ns), idx);
865
866         if (client == LDLM_NAMESPACE_SERVER) {
867                 pl->pl_ops = &ldlm_srv_pool_ops;
868                 ldlm_pool_set_limit(pl, LDLM_POOL_HOST_L);
869                 pl->pl_recalc_period = LDLM_POOL_SRV_DEF_RECALC_PERIOD;
870                 pl->pl_server_lock_volume = ldlm_pool_slv_max(LDLM_POOL_HOST_L);
871         } else {
872                 ldlm_pool_set_limit(pl, 1);
873                 pl->pl_server_lock_volume = 0;
874                 pl->pl_ops = &ldlm_cli_pool_ops;
875                 pl->pl_recalc_period = LDLM_POOL_CLI_DEF_RECALC_PERIOD;
876         }
877         pl->pl_client_lock_volume = 0;
878         rc = ldlm_pool_proc_init(pl);
879         if (rc)
880                 RETURN(rc);
881
882         CDEBUG(D_DLMTRACE, "Lock pool %s is initialized\n", pl->pl_name);
883
884         RETURN(rc);
885 }
886 EXPORT_SYMBOL(ldlm_pool_init);
887
888 void ldlm_pool_fini(struct ldlm_pool *pl)
889 {
890         ENTRY;
891         ldlm_pool_proc_fini(pl);
892
893         /*
894          * Pool should not be used after this point. We can't free it here as
895          * it lives in struct ldlm_namespace, but still interested in catching
896          * any abnormal using cases.
897          */
898         POISON(pl, 0x5a, sizeof(*pl));
899         EXIT;
900 }
901 EXPORT_SYMBOL(ldlm_pool_fini);
902
903 /**
904  * Add new taken ldlm lock \a lock into pool \a pl accounting.
905  */
906 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
907 {
908         /*
909          * FLOCK locks are special in a sense that they are almost never
910          * cancelled, instead special kind of lock is used to drop them.
911          * also there is no LRU for flock locks, so no point in tracking
912          * them anyway.
913          */
914         if (lock->l_resource->lr_type == LDLM_FLOCK)
915                 return;
916
917         cfs_atomic_inc(&pl->pl_granted);
918         cfs_atomic_inc(&pl->pl_grant_rate);
919         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_GRANT_STAT);
920         /*
921          * Do not do pool recalc for client side as all locks which
922          * potentially may be canceled has already been packed into
923          * enqueue/cancel rpc. Also we do not want to run out of stack
924          * with too long call paths.
925          */
926         if (ns_is_server(ldlm_pl2ns(pl)))
927                 ldlm_pool_recalc(pl);
928 }
929 EXPORT_SYMBOL(ldlm_pool_add);
930
931 /**
932  * Remove ldlm lock \a lock from pool \a pl accounting.
933  */
934 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
935 {
936         /*
937          * Filter out FLOCK locks. Read above comment in ldlm_pool_add().
938          */
939         if (lock->l_resource->lr_type == LDLM_FLOCK)
940                 return;
941
942         LASSERT(cfs_atomic_read(&pl->pl_granted) > 0);
943         cfs_atomic_dec(&pl->pl_granted);
944         cfs_atomic_inc(&pl->pl_cancel_rate);
945
946         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_CANCEL_STAT);
947
948         if (ns_is_server(ldlm_pl2ns(pl)))
949                 ldlm_pool_recalc(pl);
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 cfs_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         cfs_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 cfs_atomic_read(&pl->pl_lock_volume_factor);
1033 }
1034 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1035
1036 #ifdef __KERNEL__
1037 static unsigned int ldlm_pool_granted(struct ldlm_pool *pl)
1038 {
1039         return cfs_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         unsigned int total = 0, cached = 0;
1056         int nr_ns;
1057         struct ldlm_namespace *ns;
1058         struct ldlm_namespace *ns_old = NULL; /* loop detection */
1059         void *cookie;
1060
1061         if (client == LDLM_NAMESPACE_CLIENT && nr != 0 &&
1062             !(gfp_mask & __GFP_FS))
1063                 return -1;
1064
1065         CDEBUG(D_DLMTRACE, "Request to shrink %d %s locks from all pools\n",
1066                nr, client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1067
1068         cookie = cl_env_reenter();
1069
1070         /*
1071          * Find out how many resources we may release.
1072          */
1073         for (nr_ns = ldlm_namespace_nr_read(client);
1074              nr_ns > 0; nr_ns--)
1075         {
1076                 mutex_lock(ldlm_namespace_lock(client));
1077                 if (cfs_list_empty(ldlm_namespace_list(client))) {
1078                         mutex_unlock(ldlm_namespace_lock(client));
1079                         cl_env_reexit(cookie);
1080                         return 0;
1081                 }
1082                 ns = ldlm_namespace_first_locked(client);
1083
1084                 if (ns == ns_old) {
1085                         mutex_unlock(ldlm_namespace_lock(client));
1086                         break;
1087                 }
1088
1089                 if (ldlm_ns_empty(ns)) {
1090                         ldlm_namespace_move_to_inactive_locked(ns, client);
1091                         mutex_unlock(ldlm_namespace_lock(client));
1092                         continue;
1093                 }
1094
1095                 if (ns_old == NULL)
1096                         ns_old = ns;
1097
1098                 ldlm_namespace_get(ns);
1099                 ldlm_namespace_move_to_active_locked(ns, client);
1100                 mutex_unlock(ldlm_namespace_lock(client));
1101                 total += ldlm_pool_shrink(&ns->ns_pool, 0, gfp_mask);
1102                 ldlm_namespace_put(ns);
1103         }
1104
1105         if (nr == 0 || total == 0) {
1106                 cl_env_reexit(cookie);
1107                 return total;
1108         }
1109
1110         /*
1111          * Shrink at least ldlm_namespace_nr(client) namespaces.
1112          */
1113         for (nr_ns = ldlm_namespace_nr_read(client) - nr_ns;
1114              nr_ns > 0; nr_ns--)
1115         {
1116                 __u64 cancel;
1117                 unsigned int nr_locks;
1118
1119                 /*
1120                  * Do not call shrink under ldlm_namespace_lock(client)
1121                  */
1122                 mutex_lock(ldlm_namespace_lock(client));
1123                 if (cfs_list_empty(ldlm_namespace_list(client))) {
1124                         mutex_unlock(ldlm_namespace_lock(client));
1125                         /*
1126                          * If list is empty, we can't return any @cached > 0,
1127                          * that probably would cause needless shrinker
1128                          * call.
1129                          */
1130                         cached = 0;
1131                         break;
1132                 }
1133                 ns = ldlm_namespace_first_locked(client);
1134                 ldlm_namespace_get(ns);
1135                 ldlm_namespace_move_to_active_locked(ns, client);
1136                 mutex_unlock(ldlm_namespace_lock(client));
1137
1138                 nr_locks = ldlm_pool_granted(&ns->ns_pool);
1139                 cancel = (__u64)nr_locks * nr;
1140                 do_div(cancel, total);
1141                 ldlm_pool_shrink(&ns->ns_pool, 1 + cancel, gfp_mask);
1142                 cached += ldlm_pool_granted(&ns->ns_pool);
1143                 ldlm_namespace_put(ns);
1144         }
1145         cl_env_reexit(cookie);
1146         /* we only decrease the SLV in server pools shrinker, return -1 to
1147          * kernel to avoid needless loop. LU-1128 */
1148         return (client == LDLM_NAMESPACE_SERVER) ? -1 : cached;
1149 }
1150
1151 static int ldlm_pools_srv_shrink(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask))
1152 {
1153         return ldlm_pools_shrink(LDLM_NAMESPACE_SERVER,
1154                                  shrink_param(sc, nr_to_scan),
1155                                  shrink_param(sc, gfp_mask));
1156 }
1157
1158 static int ldlm_pools_cli_shrink(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask))
1159 {
1160         return ldlm_pools_shrink(LDLM_NAMESPACE_CLIENT,
1161                                  shrink_param(sc, nr_to_scan),
1162                                  shrink_param(sc, gfp_mask));
1163 }
1164
1165 int ldlm_pools_recalc(ldlm_side_t client)
1166 {
1167         __u32 nr_l = 0, nr_p = 0, l;
1168         struct ldlm_namespace *ns;
1169         struct ldlm_namespace *ns_old = NULL;
1170         int nr, equal = 0;
1171         int time = 50; /* seconds of sleep if no active namespaces */
1172
1173         /*
1174          * No need to setup pool limit for client pools.
1175          */
1176         if (client == LDLM_NAMESPACE_SERVER) {
1177                 /*
1178                  * Check all modest namespaces first.
1179                  */
1180                 mutex_lock(ldlm_namespace_lock(client));
1181                 cfs_list_for_each_entry(ns, ldlm_namespace_list(client),
1182                                         ns_list_chain)
1183                 {
1184                         if (ns->ns_appetite != LDLM_NAMESPACE_MODEST)
1185                                 continue;
1186
1187                         l = ldlm_pool_granted(&ns->ns_pool);
1188                         if (l == 0)
1189                                 l = 1;
1190
1191                         /*
1192                          * Set the modest pools limit equal to their avg granted
1193                          * locks + ~6%.
1194                          */
1195                         l += dru(l, LDLM_POOLS_MODEST_MARGIN_SHIFT, 0);
1196                         ldlm_pool_setup(&ns->ns_pool, l);
1197                         nr_l += l;
1198                         nr_p++;
1199                 }
1200
1201                 /*
1202                  * Make sure that modest namespaces did not eat more that 2/3
1203                  * of limit.
1204                  */
1205                 if (nr_l >= 2 * (LDLM_POOL_HOST_L / 3)) {
1206                         CWARN("\"Modest\" pools eat out 2/3 of server locks "
1207                               "limit (%d of %lu). This means that you have too "
1208                               "many clients for this amount of server RAM. "
1209                               "Upgrade server!\n", nr_l, LDLM_POOL_HOST_L);
1210                         equal = 1;
1211                 }
1212
1213                 /*
1214                  * The rest is given to greedy namespaces.
1215                  */
1216                 cfs_list_for_each_entry(ns, ldlm_namespace_list(client),
1217                                         ns_list_chain)
1218                 {
1219                         if (!equal && ns->ns_appetite != LDLM_NAMESPACE_GREEDY)
1220                                 continue;
1221
1222                         if (equal) {
1223                                 /*
1224                                  * In the case 2/3 locks are eaten out by
1225                                  * modest pools, we re-setup equal limit
1226                                  * for _all_ pools.
1227                                  */
1228                                 l = LDLM_POOL_HOST_L /
1229                                         ldlm_namespace_nr_read(client);
1230                         } else {
1231                                 /*
1232                                  * All the rest of greedy pools will have
1233                                  * all locks in equal parts.
1234                                  */
1235                                 l = (LDLM_POOL_HOST_L - nr_l) /
1236                                         (ldlm_namespace_nr_read(client) -
1237                                          nr_p);
1238                         }
1239                         ldlm_pool_setup(&ns->ns_pool, l);
1240                 }
1241                 mutex_unlock(ldlm_namespace_lock(client));
1242         }
1243
1244         /*
1245          * Recalc at least ldlm_namespace_nr(client) namespaces.
1246          */
1247         for (nr = ldlm_namespace_nr_read(client); nr > 0; nr--) {
1248                 int     skip;
1249                 /*
1250                  * Lock the list, get first @ns in the list, getref, move it
1251                  * to the tail, unlock and call pool recalc. This way we avoid
1252                  * calling recalc under @ns lock what is really good as we get
1253                  * rid of potential deadlock on client nodes when canceling
1254                  * locks synchronously.
1255                  */
1256                 mutex_lock(ldlm_namespace_lock(client));
1257                 if (cfs_list_empty(ldlm_namespace_list(client))) {
1258                         mutex_unlock(ldlm_namespace_lock(client));
1259                         break;
1260                 }
1261                 ns = ldlm_namespace_first_locked(client);
1262
1263                 if (ns_old == ns) { /* Full pass complete */
1264                         mutex_unlock(ldlm_namespace_lock(client));
1265                         break;
1266                 }
1267
1268                 /* We got an empty namespace, need to move it back to inactive
1269                  * list.
1270                  * The race with parallel resource creation is fine:
1271                  * - If they do namespace_get before our check, we fail the
1272                  *   check and they move this item to the end of the list anyway
1273                  * - If we do the check and then they do namespace_get, then
1274                  *   we move the namespace to inactive and they will move
1275                  *   it back to active (synchronised by the lock, so no clash
1276                  *   there).
1277                  */
1278                 if (ldlm_ns_empty(ns)) {
1279                         ldlm_namespace_move_to_inactive_locked(ns, client);
1280                         mutex_unlock(ldlm_namespace_lock(client));
1281                         continue;
1282                 }
1283
1284                 if (ns_old == NULL)
1285                         ns_old = ns;
1286
1287                 spin_lock(&ns->ns_lock);
1288                 /*
1289                  * skip ns which is being freed, and we don't want to increase
1290                  * its refcount again, not even temporarily. bz21519 & LU-499.
1291                  */
1292                 if (ns->ns_stopping) {
1293                         skip = 1;
1294                 } else {
1295                         skip = 0;
1296                         ldlm_namespace_get(ns);
1297                 }
1298                 spin_unlock(&ns->ns_lock);
1299
1300                 ldlm_namespace_move_to_active_locked(ns, client);
1301                 mutex_unlock(ldlm_namespace_lock(client));
1302
1303                 /*
1304                  * After setup is done - recalc the pool.
1305                  */
1306                 if (!skip) {
1307                         int ttime = ldlm_pool_recalc(&ns->ns_pool);
1308
1309                         if (ttime < time)
1310                                 time = ttime;
1311
1312                         ldlm_namespace_put(ns);
1313                 }
1314         }
1315         return time;
1316 }
1317 EXPORT_SYMBOL(ldlm_pools_recalc);
1318
1319 static int ldlm_pools_thread_main(void *arg)
1320 {
1321         struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
1322         int s_time, c_time;
1323         ENTRY;
1324
1325         thread_set_flags(thread, SVC_RUNNING);
1326         wake_up(&thread->t_ctl_waitq);
1327
1328         CDEBUG(D_DLMTRACE, "%s: pool thread starting, process %d\n",
1329                "ldlm_poold", current_pid());
1330
1331         while (1) {
1332                 struct l_wait_info lwi;
1333
1334                 /*
1335                  * Recal all pools on this tick.
1336                  */
1337                 s_time = ldlm_pools_recalc(LDLM_NAMESPACE_SERVER);
1338                 c_time = ldlm_pools_recalc(LDLM_NAMESPACE_CLIENT);
1339
1340                 /*
1341                  * Wait until the next check time, or until we're
1342                  * stopped.
1343                  */
1344                 lwi = LWI_TIMEOUT(cfs_time_seconds(min(s_time, c_time)),
1345                                   NULL, NULL);
1346                 l_wait_event(thread->t_ctl_waitq,
1347                              thread_is_stopping(thread) ||
1348                              thread_is_event(thread),
1349                              &lwi);
1350
1351                 if (thread_test_and_clear_flags(thread, SVC_STOPPING))
1352                         break;
1353                 else
1354                         thread_test_and_clear_flags(thread, SVC_EVENT);
1355         }
1356
1357         thread_set_flags(thread, SVC_STOPPED);
1358         wake_up(&thread->t_ctl_waitq);
1359
1360         CDEBUG(D_DLMTRACE, "%s: pool thread exiting, process %d\n",
1361                 "ldlm_poold", current_pid());
1362
1363         complete_and_exit(&ldlm_pools_comp, 0);
1364 }
1365
1366 static int ldlm_pools_thread_start(void)
1367 {
1368         struct l_wait_info lwi = { 0 };
1369         struct task_struct *task;
1370         ENTRY;
1371
1372         if (ldlm_pools_thread != NULL)
1373                 RETURN(-EALREADY);
1374
1375         OBD_ALLOC_PTR(ldlm_pools_thread);
1376         if (ldlm_pools_thread == NULL)
1377                 RETURN(-ENOMEM);
1378
1379         init_completion(&ldlm_pools_comp);
1380         init_waitqueue_head(&ldlm_pools_thread->t_ctl_waitq);
1381
1382         task = kthread_run(ldlm_pools_thread_main, ldlm_pools_thread,
1383                            "ldlm_poold");
1384         if (IS_ERR(task)) {
1385                 CERROR("Can't start pool thread, error %ld\n", PTR_ERR(task));
1386                 OBD_FREE(ldlm_pools_thread, sizeof(*ldlm_pools_thread));
1387                 ldlm_pools_thread = NULL;
1388                 RETURN(PTR_ERR(task));
1389         }
1390         l_wait_event(ldlm_pools_thread->t_ctl_waitq,
1391                      thread_is_running(ldlm_pools_thread), &lwi);
1392         RETURN(0);
1393 }
1394
1395 static void ldlm_pools_thread_stop(void)
1396 {
1397         ENTRY;
1398
1399         if (ldlm_pools_thread == NULL) {
1400                 EXIT;
1401                 return;
1402         }
1403
1404         thread_set_flags(ldlm_pools_thread, SVC_STOPPING);
1405         wake_up(&ldlm_pools_thread->t_ctl_waitq);
1406
1407         /*
1408          * Make sure that pools thread is finished before freeing @thread.
1409          * This fixes possible race and oops due to accessing freed memory
1410          * in pools thread.
1411          */
1412         wait_for_completion(&ldlm_pools_comp);
1413         OBD_FREE_PTR(ldlm_pools_thread);
1414         ldlm_pools_thread = NULL;
1415         EXIT;
1416 }
1417
1418 int ldlm_pools_init(void)
1419 {
1420         int rc;
1421         ENTRY;
1422
1423         rc = ldlm_pools_thread_start();
1424         if (rc == 0) {
1425                 ldlm_pools_srv_shrinker =
1426                         set_shrinker(DEFAULT_SEEKS,
1427                                          ldlm_pools_srv_shrink);
1428                 ldlm_pools_cli_shrinker =
1429                         set_shrinker(DEFAULT_SEEKS,
1430                                          ldlm_pools_cli_shrink);
1431         }
1432         RETURN(rc);
1433 }
1434 EXPORT_SYMBOL(ldlm_pools_init);
1435
1436 void ldlm_pools_fini(void)
1437 {
1438         if (ldlm_pools_srv_shrinker != NULL) {
1439                 remove_shrinker(ldlm_pools_srv_shrinker);
1440                 ldlm_pools_srv_shrinker = NULL;
1441         }
1442         if (ldlm_pools_cli_shrinker != NULL) {
1443                 remove_shrinker(ldlm_pools_cli_shrinker);
1444                 ldlm_pools_cli_shrinker = NULL;
1445         }
1446         ldlm_pools_thread_stop();
1447 }
1448 EXPORT_SYMBOL(ldlm_pools_fini);
1449 #endif /* __KERNEL__ */
1450
1451 #else /* !HAVE_LRU_RESIZE_SUPPORT */
1452 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
1453 {
1454         return 0;
1455 }
1456 EXPORT_SYMBOL(ldlm_pool_setup);
1457
1458 int ldlm_pool_recalc(struct ldlm_pool *pl)
1459 {
1460         return 0;
1461 }
1462 EXPORT_SYMBOL(ldlm_pool_recalc);
1463
1464 int ldlm_pool_shrink(struct ldlm_pool *pl,
1465                      int nr, unsigned int gfp_mask)
1466 {
1467         return 0;
1468 }
1469 EXPORT_SYMBOL(ldlm_pool_shrink);
1470
1471 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1472                    int idx, ldlm_side_t client)
1473 {
1474         return 0;
1475 }
1476 EXPORT_SYMBOL(ldlm_pool_init);
1477
1478 void ldlm_pool_fini(struct ldlm_pool *pl)
1479 {
1480         return;
1481 }
1482 EXPORT_SYMBOL(ldlm_pool_fini);
1483
1484 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
1485 {
1486         return;
1487 }
1488 EXPORT_SYMBOL(ldlm_pool_add);
1489
1490 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
1491 {
1492         return;
1493 }
1494 EXPORT_SYMBOL(ldlm_pool_del);
1495
1496 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
1497 {
1498         return 1;
1499 }
1500 EXPORT_SYMBOL(ldlm_pool_get_slv);
1501
1502 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
1503 {
1504         return;
1505 }
1506 EXPORT_SYMBOL(ldlm_pool_set_slv);
1507
1508 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
1509 {
1510         return 1;
1511 }
1512 EXPORT_SYMBOL(ldlm_pool_get_clv);
1513
1514 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1515 {
1516         return;
1517 }
1518 EXPORT_SYMBOL(ldlm_pool_set_clv);
1519
1520 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1521 {
1522         return 0;
1523 }
1524 EXPORT_SYMBOL(ldlm_pool_get_limit);
1525
1526 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1527 {
1528         return;
1529 }
1530 EXPORT_SYMBOL(ldlm_pool_set_limit);
1531
1532 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1533 {
1534         return 0;
1535 }
1536 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1537
1538 int ldlm_pools_init(void)
1539 {
1540         return 0;
1541 }
1542 EXPORT_SYMBOL(ldlm_pools_init);
1543
1544 void ldlm_pools_fini(void)
1545 {
1546         return;
1547 }
1548 EXPORT_SYMBOL(ldlm_pools_fini);
1549
1550 int ldlm_pools_recalc(ldlm_side_t client)
1551 {
1552         return 0;
1553 }
1554 EXPORT_SYMBOL(ldlm_pools_recalc);
1555 #endif /* HAVE_LRU_RESIZE_SUPPORT */