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