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