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