Whamcloud - gitweb
LU-6529 ldlm: reclaim granted locks defensively
[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, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * 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 #include <linux/kthread.h>
101 #include <lustre_dlm.h>
102 #include <cl_object.h>
103 #include <obd_class.h>
104 #include <obd_support.h>
105 #include "ldlm_internal.h"
106
107 #ifdef HAVE_LRU_RESIZE_SUPPORT
108
109 /*
110  * 50 ldlm locks for 1MB of RAM.
111  */
112 #define LDLM_POOL_HOST_L ((NUM_CACHEPAGES >> (20 - PAGE_CACHE_SHIFT)) * 50)
113
114 /*
115  * Maximal possible grant step plan in %.
116  */
117 #define LDLM_POOL_MAX_GSP (30)
118
119 /*
120  * Minimal possible grant step plan in %.
121  */
122 #define LDLM_POOL_MIN_GSP (1)
123
124 /*
125  * This controls the speed of reaching LDLM_POOL_MAX_GSP
126  * with increasing thread period.
127  */
128 #define LDLM_POOL_GSP_STEP_SHIFT (2)
129
130 /*
131  * LDLM_POOL_GSP% of all locks is default GP.
132  */
133 #define LDLM_POOL_GP(L)   (((L) * LDLM_POOL_MAX_GSP) / 100)
134
135 /*
136  * Max age for locks on clients.
137  */
138 #define LDLM_POOL_MAX_AGE (36000)
139
140 /*
141  * The granularity of SLV calculation.
142  */
143 #define LDLM_POOL_SLV_SHIFT (10)
144
145 extern struct proc_dir_entry *ldlm_ns_proc_dir;
146
147 static inline __u64 dru(__u64 val, __u32 shift, int round_up)
148 {
149         return (val + (round_up ? (1 << shift) - 1 : 0)) >> shift;
150 }
151
152 static inline __u64 ldlm_pool_slv_max(__u32 L)
153 {
154         /*
155          * Allow to have all locks for 1 client for 10 hrs.
156          * Formula is the following: limit * 10h / 1 client.
157          */
158         __u64 lim = (__u64)L *  LDLM_POOL_MAX_AGE / 1;
159         return lim;
160 }
161
162 static inline __u64 ldlm_pool_slv_min(__u32 L)
163 {
164         return 1;
165 }
166
167 enum {
168         LDLM_POOL_FIRST_STAT = 0,
169         LDLM_POOL_GRANTED_STAT = LDLM_POOL_FIRST_STAT,
170         LDLM_POOL_GRANT_STAT,
171         LDLM_POOL_CANCEL_STAT,
172         LDLM_POOL_GRANT_RATE_STAT,
173         LDLM_POOL_CANCEL_RATE_STAT,
174         LDLM_POOL_GRANT_PLAN_STAT,
175         LDLM_POOL_SLV_STAT,
176         LDLM_POOL_SHRINK_REQTD_STAT,
177         LDLM_POOL_SHRINK_FREED_STAT,
178         LDLM_POOL_RECALC_STAT,
179         LDLM_POOL_TIMING_STAT,
180         LDLM_POOL_LAST_STAT
181 };
182
183 static inline struct ldlm_namespace *ldlm_pl2ns(struct ldlm_pool *pl)
184 {
185         return container_of(pl, struct ldlm_namespace, ns_pool);
186 }
187
188 /**
189  * Calculates suggested grant_step in % of available locks for passed
190  * \a period. This is later used in grant_plan calculations.
191  */
192 static inline int ldlm_pool_t2gsp(unsigned int t)
193 {
194         /*
195          * This yields 1% grant step for anything below LDLM_POOL_GSP_STEP
196          * and up to 30% for anything higher than LDLM_POOL_GSP_STEP.
197          *
198          * How this will affect execution is the following:
199          *
200          * - for thread period 1s we will have grant_step 1% which good from
201          * pov of taking some load off from server and push it out to clients.
202          * This is like that because 1% for grant_step means that server will
203          * not allow clients to get lots of locks in short period of time and
204          * keep all old locks in their caches. Clients will always have to
205          * get some locks back if they want to take some new;
206          *
207          * - for thread period 10s (which is default) we will have 23% which
208          * means that clients will have enough of room to take some new locks
209          * without getting some back. All locks from this 23% which were not
210          * taken by clients in current period will contribute in SLV growing.
211          * SLV growing means more locks cached on clients until limit or grant
212          * plan is reached.
213          */
214         return LDLM_POOL_MAX_GSP -
215                 ((LDLM_POOL_MAX_GSP - LDLM_POOL_MIN_GSP) >>
216                  (t >> LDLM_POOL_GSP_STEP_SHIFT));
217 }
218
219 static inline int ldlm_pool_granted(struct ldlm_pool *pl)
220 {
221         return atomic_read(&pl->pl_granted);
222 }
223
224 /**
225  * Recalculates next grant limit on passed \a pl.
226  *
227  * \pre ->pl_lock is locked.
228  */
229 static void ldlm_pool_recalc_grant_plan(struct ldlm_pool *pl)
230 {
231         int granted, grant_step, limit;
232
233         limit = ldlm_pool_get_limit(pl);
234         granted = ldlm_pool_granted(pl);
235
236         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
237         grant_step = ((limit - granted) * grant_step) / 100;
238         pl->pl_grant_plan = granted + grant_step;
239         limit = (limit * 5) >> 2;
240         if (pl->pl_grant_plan > limit)
241                 pl->pl_grant_plan = limit;
242 }
243
244 /**
245  * Recalculates next SLV on passed \a pl.
246  *
247  * \pre ->pl_lock is locked.
248  */
249 static void ldlm_pool_recalc_slv(struct ldlm_pool *pl)
250 {
251         int granted;
252         int grant_plan;
253         int round_up;
254         __u64 slv;
255         __u64 slv_factor;
256         __u64 grant_usage;
257         __u32 limit;
258
259         slv = pl->pl_server_lock_volume;
260         grant_plan = pl->pl_grant_plan;
261         limit = ldlm_pool_get_limit(pl);
262         granted = ldlm_pool_granted(pl);
263         round_up = granted < limit;
264
265         grant_usage = max_t(int, limit - (granted - grant_plan), 1);
266
267         /*
268          * Find out SLV change factor which is the ratio of grant usage
269          * from limit. SLV changes as fast as the ratio of grant plan
270          * consumption. The more locks from grant plan are not consumed
271          * by clients in last interval (idle time), the faster grows
272          * SLV. And the opposite, the more grant plan is over-consumed
273          * (load time) the faster drops SLV.
274          */
275         slv_factor = (grant_usage << LDLM_POOL_SLV_SHIFT);
276         do_div(slv_factor, limit);
277         slv = slv * slv_factor;
278         slv = dru(slv, LDLM_POOL_SLV_SHIFT, round_up);
279
280         if (slv > ldlm_pool_slv_max(limit)) {
281                 slv = ldlm_pool_slv_max(limit);
282         } else if (slv < ldlm_pool_slv_min(limit)) {
283                 slv = ldlm_pool_slv_min(limit);
284         }
285
286         pl->pl_server_lock_volume = slv;
287 }
288
289 /**
290  * Recalculates next stats on passed \a pl.
291  *
292  * \pre ->pl_lock is locked.
293  */
294 static void ldlm_pool_recalc_stats(struct ldlm_pool *pl)
295 {
296         int grant_plan = pl->pl_grant_plan;
297         __u64 slv = pl->pl_server_lock_volume;
298         int granted = ldlm_pool_granted(pl);
299         int grant_rate = atomic_read(&pl->pl_grant_rate);
300         int cancel_rate = atomic_read(&pl->pl_cancel_rate);
301
302         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_SLV_STAT,
303                             slv);
304         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
305                             granted);
306         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
307                             grant_rate);
308         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
309                             grant_plan);
310         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
311                             cancel_rate);
312 }
313
314 /**
315  * Sets current SLV into obd accessible via ldlm_pl2ns(pl)->ns_obd.
316  */
317 static void ldlm_srv_pool_push_slv(struct ldlm_pool *pl)
318 {
319         struct obd_device *obd;
320
321         /*
322          * Set new SLV in obd field for using it later without accessing the
323          * pool. This is required to avoid race between sending reply to client
324          * with new SLV and cleanup server stack in which we can't guarantee
325          * that namespace is still alive. We know only that obd is alive as
326          * long as valid export is alive.
327          */
328         obd = ldlm_pl2ns(pl)->ns_obd;
329         LASSERT(obd != NULL);
330         write_lock(&obd->obd_pool_lock);
331         obd->obd_pool_slv = pl->pl_server_lock_volume;
332         write_unlock(&obd->obd_pool_lock);
333 }
334
335 /**
336  * Recalculates all pool fields on passed \a pl.
337  *
338  * \pre ->pl_lock is not locked.
339  */
340 static int ldlm_srv_pool_recalc(struct ldlm_pool *pl)
341 {
342         time_t recalc_interval_sec;
343         ENTRY;
344
345         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
346         if (recalc_interval_sec < pl->pl_recalc_period)
347                 RETURN(0);
348
349         spin_lock(&pl->pl_lock);
350         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
351         if (recalc_interval_sec < pl->pl_recalc_period) {
352                 spin_unlock(&pl->pl_lock);
353                 RETURN(0);
354         }
355         /*
356          * Recalc SLV after last period. This should be done
357          * _before_ recalculating new grant plan.
358          */
359         ldlm_pool_recalc_slv(pl);
360
361         /*
362          * Make sure that pool informed obd of last SLV changes.
363          */
364         ldlm_srv_pool_push_slv(pl);
365
366         /*
367          * Update grant_plan for new period.
368          */
369         ldlm_pool_recalc_grant_plan(pl);
370
371         pl->pl_recalc_time = cfs_time_current_sec();
372         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
373                             recalc_interval_sec);
374         spin_unlock(&pl->pl_lock);
375         RETURN(0);
376 }
377
378 /**
379  * This function is used on server side as main entry point for memory
380  * pressure handling. It decreases SLV on \a pl according to passed
381  * \a nr and \a gfp_mask.
382  *
383  * Our goal here is to decrease SLV such a way that clients hold \a nr
384  * locks smaller in next 10h.
385  */
386 static int ldlm_srv_pool_shrink(struct ldlm_pool *pl,
387                                 int nr,  gfp_t gfp_mask)
388 {
389         __u32 limit;
390
391         /*
392          * VM is asking how many entries may be potentially freed.
393          */
394         if (nr == 0)
395                 return ldlm_pool_granted(pl);
396
397         /*
398          * Client already canceled locks but server is already in shrinker
399          * and can't cancel anything. Let's catch this race.
400          */
401         if (ldlm_pool_granted(pl) == 0)
402                 RETURN(0);
403
404         spin_lock(&pl->pl_lock);
405
406         /*
407          * We want shrinker to possibly cause cancellation of @nr locks from
408          * clients or grant approximately @nr locks smaller next intervals.
409          *
410          * This is why we decreased SLV by @nr. This effect will only be as
411          * long as one re-calc interval (1s these days) and this should be
412          * enough to pass this decreased SLV to all clients. On next recalc
413          * interval pool will either increase SLV if locks load is not high
414          * or will keep on same level or even decrease again, thus, shrinker
415          * decreased SLV will affect next recalc intervals and this way will
416          * make locking load lower.
417          */
418         if (nr < pl->pl_server_lock_volume) {
419                 pl->pl_server_lock_volume = pl->pl_server_lock_volume - nr;
420         } else {
421                 limit = ldlm_pool_get_limit(pl);
422                 pl->pl_server_lock_volume = ldlm_pool_slv_min(limit);
423         }
424
425         /*
426          * Make sure that pool informed obd of last SLV changes.
427          */
428         ldlm_srv_pool_push_slv(pl);
429         spin_unlock(&pl->pl_lock);
430
431         /*
432          * We did not really free any memory here so far, it only will be
433          * freed later may be, so that we return 0 to not confuse VM.
434          */
435         return 0;
436 }
437
438 /**
439  * Setup server side pool \a pl with passed \a limit.
440  */
441 static int ldlm_srv_pool_setup(struct ldlm_pool *pl, int limit)
442 {
443         struct obd_device *obd;
444
445         obd = ldlm_pl2ns(pl)->ns_obd;
446         LASSERT(obd != NULL && obd != LP_POISON);
447         LASSERT(obd->obd_type != LP_POISON);
448         write_lock(&obd->obd_pool_lock);
449         obd->obd_pool_limit = limit;
450         write_unlock(&obd->obd_pool_lock);
451
452         ldlm_pool_set_limit(pl, limit);
453         return 0;
454 }
455
456 /**
457  * Sets SLV and Limit from ldlm_pl2ns(pl)->ns_obd tp passed \a pl.
458  */
459 static void ldlm_cli_pool_pop_slv(struct ldlm_pool *pl)
460 {
461         struct obd_device *obd;
462
463         /*
464          * Get new SLV and Limit from obd which is updated with coming
465          * RPCs.
466          */
467         obd = ldlm_pl2ns(pl)->ns_obd;
468         LASSERT(obd != NULL);
469         read_lock(&obd->obd_pool_lock);
470         pl->pl_server_lock_volume = obd->obd_pool_slv;
471         ldlm_pool_set_limit(pl, obd->obd_pool_limit);
472         read_unlock(&obd->obd_pool_lock);
473 }
474
475 /**
476  * Recalculates client size pool \a pl according to current SLV and Limit.
477  */
478 static int ldlm_cli_pool_recalc(struct ldlm_pool *pl)
479 {
480         time_t recalc_interval_sec;
481         int ret;
482         ENTRY;
483
484         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
485         if (recalc_interval_sec < pl->pl_recalc_period)
486                 RETURN(0);
487
488         spin_lock(&pl->pl_lock);
489         /*
490          * Check if we need to recalc lists now.
491          */
492         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
493         if (recalc_interval_sec < pl->pl_recalc_period) {
494                 spin_unlock(&pl->pl_lock);
495                 RETURN(0);
496         }
497
498         /*
499          * Make sure that pool knows last SLV and Limit from obd.
500          */
501         ldlm_cli_pool_pop_slv(pl);
502         spin_unlock(&pl->pl_lock);
503
504         /*
505          * Do not cancel locks in case lru resize is disabled for this ns.
506          */
507         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
508                 GOTO(out, ret = 0);
509
510         /*
511          * In the time of canceling locks on client we do not need to maintain
512          * sharp timing, we only want to cancel locks asap according to new SLV.
513          * It may be called when SLV has changed much, this is why we do not
514          * take into account pl->pl_recalc_time here.
515          */
516         ret = ldlm_cancel_lru(ldlm_pl2ns(pl), 0, LCF_ASYNC,
517                                LDLM_CANCEL_LRUR);
518
519 out:
520         spin_lock(&pl->pl_lock);
521         /*
522          * Time of LRU resizing might be longer than period,
523          * so update after LRU resizing rather than before it.
524          */
525         pl->pl_recalc_time = cfs_time_current_sec();
526         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
527                             recalc_interval_sec);
528         spin_unlock(&pl->pl_lock);
529         RETURN(ret);
530 }
531
532 /**
533  * This function is main entry point for memory pressure handling on client
534  * side.  Main goal of this function is to cancel some number of locks on
535  * passed \a pl according to \a nr and \a gfp_mask.
536  */
537 static int ldlm_cli_pool_shrink(struct ldlm_pool *pl,
538                                 int nr, gfp_t gfp_mask)
539 {
540         struct ldlm_namespace *ns;
541         int unused;
542
543         ns = ldlm_pl2ns(pl);
544
545         /*
546          * Do not cancel locks in case lru resize is disabled for this ns.
547          */
548         if (!ns_connect_lru_resize(ns))
549                 RETURN(0);
550
551         /*
552          * Make sure that pool knows last SLV and Limit from obd.
553          */
554         ldlm_cli_pool_pop_slv(pl);
555
556         spin_lock(&ns->ns_lock);
557         unused = ns->ns_nr_unused;
558         spin_unlock(&ns->ns_lock);
559
560         if (nr == 0)
561                 return (unused / 100) * sysctl_vfs_cache_pressure;
562         else
563                 return ldlm_cancel_lru(ns, nr, LCF_ASYNC, LDLM_CANCEL_SHRINK);
564 }
565
566 static struct ldlm_pool_ops ldlm_srv_pool_ops = {
567         .po_recalc = ldlm_srv_pool_recalc,
568         .po_shrink = ldlm_srv_pool_shrink,
569         .po_setup  = ldlm_srv_pool_setup
570 };
571
572 static struct ldlm_pool_ops ldlm_cli_pool_ops = {
573         .po_recalc = ldlm_cli_pool_recalc,
574         .po_shrink = ldlm_cli_pool_shrink
575 };
576
577 /**
578  * Pool recalc wrapper. Will call either client or server pool recalc callback
579  * depending what pool \a pl is used.
580  */
581 int ldlm_pool_recalc(struct ldlm_pool *pl)
582 {
583         time_t recalc_interval_sec;
584         int count;
585
586         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
587         if (recalc_interval_sec > 0) {
588                 spin_lock(&pl->pl_lock);
589                 recalc_interval_sec = cfs_time_current_sec() -
590                         pl->pl_recalc_time;
591
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                         atomic_set(&pl->pl_grant_rate, 0);
602                         atomic_set(&pl->pl_cancel_rate, 0);
603                 }
604                 spin_unlock(&pl->pl_lock);
605         }
606
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
613         recalc_interval_sec = pl->pl_recalc_time - cfs_time_current_sec() +
614                               pl->pl_recalc_period;
615         if (recalc_interval_sec <= 0) {
616                 /* DEBUG: should be re-removed after LU-4536 is fixed */
617                 CDEBUG(D_DLMTRACE, "%s: Negative interval(%ld), "
618                        "too short period(%ld)\n",
619                        pl->pl_name, recalc_interval_sec,
620                        pl->pl_recalc_period);
621
622                 /* Prevent too frequent recalculation. */
623                 recalc_interval_sec = 1;
624         }
625
626         return recalc_interval_sec;
627 }
628
629 /**
630  * Pool shrink wrapper. Will call either client or server pool recalc callback
631  * depending what pool \a pl is used.
632  */
633 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr, gfp_t gfp_mask)
634 {
635         int cancel = 0;
636
637         if (pl->pl_ops->po_shrink != NULL) {
638                 cancel = pl->pl_ops->po_shrink(pl, nr, gfp_mask);
639                 if (nr > 0) {
640                         lprocfs_counter_add(pl->pl_stats,
641                                             LDLM_POOL_SHRINK_REQTD_STAT,
642                                             nr);
643                         lprocfs_counter_add(pl->pl_stats,
644                                             LDLM_POOL_SHRINK_FREED_STAT,
645                                             cancel);
646                         CDEBUG(D_DLMTRACE, "%s: request to shrink %d locks, "
647                                "shrunk %d\n", pl->pl_name, nr, cancel);
648                 }
649         }
650         return cancel;
651 }
652
653 /**
654  * Pool setup wrapper. Will call either client or server pool recalc callback
655  * depending what pool \a pl is used.
656  *
657  * Sets passed \a limit into pool \a pl.
658  */
659 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
660 {
661         if (pl->pl_ops->po_setup != NULL)
662                 return(pl->pl_ops->po_setup(pl, limit));
663         return 0;
664 }
665
666 static int lprocfs_pool_state_seq_show(struct seq_file *m, void *unused)
667 {
668         int granted, grant_rate, cancel_rate, grant_step;
669         int grant_speed, grant_plan, lvf;
670         struct ldlm_pool *pl = m->private;
671         __u64 slv, clv;
672         __u32 limit;
673
674         spin_lock(&pl->pl_lock);
675         slv = pl->pl_server_lock_volume;
676         clv = pl->pl_client_lock_volume;
677         limit = ldlm_pool_get_limit(pl);
678         grant_plan = pl->pl_grant_plan;
679         granted = ldlm_pool_granted(pl);
680         grant_rate = atomic_read(&pl->pl_grant_rate);
681         cancel_rate = atomic_read(&pl->pl_cancel_rate);
682         grant_speed = grant_rate - cancel_rate;
683         lvf = atomic_read(&pl->pl_lock_volume_factor);
684         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
685         spin_unlock(&pl->pl_lock);
686
687         seq_printf(m, "LDLM pool state (%s):\n"
688                       "  SLV: "LPU64"\n"
689                       "  CLV: "LPU64"\n"
690                       "  LVF: %d\n",
691                       pl->pl_name, slv, clv, lvf);
692
693         if (ns_is_server(ldlm_pl2ns(pl))) {
694                 seq_printf(m, "  GSP: %d%%\n"
695                               "  GP:  %d\n",
696                               grant_step, grant_plan);
697         }
698         seq_printf(m, "  GR:  %d\n" "  CR:  %d\n" "  GS:  %d\n"
699                       "  G:   %d\n" "  L:   %d\n",
700                       grant_rate, cancel_rate, grant_speed,
701                       granted, limit);
702         return 0;
703 }
704 LPROC_SEQ_FOPS_RO(lprocfs_pool_state);
705
706 static int lprocfs_grant_speed_seq_show(struct seq_file *m, void *unused)
707 {
708         struct ldlm_pool *pl = m->private;
709         int               grant_speed;
710
711         spin_lock(&pl->pl_lock);
712         /* serialize with ldlm_pool_recalc */
713         grant_speed = atomic_read(&pl->pl_grant_rate) -
714                         atomic_read(&pl->pl_cancel_rate);
715         spin_unlock(&pl->pl_lock);
716         return lprocfs_uint_seq_show(m, &grant_speed);
717 }
718
719 LDLM_POOL_PROC_READER_SEQ_SHOW(grant_plan, int);
720 LPROC_SEQ_FOPS_RO(lprocfs_grant_plan);
721
722 LDLM_POOL_PROC_READER_SEQ_SHOW(recalc_period, int);
723 LDLM_POOL_PROC_WRITER(recalc_period, int);
724 static ssize_t lprocfs_recalc_period_seq_write(struct file *file,
725                                                const char __user *buf,
726                                                size_t len, loff_t *off)
727 {
728         struct seq_file *seq = file->private_data;
729
730         return lprocfs_wr_recalc_period(file, buf, len, seq->private);
731 }
732 LPROC_SEQ_FOPS(lprocfs_recalc_period);
733
734 LPROC_SEQ_FOPS_RO_TYPE(ldlm_pool, u64);
735 LPROC_SEQ_FOPS_RO_TYPE(ldlm_pool, atomic);
736 LPROC_SEQ_FOPS_RW_TYPE(ldlm_pool_rw, atomic);
737
738 LPROC_SEQ_FOPS_RO(lprocfs_grant_speed);
739
740 static int ldlm_pool_proc_init(struct ldlm_pool *pl)
741 {
742         struct ldlm_namespace *ns = ldlm_pl2ns(pl);
743         struct proc_dir_entry *parent_ns_proc;
744         struct lprocfs_vars pool_vars[2];
745         char *var_name = NULL;
746         int rc = 0;
747         ENTRY;
748
749         OBD_ALLOC(var_name, MAX_STRING_SIZE + 1);
750         if (!var_name)
751                 RETURN(-ENOMEM);
752
753         parent_ns_proc = ns->ns_proc_dir_entry;
754         if (parent_ns_proc == NULL) {
755                 CERROR("%s: proc entry is not initialized\n",
756                        ldlm_ns_name(ns));
757                 GOTO(out_free_name, rc = -EINVAL);
758         }
759         pl->pl_proc_dir = lprocfs_register("pool", parent_ns_proc,
760                                            NULL, NULL);
761         if (IS_ERR(pl->pl_proc_dir)) {
762                 rc = PTR_ERR(pl->pl_proc_dir);
763                 pl->pl_proc_dir = NULL;
764                 CERROR("%s: cannot create 'pool' proc entry: rc = %d\n",
765                        ldlm_ns_name(ns), rc);
766                 GOTO(out_free_name, rc);
767         }
768
769         var_name[MAX_STRING_SIZE] = '\0';
770         memset(pool_vars, 0, sizeof(pool_vars));
771         pool_vars[0].name = var_name;
772
773         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "server_lock_volume",
774                      &pl->pl_server_lock_volume, &ldlm_pool_u64_fops);
775         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "limit", &pl->pl_limit,
776                      &ldlm_pool_rw_atomic_fops);
777         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "granted",
778                      &pl->pl_granted, &ldlm_pool_atomic_fops);
779         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "grant_speed", pl,
780                      &lprocfs_grant_speed_fops);
781         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "cancel_rate",
782                      &pl->pl_cancel_rate, &ldlm_pool_atomic_fops);
783         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "grant_rate",
784                      &pl->pl_grant_rate, &ldlm_pool_atomic_fops);
785         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "grant_plan", pl,
786                      &lprocfs_grant_plan_fops);
787         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "recalc_period",
788                      pl, &lprocfs_recalc_period_fops);
789         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "lock_volume_factor",
790                      &pl->pl_lock_volume_factor, &ldlm_pool_rw_atomic_fops);
791         ldlm_add_var(&pool_vars[0], pl->pl_proc_dir, "state", pl,
792                      &lprocfs_pool_state_fops);
793
794         pl->pl_stats = lprocfs_alloc_stats(LDLM_POOL_LAST_STAT -
795                                            LDLM_POOL_FIRST_STAT, 0);
796         if (!pl->pl_stats)
797                 GOTO(out_free_name, rc = -ENOMEM);
798
799         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
800                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
801                              "granted", "locks");
802         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_STAT,
803                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
804                              "grant", "locks");
805         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_STAT,
806                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
807                              "cancel", "locks");
808         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
809                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
810                              "grant_rate", "locks/s");
811         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
812                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
813                              "cancel_rate", "locks/s");
814         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
815                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
816                              "grant_plan", "locks/s");
817         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SLV_STAT,
818                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
819                              "slv", "slv");
820         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_REQTD_STAT,
821                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
822                              "shrink_request", "locks");
823         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_FREED_STAT,
824                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
825                              "shrink_freed", "locks");
826         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_RECALC_STAT,
827                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
828                              "recalc_freed", "locks");
829         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_TIMING_STAT,
830                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
831                              "recalc_timing", "sec");
832         rc = lprocfs_register_stats(pl->pl_proc_dir, "stats", pl->pl_stats);
833
834         EXIT;
835 out_free_name:
836         OBD_FREE(var_name, MAX_STRING_SIZE + 1);
837         return rc;
838 }
839
840 static void ldlm_pool_proc_fini(struct ldlm_pool *pl)
841 {
842         if (pl->pl_stats != NULL) {
843                 lprocfs_free_stats(&pl->pl_stats);
844                 pl->pl_stats = NULL;
845         }
846         if (pl->pl_proc_dir != NULL) {
847                 lprocfs_remove(&pl->pl_proc_dir);
848                 pl->pl_proc_dir = NULL;
849         }
850 }
851
852 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
853                    int idx, ldlm_side_t client)
854 {
855         int rc;
856         ENTRY;
857
858         spin_lock_init(&pl->pl_lock);
859         atomic_set(&pl->pl_granted, 0);
860         pl->pl_recalc_time = cfs_time_current_sec();
861         atomic_set(&pl->pl_lock_volume_factor, 1);
862
863         atomic_set(&pl->pl_grant_rate, 0);
864         atomic_set(&pl->pl_cancel_rate, 0);
865         pl->pl_grant_plan = LDLM_POOL_GP(LDLM_POOL_HOST_L);
866
867         snprintf(pl->pl_name, sizeof(pl->pl_name), "ldlm-pool-%s-%d",
868                  ldlm_ns_name(ns), idx);
869
870         if (client == LDLM_NAMESPACE_SERVER) {
871                 pl->pl_ops = &ldlm_srv_pool_ops;
872                 ldlm_pool_set_limit(pl, LDLM_POOL_HOST_L);
873                 pl->pl_recalc_period = LDLM_POOL_SRV_DEF_RECALC_PERIOD;
874                 pl->pl_server_lock_volume = ldlm_pool_slv_max(LDLM_POOL_HOST_L);
875         } else {
876                 ldlm_pool_set_limit(pl, 1);
877                 pl->pl_server_lock_volume = 0;
878                 pl->pl_ops = &ldlm_cli_pool_ops;
879                 pl->pl_recalc_period = LDLM_POOL_CLI_DEF_RECALC_PERIOD;
880         }
881         pl->pl_client_lock_volume = 0;
882         rc = ldlm_pool_proc_init(pl);
883         if (rc)
884                 RETURN(rc);
885
886         CDEBUG(D_DLMTRACE, "Lock pool %s is initialized\n", pl->pl_name);
887
888         RETURN(rc);
889 }
890
891 void ldlm_pool_fini(struct ldlm_pool *pl)
892 {
893         ENTRY;
894         ldlm_pool_proc_fini(pl);
895
896         /*
897          * Pool should not be used after this point. We can't free it here as
898          * it lives in struct ldlm_namespace, but still interested in catching
899          * any abnormal using cases.
900          */
901         POISON(pl, 0x5a, sizeof(*pl));
902         EXIT;
903 }
904
905 /**
906  * Add new taken ldlm lock \a lock into pool \a pl accounting.
907  */
908 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
909 {
910         /*
911          * FLOCK locks are special in a sense that they are almost never
912          * cancelled, instead special kind of lock is used to drop them.
913          * also there is no LRU for flock locks, so no point in tracking
914          * them anyway.
915          *
916          * PLAIN locks are used by config and quota, the quantity is small
917          * and usually they are not in LRU.
918          */
919         if (lock->l_resource->lr_type == LDLM_FLOCK ||
920             lock->l_resource->lr_type == LDLM_PLAIN)
921                 return;
922
923         ldlm_reclaim_add(lock);
924
925         atomic_inc(&pl->pl_granted);
926         atomic_inc(&pl->pl_grant_rate);
927         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_GRANT_STAT);
928         /*
929          * Do not do pool recalc for client side as all locks which
930          * potentially may be canceled has already been packed into
931          * enqueue/cancel rpc. Also we do not want to run out of stack
932          * with too long call paths.
933          */
934         if (ns_is_server(ldlm_pl2ns(pl)))
935                 ldlm_pool_recalc(pl);
936 }
937
938 /**
939  * Remove ldlm lock \a lock from pool \a pl accounting.
940  */
941 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
942 {
943         /*
944          * Filter out FLOCK & PLAIN locks. Read above comment in
945          * ldlm_pool_add().
946          */
947         if (lock->l_resource->lr_type == LDLM_FLOCK ||
948             lock->l_resource->lr_type == LDLM_PLAIN)
949                 return;
950
951         ldlm_reclaim_del(lock);
952
953         LASSERT(atomic_read(&pl->pl_granted) > 0);
954         atomic_dec(&pl->pl_granted);
955         atomic_inc(&pl->pl_cancel_rate);
956
957         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_CANCEL_STAT);
958
959         if (ns_is_server(ldlm_pl2ns(pl)))
960                 ldlm_pool_recalc(pl);
961 }
962
963 /**
964  * Returns current \a pl SLV.
965  *
966  * \pre ->pl_lock is not locked.
967  */
968 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
969 {
970         __u64 slv;
971         spin_lock(&pl->pl_lock);
972         slv = pl->pl_server_lock_volume;
973         spin_unlock(&pl->pl_lock);
974         return slv;
975 }
976
977 /**
978  * Sets passed \a slv to \a pl.
979  *
980  * \pre ->pl_lock is not locked.
981  */
982 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
983 {
984         spin_lock(&pl->pl_lock);
985         pl->pl_server_lock_volume = slv;
986         spin_unlock(&pl->pl_lock);
987 }
988
989 /**
990  * Returns current \a pl CLV.
991  *
992  * \pre ->pl_lock is not locked.
993  */
994 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
995 {
996         __u64 slv;
997         spin_lock(&pl->pl_lock);
998         slv = pl->pl_client_lock_volume;
999         spin_unlock(&pl->pl_lock);
1000         return slv;
1001 }
1002
1003 /**
1004  * Sets passed \a clv to \a pl.
1005  *
1006  * \pre ->pl_lock is not locked.
1007  */
1008 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1009 {
1010         spin_lock(&pl->pl_lock);
1011         pl->pl_client_lock_volume = clv;
1012         spin_unlock(&pl->pl_lock);
1013 }
1014
1015 /**
1016  * Returns current \a pl limit.
1017  */
1018 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1019 {
1020         return atomic_read(&pl->pl_limit);
1021 }
1022
1023 /**
1024  * Sets passed \a limit to \a pl.
1025  */
1026 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1027 {
1028         atomic_set(&pl->pl_limit, limit);
1029 }
1030
1031 /**
1032  * Returns current LVF from \a pl.
1033  */
1034 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1035 {
1036         return atomic_read(&pl->pl_lock_volume_factor);
1037 }
1038
1039 static struct ptlrpc_thread *ldlm_pools_thread;
1040 static struct shrinker *ldlm_pools_srv_shrinker;
1041 static struct shrinker *ldlm_pools_cli_shrinker;
1042 static struct completion ldlm_pools_comp;
1043
1044 /*
1045 * count locks from all namespaces (if possible). Returns number of
1046 * cached locks.
1047 */
1048 static unsigned long ldlm_pools_count(ldlm_side_t client, gfp_t gfp_mask)
1049 {
1050         unsigned long total = 0;
1051         int nr_ns;
1052         struct ldlm_namespace *ns;
1053         struct ldlm_namespace *ns_old = NULL; /* loop detection */
1054         void *cookie;
1055
1056         if (client == LDLM_NAMESPACE_CLIENT && !(gfp_mask & __GFP_FS))
1057                 return 0;
1058
1059         CDEBUG(D_DLMTRACE, "Request to count %s locks from all pools\n",
1060                client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1061
1062         cookie = cl_env_reenter();
1063
1064         /*
1065          * Find out how many resources we may release.
1066          */
1067         for (nr_ns = ldlm_namespace_nr_read(client);
1068              nr_ns > 0; nr_ns--) {
1069                 mutex_lock(ldlm_namespace_lock(client));
1070                 if (list_empty(ldlm_namespace_list(client))) {
1071                         mutex_unlock(ldlm_namespace_lock(client));
1072                         cl_env_reexit(cookie);
1073                         return 0;
1074                 }
1075                 ns = ldlm_namespace_first_locked(client);
1076
1077                 if (ns == ns_old) {
1078                         mutex_unlock(ldlm_namespace_lock(client));
1079                         break;
1080                 }
1081
1082                 if (ldlm_ns_empty(ns)) {
1083                         ldlm_namespace_move_to_inactive_locked(ns, client);
1084                         mutex_unlock(ldlm_namespace_lock(client));
1085                         continue;
1086                 }
1087
1088                 if (ns_old == NULL)
1089                         ns_old = ns;
1090
1091                 ldlm_namespace_get(ns);
1092                 ldlm_namespace_move_to_active_locked(ns, client);
1093                 mutex_unlock(ldlm_namespace_lock(client));
1094                 total += ldlm_pool_shrink(&ns->ns_pool, 0, gfp_mask);
1095                 ldlm_namespace_put(ns);
1096         }
1097
1098         cl_env_reexit(cookie);
1099         return total;
1100 }
1101
1102 static unsigned long ldlm_pools_scan(ldlm_side_t client, int nr,
1103                                      gfp_t gfp_mask)
1104 {
1105         unsigned long freed = 0;
1106         int tmp, nr_ns;
1107         struct ldlm_namespace *ns;
1108         void *cookie;
1109
1110         if (client == LDLM_NAMESPACE_CLIENT && !(gfp_mask & __GFP_FS))
1111                 return -1;
1112
1113         cookie = cl_env_reenter();
1114
1115         /*
1116          * Shrink at least ldlm_namespace_nr_read(client) namespaces.
1117          */
1118         for (tmp = nr_ns = ldlm_namespace_nr_read(client);
1119              tmp > 0; tmp--) {
1120                 int cancel, nr_locks;
1121
1122                 /*
1123                  * Do not call shrink under ldlm_namespace_lock(client)
1124                 */
1125                 mutex_lock(ldlm_namespace_lock(client));
1126                 if (list_empty(ldlm_namespace_list(client))) {
1127                         mutex_unlock(ldlm_namespace_lock(client));
1128                         break;
1129                 }
1130                 ns = ldlm_namespace_first_locked(client);
1131                 ldlm_namespace_get(ns);
1132                 ldlm_namespace_move_to_active_locked(ns, client);
1133                 mutex_unlock(ldlm_namespace_lock(client));
1134
1135                 nr_locks = ldlm_pool_granted(&ns->ns_pool);
1136                 /*
1137                  * We use to shrink propotionally but with new shrinker API,
1138                  * we lost the total number of freeable locks.
1139                  */
1140                 cancel = 1 + min_t(int, nr_locks, nr / nr_ns);
1141                 freed += ldlm_pool_shrink(&ns->ns_pool, cancel, gfp_mask);
1142                 ldlm_namespace_put(ns);
1143         }
1144         cl_env_reexit(cookie);
1145         /*
1146          * we only decrease the SLV in server pools shrinker, return
1147          * SHRINK_STOP to kernel to avoid needless loop. LU-1128
1148          */
1149         return (client == LDLM_NAMESPACE_SERVER) ? SHRINK_STOP : freed;
1150 }
1151
1152 #ifdef HAVE_SHRINKER_COUNT
1153 static unsigned long ldlm_pools_srv_count(struct shrinker *s,
1154                                           struct shrink_control *sc)
1155 {
1156         return ldlm_pools_count(LDLM_NAMESPACE_SERVER, sc->gfp_mask);
1157 }
1158
1159 static unsigned long ldlm_pools_srv_scan(struct shrinker *s,
1160                                          struct shrink_control *sc)
1161 {
1162         return ldlm_pools_scan(LDLM_NAMESPACE_SERVER, sc->nr_to_scan,
1163                                sc->gfp_mask);
1164 }
1165
1166 static unsigned long ldlm_pools_cli_count(struct shrinker *s, struct shrink_control *sc)
1167 {
1168         return ldlm_pools_count(LDLM_NAMESPACE_CLIENT, sc->gfp_mask);
1169 }
1170
1171 static unsigned long ldlm_pools_cli_scan(struct shrinker *s,
1172                                          struct shrink_control *sc)
1173 {
1174         return ldlm_pools_scan(LDLM_NAMESPACE_CLIENT, sc->nr_to_scan,
1175                                sc->gfp_mask);
1176 }
1177
1178 #else
1179 /*
1180  * Cancel \a nr locks from all namespaces (if possible). Returns number of
1181  * cached locks after shrink is finished. All namespaces are asked to
1182  * cancel approximately equal amount of locks to keep balancing.
1183  */
1184 static int ldlm_pools_shrink(ldlm_side_t client, int nr,
1185                              gfp_t gfp_mask)
1186 {
1187         unsigned long total = 0;
1188
1189         if (client == LDLM_NAMESPACE_CLIENT && nr != 0 &&
1190             !(gfp_mask & __GFP_FS))
1191                 return -1;
1192
1193         CDEBUG(D_DLMTRACE, "Request to shrink %d %s locks from all pools\n",
1194                nr, client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1195
1196         total = ldlm_pools_count(client, gfp_mask);
1197
1198         if (nr == 0 || total == 0)
1199                 return total;
1200
1201         return ldlm_pools_scan(client, nr, gfp_mask);
1202 }
1203
1204 static int ldlm_pools_srv_shrink(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask))
1205 {
1206         return ldlm_pools_shrink(LDLM_NAMESPACE_SERVER,
1207                                  shrink_param(sc, nr_to_scan),
1208                                  shrink_param(sc, gfp_mask));
1209 }
1210
1211 static int ldlm_pools_cli_shrink(SHRINKER_ARGS(sc, nr_to_scan, gfp_mask))
1212 {
1213         return ldlm_pools_shrink(LDLM_NAMESPACE_CLIENT,
1214                                  shrink_param(sc, nr_to_scan),
1215                                  shrink_param(sc, gfp_mask));
1216 }
1217
1218 #endif /* HAVE_SHRINKER_COUNT */
1219
1220 int ldlm_pools_recalc(ldlm_side_t client)
1221 {
1222         unsigned long nr_l = 0, nr_p = 0, l;
1223         struct ldlm_namespace *ns;
1224         struct ldlm_namespace *ns_old = NULL;
1225         int nr, equal = 0;
1226         int time = 50; /* seconds of sleep if no active namespaces */
1227
1228         /*
1229          * No need to setup pool limit for client pools.
1230          */
1231         if (client == LDLM_NAMESPACE_SERVER) {
1232                 /*
1233                  * Check all modest namespaces first.
1234                  */
1235                 mutex_lock(ldlm_namespace_lock(client));
1236                 list_for_each_entry(ns, ldlm_namespace_list(client),
1237                                     ns_list_chain)
1238                 {
1239                         if (ns->ns_appetite != LDLM_NAMESPACE_MODEST)
1240                                 continue;
1241
1242                         l = ldlm_pool_granted(&ns->ns_pool);
1243                         if (l == 0)
1244                                 l = 1;
1245
1246                         /*
1247                          * Set the modest pools limit equal to their avg granted
1248                          * locks + ~6%.
1249                          */
1250                         l += dru(l, LDLM_POOLS_MODEST_MARGIN_SHIFT, 0);
1251                         ldlm_pool_setup(&ns->ns_pool, l);
1252                         nr_l += l;
1253                         nr_p++;
1254                 }
1255
1256                 /*
1257                  * Make sure that modest namespaces did not eat more that 2/3
1258                  * of limit.
1259                  */
1260                 if (nr_l >= 2 * (LDLM_POOL_HOST_L / 3)) {
1261                         CWARN("\"Modest\" pools eat out 2/3 of server locks "
1262                               "limit (%lu of %lu). This means that you have too "
1263                               "many clients for this amount of server RAM. "
1264                               "Upgrade server!\n", nr_l, LDLM_POOL_HOST_L);
1265                         equal = 1;
1266                 }
1267
1268                 /*
1269                  * The rest is given to greedy namespaces.
1270                  */
1271                 list_for_each_entry(ns, ldlm_namespace_list(client),
1272                                     ns_list_chain)
1273                 {
1274                         if (!equal && ns->ns_appetite != LDLM_NAMESPACE_GREEDY)
1275                                 continue;
1276
1277                         if (equal) {
1278                                 /*
1279                                  * In the case 2/3 locks are eaten out by
1280                                  * modest pools, we re-setup equal limit
1281                                  * for _all_ pools.
1282                                  */
1283                                 l = LDLM_POOL_HOST_L /
1284                                         ldlm_namespace_nr_read(client);
1285                         } else {
1286                                 /*
1287                                  * All the rest of greedy pools will have
1288                                  * all locks in equal parts.
1289                                  */
1290                                 l = (LDLM_POOL_HOST_L - nr_l) /
1291                                         (ldlm_namespace_nr_read(client) -
1292                                          nr_p);
1293                         }
1294                         ldlm_pool_setup(&ns->ns_pool, l);
1295                 }
1296                 mutex_unlock(ldlm_namespace_lock(client));
1297         }
1298
1299         /*
1300          * Recalc at least ldlm_namespace_nr(client) namespaces.
1301          */
1302         for (nr = ldlm_namespace_nr_read(client); nr > 0; nr--) {
1303                 int     skip;
1304                 /*
1305                  * Lock the list, get first @ns in the list, getref, move it
1306                  * to the tail, unlock and call pool recalc. This way we avoid
1307                  * calling recalc under @ns lock what is really good as we get
1308                  * rid of potential deadlock on client nodes when canceling
1309                  * locks synchronously.
1310                  */
1311                 mutex_lock(ldlm_namespace_lock(client));
1312                 if (list_empty(ldlm_namespace_list(client))) {
1313                         mutex_unlock(ldlm_namespace_lock(client));
1314                         break;
1315                 }
1316                 ns = ldlm_namespace_first_locked(client);
1317
1318                 if (ns_old == ns) { /* Full pass complete */
1319                         mutex_unlock(ldlm_namespace_lock(client));
1320                         break;
1321                 }
1322
1323                 /* We got an empty namespace, need to move it back to inactive
1324                  * list.
1325                  * The race with parallel resource creation is fine:
1326                  * - If they do namespace_get before our check, we fail the
1327                  *   check and they move this item to the end of the list anyway
1328                  * - If we do the check and then they do namespace_get, then
1329                  *   we move the namespace to inactive and they will move
1330                  *   it back to active (synchronised by the lock, so no clash
1331                  *   there).
1332                  */
1333                 if (ldlm_ns_empty(ns)) {
1334                         ldlm_namespace_move_to_inactive_locked(ns, client);
1335                         mutex_unlock(ldlm_namespace_lock(client));
1336                         continue;
1337                 }
1338
1339                 if (ns_old == NULL)
1340                         ns_old = ns;
1341
1342                 spin_lock(&ns->ns_lock);
1343                 /*
1344                  * skip ns which is being freed, and we don't want to increase
1345                  * its refcount again, not even temporarily. bz21519 & LU-499.
1346                  */
1347                 if (ns->ns_stopping) {
1348                         skip = 1;
1349                 } else {
1350                         skip = 0;
1351                         ldlm_namespace_get(ns);
1352                 }
1353                 spin_unlock(&ns->ns_lock);
1354
1355                 ldlm_namespace_move_to_active_locked(ns, client);
1356                 mutex_unlock(ldlm_namespace_lock(client));
1357
1358                 /*
1359                  * After setup is done - recalc the pool.
1360                  */
1361                 if (!skip) {
1362                         int ttime = ldlm_pool_recalc(&ns->ns_pool);
1363
1364                         if (ttime < time)
1365                                 time = ttime;
1366
1367                         ldlm_namespace_put(ns);
1368                 }
1369         }
1370         return time;
1371 }
1372
1373 static int ldlm_pools_thread_main(void *arg)
1374 {
1375         struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
1376         int s_time, c_time;
1377         ENTRY;
1378
1379         thread_set_flags(thread, SVC_RUNNING);
1380         wake_up(&thread->t_ctl_waitq);
1381
1382         CDEBUG(D_DLMTRACE, "%s: pool thread starting, process %d\n",
1383                "ldlm_poold", current_pid());
1384
1385         while (1) {
1386                 struct l_wait_info lwi;
1387
1388                 /*
1389                  * Recal all pools on this tick.
1390                  */
1391                 s_time = ldlm_pools_recalc(LDLM_NAMESPACE_SERVER);
1392                 c_time = ldlm_pools_recalc(LDLM_NAMESPACE_CLIENT);
1393
1394                 /*
1395                  * Wait until the next check time, or until we're
1396                  * stopped.
1397                  */
1398                 lwi = LWI_TIMEOUT(cfs_time_seconds(min(s_time, c_time)),
1399                                   NULL, NULL);
1400                 l_wait_event(thread->t_ctl_waitq,
1401                              thread_is_stopping(thread) ||
1402                              thread_is_event(thread),
1403                              &lwi);
1404
1405                 if (thread_test_and_clear_flags(thread, SVC_STOPPING))
1406                         break;
1407                 else
1408                         thread_test_and_clear_flags(thread, SVC_EVENT);
1409         }
1410
1411         thread_set_flags(thread, SVC_STOPPED);
1412         wake_up(&thread->t_ctl_waitq);
1413
1414         CDEBUG(D_DLMTRACE, "%s: pool thread exiting, process %d\n",
1415                 "ldlm_poold", current_pid());
1416
1417         complete_and_exit(&ldlm_pools_comp, 0);
1418 }
1419
1420 static int ldlm_pools_thread_start(void)
1421 {
1422         struct l_wait_info lwi = { 0 };
1423         struct task_struct *task;
1424         ENTRY;
1425
1426         if (ldlm_pools_thread != NULL)
1427                 RETURN(-EALREADY);
1428
1429         OBD_ALLOC_PTR(ldlm_pools_thread);
1430         if (ldlm_pools_thread == NULL)
1431                 RETURN(-ENOMEM);
1432
1433         init_completion(&ldlm_pools_comp);
1434         init_waitqueue_head(&ldlm_pools_thread->t_ctl_waitq);
1435
1436         task = kthread_run(ldlm_pools_thread_main, ldlm_pools_thread,
1437                            "ldlm_poold");
1438         if (IS_ERR(task)) {
1439                 CERROR("Can't start pool thread, error %ld\n", PTR_ERR(task));
1440                 OBD_FREE(ldlm_pools_thread, sizeof(*ldlm_pools_thread));
1441                 ldlm_pools_thread = NULL;
1442                 RETURN(PTR_ERR(task));
1443         }
1444         l_wait_event(ldlm_pools_thread->t_ctl_waitq,
1445                      thread_is_running(ldlm_pools_thread), &lwi);
1446         RETURN(0);
1447 }
1448
1449 static void ldlm_pools_thread_stop(void)
1450 {
1451         ENTRY;
1452
1453         if (ldlm_pools_thread == NULL) {
1454                 EXIT;
1455                 return;
1456         }
1457
1458         thread_set_flags(ldlm_pools_thread, SVC_STOPPING);
1459         wake_up(&ldlm_pools_thread->t_ctl_waitq);
1460
1461         /*
1462          * Make sure that pools thread is finished before freeing @thread.
1463          * This fixes possible race and oops due to accessing freed memory
1464          * in pools thread.
1465          */
1466         wait_for_completion(&ldlm_pools_comp);
1467         OBD_FREE_PTR(ldlm_pools_thread);
1468         ldlm_pools_thread = NULL;
1469         EXIT;
1470 }
1471
1472 int ldlm_pools_init(void)
1473 {
1474         int rc;
1475         DEF_SHRINKER_VAR(shsvar, ldlm_pools_srv_shrink,
1476                          ldlm_pools_srv_count, ldlm_pools_srv_scan);
1477         DEF_SHRINKER_VAR(shcvar, ldlm_pools_cli_shrink,
1478                          ldlm_pools_cli_count, ldlm_pools_cli_scan);
1479         ENTRY;
1480
1481         rc = ldlm_pools_thread_start();
1482         if (rc == 0) {
1483                 ldlm_pools_srv_shrinker =
1484                         set_shrinker(DEFAULT_SEEKS, &shsvar);
1485                 ldlm_pools_cli_shrinker =
1486                         set_shrinker(DEFAULT_SEEKS, &shcvar);
1487         }
1488         RETURN(rc);
1489 }
1490
1491 void ldlm_pools_fini(void)
1492 {
1493         if (ldlm_pools_srv_shrinker != NULL) {
1494                 remove_shrinker(ldlm_pools_srv_shrinker);
1495                 ldlm_pools_srv_shrinker = NULL;
1496         }
1497         if (ldlm_pools_cli_shrinker != NULL) {
1498                 remove_shrinker(ldlm_pools_cli_shrinker);
1499                 ldlm_pools_cli_shrinker = NULL;
1500         }
1501         ldlm_pools_thread_stop();
1502 }
1503
1504 #else /* !HAVE_LRU_RESIZE_SUPPORT */
1505 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
1506 {
1507         return 0;
1508 }
1509
1510 int ldlm_pool_recalc(struct ldlm_pool *pl)
1511 {
1512         return 0;
1513 }
1514
1515 int ldlm_pool_shrink(struct ldlm_pool *pl,
1516                      int nr, gfp_t gfp_mask)
1517 {
1518         return 0;
1519 }
1520
1521 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1522                    int idx, ldlm_side_t client)
1523 {
1524         return 0;
1525 }
1526
1527 void ldlm_pool_fini(struct ldlm_pool *pl)
1528 {
1529         return;
1530 }
1531
1532 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
1533 {
1534         return;
1535 }
1536
1537 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
1538 {
1539         return;
1540 }
1541
1542 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
1543 {
1544         return 1;
1545 }
1546
1547 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
1548 {
1549         return;
1550 }
1551
1552 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
1553 {
1554         return 1;
1555 }
1556
1557 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1558 {
1559         return;
1560 }
1561
1562 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1563 {
1564         return 0;
1565 }
1566
1567 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1568 {
1569         return;
1570 }
1571
1572 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1573 {
1574         return 0;
1575 }
1576
1577 int ldlm_pools_init(void)
1578 {
1579         return 0;
1580 }
1581
1582 void ldlm_pools_fini(void)
1583 {
1584         return;
1585 }
1586
1587 int ldlm_pools_recalc(ldlm_side_t client)
1588 {
1589         return 0;
1590 }
1591 #endif /* HAVE_LRU_RESIZE_SUPPORT */