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