Whamcloud - gitweb
b=21882 handle SLV==1 on client side
[fs/lustre-release.git] / lustre / ldlm / ldlm_pool.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
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 #ifdef __KERNEL__
101 # include <lustre_dlm.h>
102 #else
103 # include <liblustre.h>
104 #endif
105
106 #include <cl_object.h>
107
108 #include <obd_class.h>
109 #include <obd_support.h>
110 #include "ldlm_internal.h"
111
112 #ifdef HAVE_LRU_RESIZE_SUPPORT
113
114 /*
115  * 50 ldlm locks for 1MB of RAM.
116  */
117 #define LDLM_POOL_HOST_L ((CFS_NUM_CACHEPAGES >> (20 - CFS_PAGE_SHIFT)) * 50)
118
119 /*
120  * Maximal possible grant step plan in %.
121  */
122 #define LDLM_POOL_MAX_GSP (30)
123
124 /*
125  * Minimal possible grant step plan in %.
126  */
127 #define LDLM_POOL_MIN_GSP (1)
128
129 /*
130  * This controls the speed of reaching LDLM_POOL_MAX_GSP
131  * with increasing thread period.
132  */
133 #define LDLM_POOL_GSP_STEP_SHIFT (2)
134
135 /*
136  * LDLM_POOL_GSP% of all locks is default GP.
137  */
138 #define LDLM_POOL_GP(L)   (((L) * LDLM_POOL_MAX_GSP) / 100)
139
140 /*
141  * Max age for locks on clients.
142  */
143 #define LDLM_POOL_MAX_AGE (36000)
144
145 /*
146  * The granularity of SLV calculation.
147  */
148 #define LDLM_POOL_SLV_SHIFT (10)
149
150 #ifdef __KERNEL__
151 extern cfs_proc_dir_entry_t *ldlm_ns_proc_dir;
152 #endif
153
154 static inline __u64 dru(__u64 val, __u32 shift, int round_up)
155 {
156         return (val + (round_up ? (1 << shift) - 1 : 0)) >> shift;
157 }
158
159 static inline __u64 ldlm_pool_slv_max(__u32 L)
160 {
161         /*
162          * Allow to have all locks for 1 client for 10 hrs.
163          * Formula is the following: limit * 10h / 1 client.
164          */
165         __u64 lim = (__u64)L *  LDLM_POOL_MAX_AGE / 1;
166         return lim;
167 }
168
169 static inline __u64 ldlm_pool_slv_min(__u32 L)
170 {
171         return 1;
172 }
173
174 enum {
175         LDLM_POOL_FIRST_STAT = 0,
176         LDLM_POOL_GRANTED_STAT = LDLM_POOL_FIRST_STAT,
177         LDLM_POOL_GRANT_STAT,
178         LDLM_POOL_CANCEL_STAT,
179         LDLM_POOL_GRANT_RATE_STAT,
180         LDLM_POOL_CANCEL_RATE_STAT,
181         LDLM_POOL_GRANT_PLAN_STAT,
182         LDLM_POOL_SLV_STAT,
183         LDLM_POOL_SHRINK_REQTD_STAT,
184         LDLM_POOL_SHRINK_FREED_STAT,
185         LDLM_POOL_RECALC_STAT,
186         LDLM_POOL_TIMING_STAT,
187         LDLM_POOL_LAST_STAT
188 };
189
190 static inline struct ldlm_namespace *ldlm_pl2ns(struct ldlm_pool *pl)
191 {
192         return container_of(pl, struct ldlm_namespace, ns_pool);
193 }
194
195 /**
196  * Calculates suggested grant_step in % of available locks for passed
197  * \a period. This is later used in grant_plan calculations.
198  */
199 static inline int ldlm_pool_t2gsp(unsigned int t)
200 {
201         /*
202          * This yields 1% grant step for anything below LDLM_POOL_GSP_STEP
203          * and up to 30% for anything higher than LDLM_POOL_GSP_STEP.
204          *
205          * How this will affect execution is the following:
206          *
207          * - for thread period 1s we will have grant_step 1% which good from
208          * pov of taking some load off from server and push it out to clients.
209          * This is like that because 1% for grant_step means that server will
210          * not allow clients to get lots of locks in short period of time and
211          * keep all old locks in their caches. Clients will always have to
212          * get some locks back if they want to take some new;
213          *
214          * - for thread period 10s (which is default) we will have 23% which
215          * means that clients will have enough of room to take some new locks
216          * without getting some back. All locks from this 23% which were not
217          * taken by clients in current period will contribute in SLV growing.
218          * SLV growing means more locks cached on clients until limit or grant
219          * plan is reached.
220          */
221         return LDLM_POOL_MAX_GSP -
222                 ((LDLM_POOL_MAX_GSP - LDLM_POOL_MIN_GSP) >>
223                  (t >> LDLM_POOL_GSP_STEP_SHIFT));
224 }
225
226 /**
227  * Recalculates next grant limit on passed \a pl.
228  *
229  * \pre ->pl_lock is locked.
230  */
231 static inline void ldlm_pool_recalc_grant_plan(struct ldlm_pool *pl)
232 {
233         int granted, grant_step, limit;
234
235         limit = ldlm_pool_get_limit(pl);
236         granted = cfs_atomic_read(&pl->pl_granted);
237
238         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
239         grant_step = ((limit - granted) * grant_step) / 100;
240         pl->pl_grant_plan = granted + grant_step;
241 }
242
243 /**
244  * Recalculates next SLV on passed \a pl.
245  *
246  * \pre ->pl_lock is locked.
247  */
248 static inline void ldlm_pool_recalc_slv(struct ldlm_pool *pl)
249 {
250         int granted;
251         int grant_plan;
252         int round_up;
253         __u64 slv;
254         __u64 slv_factor;
255         __u64 grant_usage;
256         __u32 limit;
257
258         slv = pl->pl_server_lock_volume;
259         grant_plan = pl->pl_grant_plan;
260         limit = ldlm_pool_get_limit(pl);
261         granted = cfs_atomic_read(&pl->pl_granted);
262         round_up = granted < limit;
263
264         grant_usage = max_t(int, limit - (granted - grant_plan), 1);
265
266         /*
267          * Find out SLV change factor which is the ratio of grant usage
268          * from limit. SLV changes as fast as the ratio of grant plan
269          * consumption. The more locks from grant plan are not consumed
270          * by clients in last interval (idle time), the faster grows
271          * SLV. And the opposite, the more grant plan is over-consumed
272          * (load time) the faster drops SLV.
273          */
274         slv_factor = (grant_usage << LDLM_POOL_SLV_SHIFT);
275         do_div(slv_factor, limit);
276         if (2 * abs(granted - limit) > limit) {
277                 slv_factor *= slv_factor;
278                 slv_factor = dru(slv_factor, LDLM_POOL_SLV_SHIFT, round_up);
279         }
280         slv = slv * slv_factor;
281         slv = dru(slv, LDLM_POOL_SLV_SHIFT, round_up);
282
283         if (slv > ldlm_pool_slv_max(limit)) {
284                 slv = ldlm_pool_slv_max(limit);
285         } else if (slv < ldlm_pool_slv_min(limit)) {
286                 slv = ldlm_pool_slv_min(limit);
287         }
288
289         pl->pl_server_lock_volume = slv;
290 }
291
292 /**
293  * Recalculates next stats on passed \a pl.
294  *
295  * \pre ->pl_lock is locked.
296  */
297 static inline void ldlm_pool_recalc_stats(struct ldlm_pool *pl)
298 {
299         int grant_plan = pl->pl_grant_plan;
300         __u64 slv = pl->pl_server_lock_volume;
301         int granted = cfs_atomic_read(&pl->pl_granted);
302         int grant_rate = cfs_atomic_read(&pl->pl_grant_rate);
303         int cancel_rate = cfs_atomic_read(&pl->pl_cancel_rate);
304
305         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_SLV_STAT,
306                             slv);
307         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
308                             granted);
309         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
310                             grant_rate);
311         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
312                             grant_plan);
313         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
314                             cancel_rate);
315 }
316
317 /**
318  * Sets current SLV into obd accessible via ldlm_pl2ns(pl)->ns_obd.
319  */
320 static void ldlm_srv_pool_push_slv(struct ldlm_pool *pl)
321 {
322         struct obd_device *obd;
323
324         /*
325          * Set new SLV in obd field for using it later without accessing the
326          * pool. This is required to avoid race between sending reply to client
327          * with new SLV and cleanup server stack in which we can't guarantee
328          * that namespace is still alive. We know only that obd is alive as
329          * long as valid export is alive.
330          */
331         obd = ldlm_pl2ns(pl)->ns_obd;
332         LASSERT(obd != NULL);
333         cfs_write_lock(&obd->obd_pool_lock);
334         obd->obd_pool_slv = pl->pl_server_lock_volume;
335         cfs_write_unlock(&obd->obd_pool_lock);
336 }
337
338 /**
339  * Recalculates all pool fields on passed \a pl.
340  *
341  * \pre ->pl_lock is not locked.
342  */
343 static int ldlm_srv_pool_recalc(struct ldlm_pool *pl)
344 {
345         time_t recalc_interval_sec;
346         ENTRY;
347
348         cfs_spin_lock(&pl->pl_lock);
349         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
350         if (recalc_interval_sec >= pl->pl_recalc_period) {
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 = cfs_time_current_sec();
368                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
369                                     recalc_interval_sec);
370         }
371
372         cfs_spin_unlock(&pl->pl_lock);
373         RETURN(0);
374 }
375
376 /**
377  * This function is used on server side as main entry point for memory
378  * pressure handling. It decreases SLV on \a pl according to passed
379  * \a nr and \a gfp_mask.
380  *
381  * Our goal here is to decrease SLV such a way that clients hold \a nr
382  * locks smaller in next 10h.
383  */
384 static int ldlm_srv_pool_shrink(struct ldlm_pool *pl,
385                                 int nr, unsigned int gfp_mask)
386 {
387         __u32 limit;
388
389         /*
390          * VM is asking how many entries may be potentially freed.
391          */
392         if (nr == 0)
393                 return cfs_atomic_read(&pl->pl_granted);
394
395         /*
396          * Client already canceled locks but server is already in shrinker
397          * and can't cancel anything. Let's catch this race.
398          */
399         if (cfs_atomic_read(&pl->pl_granted) == 0)
400                 RETURN(0);
401
402         cfs_spin_lock(&pl->pl_lock);
403
404         /*
405          * We want shrinker to possibly cause cancellation of @nr locks from
406          * clients or grant approximately @nr locks smaller next intervals.
407          *
408          * This is why we decreased SLV by @nr. This effect will only be as
409          * long as one re-calc interval (1s these days) and this should be
410          * enough to pass this decreased SLV to all clients. On next recalc
411          * interval pool will either increase SLV if locks load is not high
412          * or will keep on same level or even decrease again, thus, shrinker
413          * decreased SLV will affect next recalc intervals and this way will
414          * make locking load lower.
415          */
416         if (nr < pl->pl_server_lock_volume) {
417                 pl->pl_server_lock_volume = pl->pl_server_lock_volume - nr;
418         } else {
419                 limit = ldlm_pool_get_limit(pl);
420                 pl->pl_server_lock_volume = ldlm_pool_slv_min(limit);
421         }
422
423         /*
424          * Make sure that pool informed obd of last SLV changes.
425          */
426         ldlm_srv_pool_push_slv(pl);
427         cfs_spin_unlock(&pl->pl_lock);
428
429         /*
430          * We did not really free any memory here so far, it only will be
431          * freed later may be, so that we return 0 to not confuse VM.
432          */
433         return 0;
434 }
435
436 /**
437  * Setup server side pool \a pl with passed \a limit.
438  */
439 static int ldlm_srv_pool_setup(struct ldlm_pool *pl, int limit)
440 {
441         struct obd_device *obd;
442         ENTRY;
443
444         obd = ldlm_pl2ns(pl)->ns_obd;
445         LASSERT(obd != NULL && obd != LP_POISON);
446         LASSERT(obd->obd_type != LP_POISON);
447         cfs_write_lock(&obd->obd_pool_lock);
448         obd->obd_pool_limit = limit;
449         cfs_write_unlock(&obd->obd_pool_lock);
450
451         ldlm_pool_set_limit(pl, limit);
452         RETURN(0);
453 }
454
455 /**
456  * Sets SLV and Limit from ldlm_pl2ns(pl)->ns_obd tp passed \a pl.
457  */
458 static void ldlm_cli_pool_pop_slv(struct ldlm_pool *pl)
459 {
460         struct obd_device *obd;
461
462         /*
463          * Get new SLV and Limit from obd which is updated with coming
464          * RPCs.
465          */
466         obd = ldlm_pl2ns(pl)->ns_obd;
467         LASSERT(obd != NULL);
468         cfs_read_lock(&obd->obd_pool_lock);
469         pl->pl_server_lock_volume = obd->obd_pool_slv;
470         ldlm_pool_set_limit(pl, obd->obd_pool_limit);
471         cfs_read_unlock(&obd->obd_pool_lock);
472 }
473
474 /**
475  * Recalculates client size pool \a pl according to current SLV and Limit.
476  */
477 static int ldlm_cli_pool_recalc(struct ldlm_pool *pl)
478 {
479         time_t recalc_interval_sec;
480         ENTRY;
481
482         cfs_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                 cfs_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
497         pl->pl_recalc_time = cfs_time_current_sec();
498         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
499                             recalc_interval_sec);
500         cfs_spin_unlock(&pl->pl_lock);
501
502         /*
503          * Do not cancel locks in case lru resize is disabled for this ns.
504          */
505         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
506                 RETURN(0);
507
508         /*
509          * In the time of canceling locks on client we do not need to maintain
510          * sharp timing, we only want to cancel locks asap according to new SLV.
511          * It may be called when SLV has changed much, this is why we do not
512          * take into account pl->pl_recalc_time here.
513          */
514         RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), 0, LDLM_SYNC, 
515                                LDLM_CANCEL_LRUR));
516 }
517
518 /**
519  * This function is main entry point for memory pressure handling on client
520  * side.  Main goal of this function is to cancel some number of locks on
521  * passed \a pl according to \a nr and \a gfp_mask.
522  */
523 static int ldlm_cli_pool_shrink(struct ldlm_pool *pl,
524                                 int nr, unsigned int gfp_mask)
525 {
526         struct ldlm_namespace *ns;
527         int canceled = 0, unused;
528
529         ns = ldlm_pl2ns(pl);
530
531         /*
532          * Do not cancel locks in case lru resize is disabled for this ns.
533          */
534         if (!ns_connect_lru_resize(ns))
535                 RETURN(0);
536
537         /*
538          * Make sure that pool knows last SLV and Limit from obd.
539          */
540         ldlm_cli_pool_pop_slv(pl);
541
542         cfs_spin_lock(&ns->ns_unused_lock);
543         unused = ns->ns_nr_unused;
544         cfs_spin_unlock(&ns->ns_unused_lock);
545         
546         if (nr) {
547                 canceled = ldlm_cancel_lru(ns, nr, LDLM_SYNC, 
548                                            LDLM_CANCEL_SHRINK);
549         }
550 #ifdef __KERNEL__
551         /*
552          * Return the number of potentially reclaimable locks.
553          */
554         return ((unused - canceled) / 100) * sysctl_vfs_cache_pressure;
555 #else
556         return unused - canceled;
557 #endif
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         cfs_spin_lock(&pl->pl_lock);
581         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
582         if (recalc_interval_sec > 0) {
583                 /*
584                  * Update pool statistics every 1s.
585                  */
586                 ldlm_pool_recalc_stats(pl);
587
588                 /*
589                  * Zero out all rates and speed for the last period.
590                  */
591                 cfs_atomic_set(&pl->pl_grant_rate, 0);
592                 cfs_atomic_set(&pl->pl_cancel_rate, 0);
593                 cfs_atomic_set(&pl->pl_grant_speed, 0);
594         }
595         cfs_spin_unlock(&pl->pl_lock);
596
597         if (pl->pl_ops->po_recalc != NULL) {
598                 count = pl->pl_ops->po_recalc(pl);
599                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_RECALC_STAT,
600                                     count);
601                 return count;
602         }
603
604         return 0;
605 }
606 EXPORT_SYMBOL(ldlm_pool_recalc);
607
608 /**
609  * Pool shrink wrapper. Will call either client or server pool recalc callback
610  * depending what pool \a pl is used.
611  */
612 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
613                      unsigned int gfp_mask)
614 {
615         int cancel = 0;
616
617         if (pl->pl_ops->po_shrink != NULL) {
618                 cancel = pl->pl_ops->po_shrink(pl, nr, gfp_mask);
619                 if (nr > 0) {
620                         lprocfs_counter_add(pl->pl_stats,
621                                             LDLM_POOL_SHRINK_REQTD_STAT,
622                                             nr);
623                         lprocfs_counter_add(pl->pl_stats,
624                                             LDLM_POOL_SHRINK_FREED_STAT,
625                                             cancel);
626                         CDEBUG(D_DLMTRACE, "%s: request to shrink %d locks, "
627                                "shrunk %d\n", pl->pl_name, nr, cancel);
628                 }
629         }
630         return cancel;
631 }
632 EXPORT_SYMBOL(ldlm_pool_shrink);
633
634 /**
635  * Pool setup wrapper. Will call either client or server pool recalc callback
636  * depending what pool \a pl is used.
637  *
638  * Sets passed \a limit into pool \a pl.
639  */
640 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
641 {
642         ENTRY;
643         if (pl->pl_ops->po_setup != NULL)
644                 RETURN(pl->pl_ops->po_setup(pl, limit));
645         RETURN(0);
646 }
647 EXPORT_SYMBOL(ldlm_pool_setup);
648
649 #ifdef __KERNEL__
650 static int lprocfs_rd_pool_state(char *page, char **start, off_t off,
651                                  int count, int *eof, void *data)
652 {
653         int granted, grant_rate, cancel_rate, grant_step;
654         int nr = 0, grant_speed, grant_plan, lvf;
655         struct ldlm_pool *pl = data;
656         __u64 slv, clv;
657         __u32 limit;
658
659         cfs_spin_lock(&pl->pl_lock);
660         slv = pl->pl_server_lock_volume;
661         clv = pl->pl_client_lock_volume;
662         limit = ldlm_pool_get_limit(pl);
663         grant_plan = pl->pl_grant_plan;
664         granted = cfs_atomic_read(&pl->pl_granted);
665         grant_rate = cfs_atomic_read(&pl->pl_grant_rate);
666         lvf = cfs_atomic_read(&pl->pl_lock_volume_factor);
667         grant_speed = cfs_atomic_read(&pl->pl_grant_speed);
668         cancel_rate = cfs_atomic_read(&pl->pl_cancel_rate);
669         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
670         cfs_spin_unlock(&pl->pl_lock);
671
672         nr += snprintf(page + nr, count - nr, "LDLM pool state (%s):\n",
673                        pl->pl_name);
674         nr += snprintf(page + nr, count - nr, "  SLV: "LPU64"\n", slv);
675         nr += snprintf(page + nr, count - nr, "  CLV: "LPU64"\n", clv);
676         nr += snprintf(page + nr, count - nr, "  LVF: %d\n", lvf);
677
678         if (ns_is_server(ldlm_pl2ns(pl))) {
679                 nr += snprintf(page + nr, count - nr, "  GSP: %d%%\n",
680                                grant_step);
681                 nr += snprintf(page + nr, count - nr, "  GP:  %d\n",
682                                grant_plan);
683         }
684         nr += snprintf(page + nr, count - nr, "  GR:  %d\n",
685                        grant_rate);
686         nr += snprintf(page + nr, count - nr, "  CR:  %d\n",
687                        cancel_rate);
688         nr += snprintf(page + nr, count - nr, "  GS:  %d\n",
689                        grant_speed);
690         nr += snprintf(page + nr, count - nr, "  G:   %d\n",
691                        granted);
692         nr += snprintf(page + nr, count - nr, "  L:   %d\n",
693                        limit);
694         return nr;
695 }
696
697 LDLM_POOL_PROC_READER(grant_plan, int);
698 LDLM_POOL_PROC_READER(recalc_period, int);
699 LDLM_POOL_PROC_WRITER(recalc_period, int);
700
701 static int ldlm_pool_proc_init(struct ldlm_pool *pl)
702 {
703         struct ldlm_namespace *ns = ldlm_pl2ns(pl);
704         struct proc_dir_entry *parent_ns_proc;
705         struct lprocfs_vars pool_vars[2];
706         char *var_name = NULL;
707         int rc = 0;
708         ENTRY;
709
710         OBD_ALLOC(var_name, MAX_STRING_SIZE + 1);
711         if (!var_name)
712                 RETURN(-ENOMEM);
713
714         parent_ns_proc = lprocfs_srch(ldlm_ns_proc_dir, ns->ns_name);
715         if (parent_ns_proc == NULL) {
716                 CERROR("%s: proc entry is not initialized\n",
717                        ns->ns_name);
718                 GOTO(out_free_name, rc = -EINVAL);
719         }
720         pl->pl_proc_dir = lprocfs_register("pool", parent_ns_proc,
721                                            NULL, NULL);
722         if (IS_ERR(pl->pl_proc_dir)) {
723                 CERROR("LProcFS failed in ldlm-pool-init\n");
724                 rc = PTR_ERR(pl->pl_proc_dir);
725                 GOTO(out_free_name, rc);
726         }
727
728         var_name[MAX_STRING_SIZE] = '\0';
729         memset(pool_vars, 0, sizeof(pool_vars));
730         pool_vars[0].name = var_name;
731
732         snprintf(var_name, MAX_STRING_SIZE, "server_lock_volume");
733         pool_vars[0].data = &pl->pl_server_lock_volume;
734         pool_vars[0].read_fptr = lprocfs_rd_u64;
735         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
736
737         snprintf(var_name, MAX_STRING_SIZE, "limit");
738         pool_vars[0].data = &pl->pl_limit;
739         pool_vars[0].read_fptr = lprocfs_rd_atomic;
740         pool_vars[0].write_fptr = lprocfs_wr_atomic;
741         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
742
743         snprintf(var_name, MAX_STRING_SIZE, "granted");
744         pool_vars[0].data = &pl->pl_granted;
745         pool_vars[0].read_fptr = lprocfs_rd_atomic;
746         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
747
748         snprintf(var_name, MAX_STRING_SIZE, "grant_speed");
749         pool_vars[0].data = &pl->pl_grant_speed;
750         pool_vars[0].read_fptr = lprocfs_rd_atomic;
751         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
752
753         snprintf(var_name, MAX_STRING_SIZE, "cancel_rate");
754         pool_vars[0].data = &pl->pl_cancel_rate;
755         pool_vars[0].read_fptr = lprocfs_rd_atomic;
756         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
757
758         snprintf(var_name, MAX_STRING_SIZE, "grant_rate");
759         pool_vars[0].data = &pl->pl_grant_rate;
760         pool_vars[0].read_fptr = lprocfs_rd_atomic;
761         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
762
763         snprintf(var_name, MAX_STRING_SIZE, "grant_plan");
764         pool_vars[0].data = pl;
765         pool_vars[0].read_fptr = lprocfs_rd_grant_plan;
766         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
767
768         snprintf(var_name, MAX_STRING_SIZE, "recalc_period");
769         pool_vars[0].data = pl;
770         pool_vars[0].read_fptr = lprocfs_rd_recalc_period;
771         pool_vars[0].write_fptr = lprocfs_wr_recalc_period;
772         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
773
774         snprintf(var_name, MAX_STRING_SIZE, "lock_volume_factor");
775         pool_vars[0].data = &pl->pl_lock_volume_factor;
776         pool_vars[0].read_fptr = lprocfs_rd_atomic;
777         pool_vars[0].write_fptr = lprocfs_wr_atomic;
778         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
779
780         snprintf(var_name, MAX_STRING_SIZE, "state");
781         pool_vars[0].data = pl;
782         pool_vars[0].read_fptr = lprocfs_rd_pool_state;
783         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
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         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 #else /* !__KERNEL__*/
843 #define ldlm_pool_proc_init(pl) (0)
844 #define ldlm_pool_proc_fini(pl) while (0) {}
845 #endif
846
847 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
848                    int idx, ldlm_side_t client)
849 {
850         int rc;
851         ENTRY;
852
853         cfs_spin_lock_init(&pl->pl_lock);
854         cfs_atomic_set(&pl->pl_granted, 0);
855         pl->pl_recalc_time = cfs_time_current_sec();
856         cfs_atomic_set(&pl->pl_lock_volume_factor, 1);
857
858         cfs_atomic_set(&pl->pl_grant_rate, 0);
859         cfs_atomic_set(&pl->pl_cancel_rate, 0);
860         cfs_atomic_set(&pl->pl_grant_speed, 0);
861         pl->pl_grant_plan = LDLM_POOL_GP(LDLM_POOL_HOST_L);
862
863         snprintf(pl->pl_name, sizeof(pl->pl_name), "ldlm-pool-%s-%d",
864                  ns->ns_name, idx);
865
866         if (client == LDLM_NAMESPACE_SERVER) {
867                 pl->pl_ops = &ldlm_srv_pool_ops;
868                 ldlm_pool_set_limit(pl, LDLM_POOL_HOST_L);
869                 pl->pl_recalc_period = LDLM_POOL_SRV_DEF_RECALC_PERIOD;
870                 pl->pl_server_lock_volume = ldlm_pool_slv_max(LDLM_POOL_HOST_L);
871         } else {
872                 ldlm_pool_set_limit(pl, 1);
873                 pl->pl_server_lock_volume = 0;
874                 pl->pl_ops = &ldlm_cli_pool_ops;
875                 pl->pl_recalc_period = LDLM_POOL_CLI_DEF_RECALC_PERIOD;
876         }
877         pl->pl_client_lock_volume = 0;
878         rc = ldlm_pool_proc_init(pl);
879         if (rc)
880                 RETURN(rc);
881
882         CDEBUG(D_DLMTRACE, "Lock pool %s is initialized\n", pl->pl_name);
883
884         RETURN(rc);
885 }
886 EXPORT_SYMBOL(ldlm_pool_init);
887
888 void ldlm_pool_fini(struct ldlm_pool *pl)
889 {
890         ENTRY;
891         ldlm_pool_proc_fini(pl);
892
893         /*
894          * Pool should not be used after this point. We can't free it here as
895          * it lives in struct ldlm_namespace, but still interested in catching
896          * any abnormal using cases.
897          */
898         POISON(pl, 0x5a, sizeof(*pl));
899         EXIT;
900 }
901 EXPORT_SYMBOL(ldlm_pool_fini);
902
903 /**
904  * Add new taken ldlm lock \a lock into pool \a pl accounting.
905  */
906 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
907 {
908         /*
909          * FLOCK locks are special in a sense that they are almost never
910          * cancelled, instead special kind of lock is used to drop them.
911          * also there is no LRU for flock locks, so no point in tracking
912          * them anyway.
913          */
914         if (lock->l_resource->lr_type == LDLM_FLOCK)
915                 return;
916         ENTRY;
917
918         LDLM_DEBUG(lock, "add lock to pool");
919         cfs_atomic_inc(&pl->pl_granted);
920         cfs_atomic_inc(&pl->pl_grant_rate);
921         cfs_atomic_inc(&pl->pl_grant_speed);
922
923         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_GRANT_STAT);
924         /*
925          * Do not do pool recalc for client side as all locks which
926          * potentially may be canceled has already been packed into
927          * enqueue/cancel rpc. Also we do not want to run out of stack
928          * with too long call paths.
929          */
930         if (ns_is_server(ldlm_pl2ns(pl)))
931                 ldlm_pool_recalc(pl);
932         EXIT;
933 }
934 EXPORT_SYMBOL(ldlm_pool_add);
935
936 /**
937  * Remove ldlm lock \a lock from pool \a pl accounting.
938  */
939 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
940 {
941         /*
942          * Filter out FLOCK locks. Read above comment in ldlm_pool_add().
943          */
944         if (lock->l_resource->lr_type == LDLM_FLOCK)
945                 return;
946         ENTRY;
947
948         LDLM_DEBUG(lock, "del lock from pool");
949         LASSERT(cfs_atomic_read(&pl->pl_granted) > 0);
950         cfs_atomic_dec(&pl->pl_granted);
951         cfs_atomic_inc(&pl->pl_cancel_rate);
952         cfs_atomic_dec(&pl->pl_grant_speed);
953
954         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_CANCEL_STAT);
955
956         if (ns_is_server(ldlm_pl2ns(pl)))
957                 ldlm_pool_recalc(pl);
958         EXIT;
959 }
960 EXPORT_SYMBOL(ldlm_pool_del);
961
962 /**
963  * Returns current \a pl SLV.
964  *
965  * \pre ->pl_lock is not locked.
966  */
967 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
968 {
969         __u64 slv;
970         cfs_spin_lock(&pl->pl_lock);
971         slv = pl->pl_server_lock_volume;
972         cfs_spin_unlock(&pl->pl_lock);
973         return slv;
974 }
975 EXPORT_SYMBOL(ldlm_pool_get_slv);
976
977 /**
978  * Sets passed \a slv to \a pl.
979  *
980  * \pre ->pl_lock is not locked.
981  */
982 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
983 {
984         cfs_spin_lock(&pl->pl_lock);
985         pl->pl_server_lock_volume = slv;
986         cfs_spin_unlock(&pl->pl_lock);
987 }
988 EXPORT_SYMBOL(ldlm_pool_set_slv);
989
990 /**
991  * Returns current \a pl CLV.
992  *
993  * \pre ->pl_lock is not locked.
994  */
995 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
996 {
997         __u64 slv;
998         cfs_spin_lock(&pl->pl_lock);
999         slv = pl->pl_client_lock_volume;
1000         cfs_spin_unlock(&pl->pl_lock);
1001         return slv;
1002 }
1003 EXPORT_SYMBOL(ldlm_pool_get_clv);
1004
1005 /**
1006  * Sets passed \a clv to \a pl.
1007  *
1008  * \pre ->pl_lock is not locked.
1009  */
1010 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1011 {
1012         cfs_spin_lock(&pl->pl_lock);
1013         pl->pl_client_lock_volume = clv;
1014         cfs_spin_unlock(&pl->pl_lock);
1015 }
1016 EXPORT_SYMBOL(ldlm_pool_set_clv);
1017
1018 /**
1019  * Returns current \a pl limit.
1020  */
1021 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1022 {
1023         return cfs_atomic_read(&pl->pl_limit);
1024 }
1025 EXPORT_SYMBOL(ldlm_pool_get_limit);
1026
1027 /**
1028  * Sets passed \a limit to \a pl.
1029  */
1030 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1031 {
1032         cfs_atomic_set(&pl->pl_limit, limit);
1033 }
1034 EXPORT_SYMBOL(ldlm_pool_set_limit);
1035
1036 /**
1037  * Returns current LVF from \a pl.
1038  */
1039 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1040 {
1041         return cfs_atomic_read(&pl->pl_lock_volume_factor);
1042 }
1043 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1044
1045 #ifdef __KERNEL__
1046 static int ldlm_pool_granted(struct ldlm_pool *pl)
1047 {
1048         return cfs_atomic_read(&pl->pl_granted);
1049 }
1050
1051 static struct ptlrpc_thread *ldlm_pools_thread;
1052 static struct cfs_shrinker *ldlm_pools_srv_shrinker;
1053 static struct cfs_shrinker *ldlm_pools_cli_shrinker;
1054 static cfs_completion_t ldlm_pools_comp;
1055
1056 /*
1057  * Cancel \a nr locks from all namespaces (if possible). Returns number of
1058  * cached locks after shrink is finished. All namespaces are asked to
1059  * cancel approximately equal amount of locks to keep balancing.
1060  */
1061 static int ldlm_pools_shrink(ldlm_side_t client, int nr,
1062                              unsigned int gfp_mask)
1063 {
1064         int total = 0, cached = 0, nr_ns;
1065         struct ldlm_namespace *ns;
1066         void *cookie;
1067
1068         if (nr != 0 && !(gfp_mask & __GFP_FS))
1069                 return -1;
1070
1071         CDEBUG(D_DLMTRACE, "Request to shrink %d %s locks from all pools\n",
1072                nr, client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1073
1074         cookie = cl_env_reenter();
1075
1076         /*
1077          * Find out how many resources we may release.
1078          */
1079         for (nr_ns = cfs_atomic_read(ldlm_namespace_nr(client));
1080              nr_ns > 0; nr_ns--)
1081         {
1082                 cfs_mutex_down(ldlm_namespace_lock(client));
1083                 if (cfs_list_empty(ldlm_namespace_list(client))) {
1084                         cfs_mutex_up(ldlm_namespace_lock(client));
1085                         cl_env_reexit(cookie);
1086                         return 0;
1087                 }
1088                 ns = ldlm_namespace_first_locked(client);
1089                 ldlm_namespace_get(ns);
1090                 ldlm_namespace_move_locked(ns, client);
1091                 cfs_mutex_up(ldlm_namespace_lock(client));
1092                 total += ldlm_pool_shrink(&ns->ns_pool, 0, gfp_mask);
1093                 ldlm_namespace_put(ns, 1);
1094         }
1095
1096         if (nr == 0 || total == 0) {
1097                 cl_env_reexit(cookie);
1098                 return total;
1099         }
1100
1101         /*
1102          * Shrink at least ldlm_namespace_nr(client) namespaces.
1103          */
1104         for (nr_ns = cfs_atomic_read(ldlm_namespace_nr(client));
1105              nr_ns > 0; nr_ns--)
1106         {
1107                 int cancel, nr_locks;
1108
1109                 /*
1110                  * Do not call shrink under ldlm_namespace_lock(client)
1111                  */
1112                 cfs_mutex_down(ldlm_namespace_lock(client));
1113                 if (cfs_list_empty(ldlm_namespace_list(client))) {
1114                         cfs_mutex_up(ldlm_namespace_lock(client));
1115                         /*
1116                          * If list is empty, we can't return any @cached > 0,
1117                          * that probably would cause needless shrinker
1118                          * call.
1119                          */
1120                         cached = 0;
1121                         break;
1122                 }
1123                 ns = ldlm_namespace_first_locked(client);
1124                 ldlm_namespace_get(ns);
1125                 ldlm_namespace_move_locked(ns, client);
1126                 cfs_mutex_up(ldlm_namespace_lock(client));
1127
1128                 nr_locks = ldlm_pool_granted(&ns->ns_pool);
1129                 cancel = 1 + nr_locks * nr / total;
1130                 ldlm_pool_shrink(&ns->ns_pool, cancel, gfp_mask);
1131                 cached += ldlm_pool_granted(&ns->ns_pool);
1132                 ldlm_namespace_put(ns, 1);
1133         }
1134         cl_env_reexit(cookie);
1135         return cached;
1136 }
1137
1138 static int ldlm_pools_srv_shrink(int nr, unsigned int gfp_mask)
1139 {
1140         return ldlm_pools_shrink(LDLM_NAMESPACE_SERVER, nr, gfp_mask);
1141 }
1142
1143 static int ldlm_pools_cli_shrink(int nr, unsigned int gfp_mask)
1144 {
1145         return ldlm_pools_shrink(LDLM_NAMESPACE_CLIENT, nr, gfp_mask);
1146 }
1147
1148 void ldlm_pools_recalc(ldlm_side_t client)
1149 {
1150         __u32 nr_l = 0, nr_p = 0, l;
1151         struct ldlm_namespace *ns;
1152         int nr, equal = 0;
1153
1154         /*
1155          * No need to setup pool limit for client pools.
1156          */
1157         if (client == LDLM_NAMESPACE_SERVER) {
1158                 /*
1159                  * Check all modest namespaces first.
1160                  */
1161                 cfs_mutex_down(ldlm_namespace_lock(client));
1162                 cfs_list_for_each_entry(ns, ldlm_namespace_list(client),
1163                                         ns_list_chain)
1164                 {
1165                         if (ns->ns_appetite != LDLM_NAMESPACE_MODEST)
1166                                 continue;
1167
1168                         l = ldlm_pool_granted(&ns->ns_pool);
1169                         if (l == 0)
1170                                 l = 1;
1171
1172                         /*
1173                          * Set the modest pools limit equal to their avg granted
1174                          * locks + ~6%.
1175                          */
1176                         l += dru(l, LDLM_POOLS_MODEST_MARGIN_SHIFT, 0);
1177                         ldlm_pool_setup(&ns->ns_pool, l);
1178                         nr_l += l;
1179                         nr_p++;
1180                 }
1181
1182                 /*
1183                  * Make sure that modest namespaces did not eat more that 2/3
1184                  * of limit.
1185                  */
1186                 if (nr_l >= 2 * (LDLM_POOL_HOST_L / 3)) {
1187                         CWARN("\"Modest\" pools eat out 2/3 of server locks "
1188                               "limit (%d of %lu). This means that you have too "
1189                               "many clients for this amount of server RAM. "
1190                               "Upgrade server!\n", nr_l, LDLM_POOL_HOST_L);
1191                         equal = 1;
1192                 }
1193
1194                 /*
1195                  * The rest is given to greedy namespaces.
1196                  */
1197                 cfs_list_for_each_entry(ns, ldlm_namespace_list(client),
1198                                         ns_list_chain)
1199                 {
1200                         if (!equal && ns->ns_appetite != LDLM_NAMESPACE_GREEDY)
1201                                 continue;
1202
1203                         if (equal) {
1204                                 /*
1205                                  * In the case 2/3 locks are eaten out by
1206                                  * modest pools, we re-setup equal limit
1207                                  * for _all_ pools.
1208                                  */
1209                                 l = LDLM_POOL_HOST_L /
1210                                         cfs_atomic_read(
1211                                                 ldlm_namespace_nr(client));
1212                         } else {
1213                                 /*
1214                                  * All the rest of greedy pools will have
1215                                  * all locks in equal parts.
1216                                  */
1217                                 l = (LDLM_POOL_HOST_L - nr_l) /
1218                                         (cfs_atomic_read(
1219                                                 ldlm_namespace_nr(client)) -
1220                                          nr_p);
1221                         }
1222                         ldlm_pool_setup(&ns->ns_pool, l);
1223                 }
1224                 cfs_mutex_up(ldlm_namespace_lock(client));
1225         }
1226
1227         /*
1228          * Recalc at least ldlm_namespace_nr(client) namespaces.
1229          */
1230         for (nr = cfs_atomic_read(ldlm_namespace_nr(client)); nr > 0; nr--) {
1231                 int     skip;
1232                 /*
1233                  * Lock the list, get first @ns in the list, getref, move it
1234                  * to the tail, unlock and call pool recalc. This way we avoid
1235                  * calling recalc under @ns lock what is really good as we get
1236                  * rid of potential deadlock on client nodes when canceling
1237                  * locks synchronously.
1238                  */
1239                 cfs_mutex_down(ldlm_namespace_lock(client));
1240                 if (cfs_list_empty(ldlm_namespace_list(client))) {
1241                         cfs_mutex_up(ldlm_namespace_lock(client));
1242                         break;
1243                 }
1244                 ns = ldlm_namespace_first_locked(client);
1245
1246                 cfs_spin_lock(&ns->ns_hash_lock);
1247                 /*
1248                  * skip ns which is being freed, and we don't want to increase
1249                  * its refcount again, not even temporarily. bz21519.
1250                  */
1251                 if (ns->ns_refcount == 0) {
1252                         skip = 1;
1253                 } else {
1254                         skip = 0;
1255                         ldlm_namespace_get_locked(ns);
1256                 }
1257                 cfs_spin_unlock(&ns->ns_hash_lock);
1258
1259                 ldlm_namespace_move_locked(ns, client);
1260                 cfs_mutex_up(ldlm_namespace_lock(client));
1261
1262                 /*
1263                  * After setup is done - recalc the pool.
1264                  */
1265                 if (!skip) {
1266                         ldlm_pool_recalc(&ns->ns_pool);
1267                         ldlm_namespace_put(ns, 1);
1268                 }
1269         }
1270 }
1271 EXPORT_SYMBOL(ldlm_pools_recalc);
1272
1273 static int ldlm_pools_thread_main(void *arg)
1274 {
1275         struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
1276         char *t_name = "ldlm_poold";
1277         ENTRY;
1278
1279         cfs_daemonize(t_name);
1280         thread->t_flags = SVC_RUNNING;
1281         cfs_waitq_signal(&thread->t_ctl_waitq);
1282
1283         CDEBUG(D_DLMTRACE, "%s: pool thread starting, process %d\n",
1284                t_name, cfs_curproc_pid());
1285
1286         while (1) {
1287                 struct l_wait_info lwi;
1288
1289                 /*
1290                  * Recal all pools on this tick.
1291                  */
1292                 ldlm_pools_recalc(LDLM_NAMESPACE_SERVER);
1293                 ldlm_pools_recalc(LDLM_NAMESPACE_CLIENT);
1294
1295                 /*
1296                  * Wait until the next check time, or until we're
1297                  * stopped.
1298                  */
1299                 lwi = LWI_TIMEOUT(cfs_time_seconds(LDLM_POOLS_THREAD_PERIOD),
1300                                   NULL, NULL);
1301                 l_wait_event(thread->t_ctl_waitq, (thread->t_flags &
1302                                                    (SVC_STOPPING|SVC_EVENT)),
1303                              &lwi);
1304
1305                 if (thread->t_flags & SVC_STOPPING) {
1306                         thread->t_flags &= ~SVC_STOPPING;
1307                         break;
1308                 } else if (thread->t_flags & SVC_EVENT) {
1309                         thread->t_flags &= ~SVC_EVENT;
1310                 }
1311         }
1312
1313         thread->t_flags = SVC_STOPPED;
1314         cfs_waitq_signal(&thread->t_ctl_waitq);
1315
1316         CDEBUG(D_DLMTRACE, "%s: pool thread exiting, process %d\n",
1317                t_name, cfs_curproc_pid());
1318
1319         cfs_complete_and_exit(&ldlm_pools_comp, 0);
1320 }
1321
1322 static int ldlm_pools_thread_start(void)
1323 {
1324         struct l_wait_info lwi = { 0 };
1325         int rc;
1326         ENTRY;
1327
1328         if (ldlm_pools_thread != NULL)
1329                 RETURN(-EALREADY);
1330
1331         OBD_ALLOC_PTR(ldlm_pools_thread);
1332         if (ldlm_pools_thread == NULL)
1333                 RETURN(-ENOMEM);
1334
1335         cfs_init_completion(&ldlm_pools_comp);
1336         cfs_waitq_init(&ldlm_pools_thread->t_ctl_waitq);
1337
1338         /*
1339          * CLONE_VM and CLONE_FILES just avoid a needless copy, because we
1340          * just drop the VM and FILES in cfs_daemonize() right away.
1341          */
1342         rc = cfs_kernel_thread(ldlm_pools_thread_main, ldlm_pools_thread,
1343                                CLONE_VM | CLONE_FILES);
1344         if (rc < 0) {
1345                 CERROR("Can't start pool thread, error %d\n",
1346                        rc);
1347                 OBD_FREE(ldlm_pools_thread, sizeof(*ldlm_pools_thread));
1348                 ldlm_pools_thread = NULL;
1349                 RETURN(rc);
1350         }
1351         l_wait_event(ldlm_pools_thread->t_ctl_waitq,
1352                      (ldlm_pools_thread->t_flags & SVC_RUNNING), &lwi);
1353         RETURN(0);
1354 }
1355
1356 static void ldlm_pools_thread_stop(void)
1357 {
1358         ENTRY;
1359
1360         if (ldlm_pools_thread == NULL) {
1361                 EXIT;
1362                 return;
1363         }
1364
1365         ldlm_pools_thread->t_flags = SVC_STOPPING;
1366         cfs_waitq_signal(&ldlm_pools_thread->t_ctl_waitq);
1367
1368         /*
1369          * Make sure that pools thread is finished before freeing @thread.
1370          * This fixes possible race and oops due to accessing freed memory
1371          * in pools thread.
1372          */
1373         cfs_wait_for_completion(&ldlm_pools_comp);
1374         OBD_FREE_PTR(ldlm_pools_thread);
1375         ldlm_pools_thread = NULL;
1376         EXIT;
1377 }
1378
1379 int ldlm_pools_init(void)
1380 {
1381         int rc;
1382         ENTRY;
1383
1384         rc = ldlm_pools_thread_start();
1385         if (rc == 0) {
1386                 ldlm_pools_srv_shrinker =
1387                         cfs_set_shrinker(CFS_DEFAULT_SEEKS,
1388                                          ldlm_pools_srv_shrink);
1389                 ldlm_pools_cli_shrinker =
1390                         cfs_set_shrinker(CFS_DEFAULT_SEEKS,
1391                                          ldlm_pools_cli_shrink);
1392         }
1393         RETURN(rc);
1394 }
1395 EXPORT_SYMBOL(ldlm_pools_init);
1396
1397 void ldlm_pools_fini(void)
1398 {
1399         if (ldlm_pools_srv_shrinker != NULL) {
1400                 cfs_remove_shrinker(ldlm_pools_srv_shrinker);
1401                 ldlm_pools_srv_shrinker = NULL;
1402         }
1403         if (ldlm_pools_cli_shrinker != NULL) {
1404                 cfs_remove_shrinker(ldlm_pools_cli_shrinker);
1405                 ldlm_pools_cli_shrinker = NULL;
1406         }
1407         ldlm_pools_thread_stop();
1408 }
1409 EXPORT_SYMBOL(ldlm_pools_fini);
1410 #endif /* __KERNEL__ */
1411
1412 #else /* !HAVE_LRU_RESIZE_SUPPORT */
1413 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
1414 {
1415         return 0;
1416 }
1417 EXPORT_SYMBOL(ldlm_pool_setup);
1418
1419 int ldlm_pool_recalc(struct ldlm_pool *pl)
1420 {
1421         return 0;
1422 }
1423 EXPORT_SYMBOL(ldlm_pool_recalc);
1424
1425 int ldlm_pool_shrink(struct ldlm_pool *pl,
1426                      int nr, unsigned int gfp_mask)
1427 {
1428         return 0;
1429 }
1430 EXPORT_SYMBOL(ldlm_pool_shrink);
1431
1432 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1433                    int idx, ldlm_side_t client)
1434 {
1435         return 0;
1436 }
1437 EXPORT_SYMBOL(ldlm_pool_init);
1438
1439 void ldlm_pool_fini(struct ldlm_pool *pl)
1440 {
1441         return;
1442 }
1443 EXPORT_SYMBOL(ldlm_pool_fini);
1444
1445 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
1446 {
1447         return;
1448 }
1449 EXPORT_SYMBOL(ldlm_pool_add);
1450
1451 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
1452 {
1453         return;
1454 }
1455 EXPORT_SYMBOL(ldlm_pool_del);
1456
1457 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
1458 {
1459         return 1;
1460 }
1461 EXPORT_SYMBOL(ldlm_pool_get_slv);
1462
1463 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
1464 {
1465         return;
1466 }
1467 EXPORT_SYMBOL(ldlm_pool_set_slv);
1468
1469 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
1470 {
1471         return 1;
1472 }
1473 EXPORT_SYMBOL(ldlm_pool_get_clv);
1474
1475 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1476 {
1477         return;
1478 }
1479 EXPORT_SYMBOL(ldlm_pool_set_clv);
1480
1481 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1482 {
1483         return 0;
1484 }
1485 EXPORT_SYMBOL(ldlm_pool_get_limit);
1486
1487 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1488 {
1489         return;
1490 }
1491 EXPORT_SYMBOL(ldlm_pool_set_limit);
1492
1493 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1494 {
1495         return 0;
1496 }
1497 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1498
1499 int ldlm_pools_init(void)
1500 {
1501         return 0;
1502 }
1503 EXPORT_SYMBOL(ldlm_pools_init);
1504
1505 void ldlm_pools_fini(void)
1506 {
1507         return;
1508 }
1509 EXPORT_SYMBOL(ldlm_pools_fini);
1510
1511 void ldlm_pools_recalc(ldlm_side_t client)
1512 {
1513         return;
1514 }
1515 EXPORT_SYMBOL(ldlm_pools_recalc);
1516 #endif /* HAVE_LRU_RESIZE_SUPPORT */