Whamcloud - gitweb
4d0b57e068b698ea89012ddb08cdb9de76f233da
[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 ((num_physpages >> (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 (4)
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 #ifdef __KERNEL__
146 extern cfs_proc_dir_entry_t *ldlm_ns_proc_dir;
147 #endif
148
149 #define avg(src, add) \
150         ((src) = ((src) + (add)) / 2)
151
152 static inline __u64 dru(__u64 val, __u32 div)
153 {
154         __u64 ret = val + (div - 1);
155         do_div(ret, div);
156         return ret;
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 = 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(int t)
200 {
201         /*
202          * This yeilds 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 peroid 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 inshort 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                 (1 << (t / LDLM_POOL_GSP_STEP));
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 = 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 grant_usage, granted, grant_plan;
251         __u64 slv, slv_factor;
252         __u32 limit;
253
254         slv = pl->pl_server_lock_volume;
255         grant_plan = pl->pl_grant_plan;
256         limit = ldlm_pool_get_limit(pl);
257         granted = atomic_read(&pl->pl_granted);
258
259         grant_usage = limit - (granted - grant_plan);
260         if (grant_usage <= 0)
261                 grant_usage = 1;
262
263         /*
264          * Find out SLV change factor which is the ratio of grant usage
265          * from limit. SLV changes as fast as the ratio of grant plan
266          * consumtion. The more locks from grant plan are not consumed
267          * by clients in last interval (idle time), the faster grows
268          * SLV. And the opposite, the more grant plan is over-consumed
269          * (load time) the faster drops SLV.
270          */
271         slv_factor = (grant_usage * 100) / limit;
272         if (2 * abs(granted - limit) > limit) {
273                 slv_factor *= slv_factor;
274                 slv_factor = dru(slv_factor, 100);
275         }
276         slv = slv * slv_factor;
277         slv = dru(slv, 100);
278
279         if (slv > ldlm_pool_slv_max(limit)) {
280                 slv = ldlm_pool_slv_max(limit);
281         } else if (slv < ldlm_pool_slv_min(limit)) {
282                 slv = ldlm_pool_slv_min(limit);
283         }
284
285         pl->pl_server_lock_volume = slv;
286 }
287
288 /**
289  * Recalculates next stats on passed \a pl.
290  *
291  * \pre ->pl_lock is locked.
292  */
293 static inline void ldlm_pool_recalc_stats(struct ldlm_pool *pl)
294 {
295         int grant_plan = pl->pl_grant_plan;
296         __u64 slv = pl->pl_server_lock_volume;
297         int granted = atomic_read(&pl->pl_granted);
298         int grant_rate = atomic_read(&pl->pl_grant_rate);
299         int cancel_rate = atomic_read(&pl->pl_cancel_rate);
300
301         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_SLV_STAT,
302                             slv);
303         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
304                             granted);
305         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
306                             grant_rate);
307         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
308                             grant_plan);
309         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
310                             cancel_rate);
311 }
312
313 /**
314  * Sets current SLV into obd accessible via ldlm_pl2ns(pl)->ns_obd.
315  */
316 static void ldlm_srv_pool_push_slv(struct ldlm_pool *pl)
317 {
318         struct obd_device *obd;
319
320         /*
321          * Set new SLV in obd field for using it later without accessing the
322          * pool. This is required to avoid race between sending reply to client
323          * with new SLV and cleanup server stack in which we can't guarantee
324          * that namespace is still alive. We know only that obd is alive as
325          * long as valid export is alive.
326          */
327         obd = ldlm_pl2ns(pl)->ns_obd;
328         LASSERT(obd != NULL);
329         write_lock(&obd->obd_pool_lock);
330         obd->obd_pool_slv = pl->pl_server_lock_volume;
331         write_unlock(&obd->obd_pool_lock);
332 }
333
334 /**
335  * Recalculates all pool fields on passed \a pl.
336  *
337  * \pre ->pl_lock is not locked.
338  */
339 static int ldlm_srv_pool_recalc(struct ldlm_pool *pl)
340 {
341         time_t recalc_interval_sec;
342         ENTRY;
343
344         spin_lock(&pl->pl_lock);
345         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
346         if (recalc_interval_sec >= pl->pl_recalc_period) {
347                 /*
348                  * Recalc SLV after last period. This should be done
349                  * _before_ recalculating new grant plan.
350                  */
351                 ldlm_pool_recalc_slv(pl);
352
353                 /*
354                  * Make sure that pool informed obd of last SLV changes.
355                  */
356                 ldlm_srv_pool_push_slv(pl);
357
358                 /*
359                  * Update grant_plan for new period.
360                  */
361                 ldlm_pool_recalc_grant_plan(pl);
362
363                 pl->pl_recalc_time = cfs_time_current_sec();
364                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
365                                     recalc_interval_sec);
366         }
367
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  * preasure 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, unsigned int gfp_mask)
382 {
383         __u32 limit;
384         ENTRY;
385
386         /*
387          * VM is asking how many entries may be potentially freed.
388          */
389         if (nr == 0)
390                 RETURN(atomic_read(&pl->pl_granted));
391
392         /*
393          * Client already canceled locks but server is already in shrinker
394          * and can't cancel anything. Let's catch this race.
395          */
396         if (atomic_read(&pl->pl_granted) == 0)
397                 RETURN(0);
398
399         spin_lock(&pl->pl_lock);
400
401         /*
402          * We want shrinker to possibly cause cancelation of @nr locks from
403          * clients or grant approximately @nr locks smaller next intervals.
404          *
405          * This is why we decresed SLV by @nr. This effect will only be as
406          * long as one re-calc interval (1s these days) and this should be
407          * enough to pass this decreased SLV to all clients. On next recalc
408          * interval pool will either increase SLV if locks load is not high
409          * or will keep on same level or even decrease again, thus, shrinker
410          * decreased SLV will affect next recalc intervals and this way will
411          * make locking load lower.
412          */
413         if (nr < pl->pl_server_lock_volume) {
414                 pl->pl_server_lock_volume = pl->pl_server_lock_volume - nr;
415         } else {
416                 limit = ldlm_pool_get_limit(pl);
417                 pl->pl_server_lock_volume = ldlm_pool_slv_min(limit);
418         }
419
420         /*
421          * Make sure that pool informed obd of last SLV changes.
422          */
423         ldlm_srv_pool_push_slv(pl);
424         spin_unlock(&pl->pl_lock);
425
426         /*
427          * We did not really free any memory here so far, it only will be
428          * freed later may be, so that we return 0 to not confuse VM.
429          */
430         RETURN(0);
431 }
432
433 /**
434  * Setup server side pool \a pl with passed \a limit.
435  */
436 static int ldlm_srv_pool_setup(struct ldlm_pool *pl, int limit)
437 {
438         struct obd_device *obd;
439         ENTRY;
440
441         obd = ldlm_pl2ns(pl)->ns_obd;
442         LASSERT(obd != NULL && obd != LP_POISON);
443         LASSERT(obd->obd_type != LP_POISON);
444         write_lock(&obd->obd_pool_lock);
445         obd->obd_pool_limit = limit;
446         write_unlock(&obd->obd_pool_lock);
447
448         ldlm_pool_set_limit(pl, limit);
449         RETURN(0);
450 }
451
452 /**
453  * Sets SLV and Limit from ldlm_pl2ns(pl)->ns_obd tp passed \a pl.
454  */
455 static void ldlm_cli_pool_pop_slv(struct ldlm_pool *pl)
456 {
457         struct obd_device *obd;
458
459         /*
460          * Get new SLV and Limit from obd which is updated with comming
461          * RPCs.
462          */
463         obd = ldlm_pl2ns(pl)->ns_obd;
464         LASSERT(obd != NULL);
465         read_lock(&obd->obd_pool_lock);
466         pl->pl_server_lock_volume = obd->obd_pool_slv;
467         ldlm_pool_set_limit(pl, obd->obd_pool_limit);
468         read_unlock(&obd->obd_pool_lock);
469 }
470
471 /**
472  * Recalculates client sise pool \a pl according to current SLV and Limit.
473  */
474 static int ldlm_cli_pool_recalc(struct ldlm_pool *pl)
475 {
476         time_t recalc_interval_sec;
477         ENTRY;
478
479         spin_lock(&pl->pl_lock);
480         /*
481          * Check if we need to recalc lists now.
482          */
483         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
484         if (recalc_interval_sec < pl->pl_recalc_period) {
485                 spin_unlock(&pl->pl_lock);
486                 RETURN(0);
487         }
488
489         /*
490          * Make sure that pool knows last SLV and Limit from obd.
491          */
492         ldlm_cli_pool_pop_slv(pl);
493
494         pl->pl_recalc_time = cfs_time_current_sec();
495         lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
496                             recalc_interval_sec);
497         spin_unlock(&pl->pl_lock);
498
499         /*
500          * Do not cancel locks in case lru resize is disabled for this ns.
501          */
502         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
503                 RETURN(0);
504
505         /*
506          * In the time of canceling locks on client we do not need to maintain
507          * sharp timing, we only want to cancel locks asap according to new SLV.
508          * It may be called when SLV has changed much, this is why we do not
509          * take into account pl->pl_recalc_time here.
510          */
511         RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), 0, LDLM_ASYNC,
512                                LDLM_CANCEL_LRUR));
513 }
514
515 /**
516  * This function is main entry point for memory preasure handling on client side.
517  * Main goal of this function is to cancel some number of locks on passed \a pl
518  * according to \a nr and \a gfp_mask.
519  */
520 static int ldlm_cli_pool_shrink(struct ldlm_pool *pl,
521                                 int nr, unsigned int gfp_mask)
522 {
523         ENTRY;
524
525         /*
526          * Do not cancel locks in case lru resize is disabled for this ns.
527          */
528         if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
529                 RETURN(0);
530
531         /*
532          * Make sure that pool knows last SLV and Limit from obd.
533          */
534         ldlm_cli_pool_pop_slv(pl);
535
536         /*
537          * Find out how many locks may be released according to shrink
538          * policy.
539          */
540         if (nr == 0)
541                 RETURN(ldlm_cancel_lru_estimate(ldlm_pl2ns(pl), 0, 0,
542                                                 LDLM_CANCEL_SHRINK));
543
544         /*
545          * Cancel @nr locks accoding to shrink policy.
546          */
547         RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), nr, LDLM_SYNC,
548                                LDLM_CANCEL_SHRINK));
549 }
550
551 struct ldlm_pool_ops ldlm_srv_pool_ops = {
552         .po_recalc = ldlm_srv_pool_recalc,
553         .po_shrink = ldlm_srv_pool_shrink,
554         .po_setup  = ldlm_srv_pool_setup
555 };
556
557 struct ldlm_pool_ops ldlm_cli_pool_ops = {
558         .po_recalc = ldlm_cli_pool_recalc,
559         .po_shrink = ldlm_cli_pool_shrink
560 };
561
562 /**
563  * Pool recalc wrapper. Will call either client or server pool recalc callback
564  * depending what pool \a pl is used.
565  */
566 int ldlm_pool_recalc(struct ldlm_pool *pl)
567 {
568         time_t recalc_interval_sec;
569         int count;
570
571         spin_lock(&pl->pl_lock);
572         recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
573         if (recalc_interval_sec > 0) {
574                 /*
575                  * Update pool statistics every 1s.
576                  */
577                 ldlm_pool_recalc_stats(pl);
578
579                 /*
580                  * Zero out all rates and speed for the last period.
581                  */
582                 atomic_set(&pl->pl_grant_rate, 0);
583                 atomic_set(&pl->pl_cancel_rate, 0);
584                 atomic_set(&pl->pl_grant_speed, 0);
585         }
586         spin_unlock(&pl->pl_lock);
587
588         if (pl->pl_ops->po_recalc != NULL) {
589                 count = pl->pl_ops->po_recalc(pl);
590                 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_RECALC_STAT,
591                                     count);
592                 return count;
593         }
594
595         return 0;
596 }
597 EXPORT_SYMBOL(ldlm_pool_recalc);
598
599 /**
600  * Pool shrink wrapper. Will call either client or server pool recalc callback
601  * depending what pool \a pl is used.
602  */
603 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
604                      unsigned int gfp_mask)
605 {
606         int cancel = 0;
607
608         if (pl->pl_ops->po_shrink != NULL) {
609                 cancel = pl->pl_ops->po_shrink(pl, nr, gfp_mask);
610                 if (nr > 0) {
611                         lprocfs_counter_add(pl->pl_stats,
612                                             LDLM_POOL_SHRINK_REQTD_STAT,
613                                             nr);
614                         lprocfs_counter_add(pl->pl_stats,
615                                             LDLM_POOL_SHRINK_FREED_STAT,
616                                             cancel);
617                         CDEBUG(D_DLMTRACE, "%s: request to shrink %d locks, "
618                                "shrunk %d\n", pl->pl_name, nr, cancel);
619                 }
620         }
621         return cancel;
622 }
623 EXPORT_SYMBOL(ldlm_pool_shrink);
624
625 /**
626  * Pool setup wrapper. Will call either client or server pool recalc callback
627  * depending what pool \a pl is used.
628  *
629  * Sets passed \a limit into pool \a pl.
630  */
631 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
632 {
633         ENTRY;
634         if (pl->pl_ops->po_setup != NULL)
635                 RETURN(pl->pl_ops->po_setup(pl, limit));
636         RETURN(0);
637 }
638 EXPORT_SYMBOL(ldlm_pool_setup);
639
640 #ifdef __KERNEL__
641 static int lprocfs_rd_pool_state(char *page, char **start, off_t off,
642                                  int count, int *eof, void *data)
643 {
644         int granted, grant_rate, cancel_rate, grant_step;
645         int nr = 0, grant_speed, grant_plan, lvf;
646         struct ldlm_pool *pl = data;
647         __u64 slv, clv;
648         __u32 limit;
649
650         spin_lock(&pl->pl_lock);
651         slv = pl->pl_server_lock_volume;
652         clv = pl->pl_client_lock_volume;
653         limit = ldlm_pool_get_limit(pl);
654         grant_plan = pl->pl_grant_plan;
655         granted = atomic_read(&pl->pl_granted);
656         grant_rate = atomic_read(&pl->pl_grant_rate);
657         lvf = atomic_read(&pl->pl_lock_volume_factor);
658         grant_speed = atomic_read(&pl->pl_grant_speed);
659         cancel_rate = atomic_read(&pl->pl_cancel_rate);
660         grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
661         spin_unlock(&pl->pl_lock);
662
663         nr += snprintf(page + nr, count - nr, "LDLM pool state (%s):\n",
664                        pl->pl_name);
665         nr += snprintf(page + nr, count - nr, "  SLV: "LPU64"\n", slv);
666         nr += snprintf(page + nr, count - nr, "  CLV: "LPU64"\n", clv);
667         nr += snprintf(page + nr, count - nr, "  LVF: %d\n", lvf);
668
669         if (ns_is_server(ldlm_pl2ns(pl))) {
670                 nr += snprintf(page + nr, count - nr, "  GSP: %d%%\n",
671                                grant_step);
672                 nr += snprintf(page + nr, count - nr, "  GP:  %d\n",
673                                grant_plan);
674         }
675         nr += snprintf(page + nr, count - nr, "  GR:  %d\n",
676                        grant_rate);
677         nr += snprintf(page + nr, count - nr, "  CR:  %d\n",
678                        cancel_rate);
679         nr += snprintf(page + nr, count - nr, "  GS:  %d\n",
680                        grant_speed);
681         nr += snprintf(page + nr, count - nr, "  G:   %d\n",
682                        granted);
683         nr += snprintf(page + nr, count - nr, "  L:   %d\n",
684                        limit);
685         return nr;
686 }
687
688 LDLM_POOL_PROC_READER(grant_plan, int);
689 LDLM_POOL_PROC_READER(recalc_period, int);
690 LDLM_POOL_PROC_WRITER(recalc_period, int);
691
692 static int ldlm_pool_proc_init(struct ldlm_pool *pl)
693 {
694         struct ldlm_namespace *ns = ldlm_pl2ns(pl);
695         struct proc_dir_entry *parent_ns_proc;
696         struct lprocfs_vars pool_vars[2];
697         char *var_name = NULL;
698         int rc = 0;
699         ENTRY;
700
701         OBD_ALLOC(var_name, MAX_STRING_SIZE + 1);
702         if (!var_name)
703                 RETURN(-ENOMEM);
704
705         parent_ns_proc = lprocfs_srch(ldlm_ns_proc_dir, ns->ns_name);
706         if (parent_ns_proc == NULL) {
707                 CERROR("%s: proc entry is not initialized\n",
708                        ns->ns_name);
709                 GOTO(out_free_name, rc = -EINVAL);
710         }
711         pl->pl_proc_dir = lprocfs_register("pool", parent_ns_proc,
712                                            NULL, NULL);
713         if (IS_ERR(pl->pl_proc_dir)) {
714                 CERROR("LProcFS failed in ldlm-pool-init\n");
715                 rc = PTR_ERR(pl->pl_proc_dir);
716                 GOTO(out_free_name, rc);
717         }
718
719         var_name[MAX_STRING_SIZE] = '\0';
720         memset(pool_vars, 0, sizeof(pool_vars));
721         pool_vars[0].name = var_name;
722
723         snprintf(var_name, MAX_STRING_SIZE, "server_lock_volume");
724         pool_vars[0].data = &pl->pl_server_lock_volume;
725         pool_vars[0].read_fptr = lprocfs_rd_u64;
726         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
727
728         snprintf(var_name, MAX_STRING_SIZE, "limit");
729         pool_vars[0].data = &pl->pl_limit;
730         pool_vars[0].read_fptr = lprocfs_rd_atomic;
731         pool_vars[0].write_fptr = lprocfs_wr_atomic;
732         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
733
734         snprintf(var_name, MAX_STRING_SIZE, "granted");
735         pool_vars[0].data = &pl->pl_granted;
736         pool_vars[0].read_fptr = lprocfs_rd_atomic;
737         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
738
739         snprintf(var_name, MAX_STRING_SIZE, "grant_speed");
740         pool_vars[0].data = &pl->pl_grant_speed;
741         pool_vars[0].read_fptr = lprocfs_rd_atomic;
742         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
743
744         snprintf(var_name, MAX_STRING_SIZE, "cancel_rate");
745         pool_vars[0].data = &pl->pl_cancel_rate;
746         pool_vars[0].read_fptr = lprocfs_rd_atomic;
747         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
748
749         snprintf(var_name, MAX_STRING_SIZE, "grant_rate");
750         pool_vars[0].data = &pl->pl_grant_rate;
751         pool_vars[0].read_fptr = lprocfs_rd_atomic;
752         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
753
754         snprintf(var_name, MAX_STRING_SIZE, "grant_plan");
755         pool_vars[0].data = pl;
756         pool_vars[0].read_fptr = lprocfs_rd_grant_plan;
757         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
758
759         snprintf(var_name, MAX_STRING_SIZE, "recalc_period");
760         pool_vars[0].data = pl;
761         pool_vars[0].read_fptr = lprocfs_rd_recalc_period;
762         pool_vars[0].write_fptr = lprocfs_wr_recalc_period;
763         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
764
765         snprintf(var_name, MAX_STRING_SIZE, "lock_volume_factor");
766         pool_vars[0].data = &pl->pl_lock_volume_factor;
767         pool_vars[0].read_fptr = lprocfs_rd_atomic;
768         pool_vars[0].write_fptr = lprocfs_wr_atomic;
769         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
770
771         snprintf(var_name, MAX_STRING_SIZE, "state");
772         pool_vars[0].data = pl;
773         pool_vars[0].read_fptr = lprocfs_rd_pool_state;
774         lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
775
776         pl->pl_stats = lprocfs_alloc_stats(LDLM_POOL_LAST_STAT -
777                                            LDLM_POOL_FIRST_STAT, 0);
778         if (!pl->pl_stats)
779                 GOTO(out_free_name, rc = -ENOMEM);
780
781         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
782                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
783                              "granted", "locks");
784         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_STAT,
785                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
786                              "grant", "locks");
787         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_STAT,
788                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
789                              "cancel", "locks");
790         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
791                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
792                              "grant_rate", "locks/s");
793         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
794                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
795                              "cancel_rate", "locks/s");
796         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
797                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
798                              "grant_plan", "locks/s");
799         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SLV_STAT,
800                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
801                              "slv", "slv");
802         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_REQTD_STAT,
803                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
804                              "shrink_request", "locks");
805         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_FREED_STAT,
806                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
807                              "shrink_freed", "locks");
808         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_RECALC_STAT,
809                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
810                              "recalc_freed", "locks");
811         lprocfs_counter_init(pl->pl_stats, LDLM_POOL_TIMING_STAT,
812                              LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
813                              "recalc_timing", "sec");
814         lprocfs_register_stats(pl->pl_proc_dir, "stats", pl->pl_stats);
815
816         EXIT;
817 out_free_name:
818         OBD_FREE(var_name, MAX_STRING_SIZE + 1);
819         return rc;
820 }
821
822 static void ldlm_pool_proc_fini(struct ldlm_pool *pl)
823 {
824         if (pl->pl_stats != NULL) {
825                 lprocfs_free_stats(&pl->pl_stats);
826                 pl->pl_stats = NULL;
827         }
828         if (pl->pl_proc_dir != NULL) {
829                 lprocfs_remove(&pl->pl_proc_dir);
830                 pl->pl_proc_dir = NULL;
831         }
832 }
833 #else /* !__KERNEL__*/
834 #define ldlm_pool_proc_init(pl) (0)
835 #define ldlm_pool_proc_fini(pl) while (0) {}
836 #endif
837
838 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
839                    int idx, ldlm_side_t client)
840 {
841         int rc;
842         ENTRY;
843
844         spin_lock_init(&pl->pl_lock);
845         atomic_set(&pl->pl_granted, 0);
846         pl->pl_recalc_time = cfs_time_current_sec();
847         atomic_set(&pl->pl_lock_volume_factor, 1);
848
849         atomic_set(&pl->pl_grant_rate, 0);
850         atomic_set(&pl->pl_cancel_rate, 0);
851         atomic_set(&pl->pl_grant_speed, 0);
852         pl->pl_grant_plan = LDLM_POOL_GP(LDLM_POOL_HOST_L);
853
854         snprintf(pl->pl_name, sizeof(pl->pl_name), "ldlm-pool-%s-%d",
855                  ns->ns_name, idx);
856
857         if (client == LDLM_NAMESPACE_SERVER) {
858                 pl->pl_ops = &ldlm_srv_pool_ops;
859                 ldlm_pool_set_limit(pl, LDLM_POOL_HOST_L);
860                 pl->pl_recalc_period = LDLM_POOL_SRV_DEF_RECALC_PERIOD;
861                 pl->pl_server_lock_volume = ldlm_pool_slv_max(LDLM_POOL_HOST_L);
862         } else {
863                 ldlm_pool_set_limit(pl, 1);
864                 pl->pl_server_lock_volume = 1;
865                 pl->pl_ops = &ldlm_cli_pool_ops;
866                 pl->pl_recalc_period = LDLM_POOL_CLI_DEF_RECALC_PERIOD;
867         }
868         pl->pl_client_lock_volume = 0;
869         rc = ldlm_pool_proc_init(pl);
870         if (rc)
871                 RETURN(rc);
872
873         CDEBUG(D_DLMTRACE, "Lock pool %s is initialized\n", pl->pl_name);
874
875         RETURN(rc);
876 }
877 EXPORT_SYMBOL(ldlm_pool_init);
878
879 void ldlm_pool_fini(struct ldlm_pool *pl)
880 {
881         ENTRY;
882         ldlm_pool_proc_fini(pl);
883
884         /*
885          * Pool should not be used after this point. We can't free it here as
886          * it lives in struct ldlm_namespace, but still interested in catching
887          * any abnormal using cases.
888          */
889         POISON(pl, 0x5a, sizeof(*pl));
890         EXIT;
891 }
892 EXPORT_SYMBOL(ldlm_pool_fini);
893
894 /**
895  * Add new taken ldlm lock \a lock into pool \a pl accounting.
896  */
897 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
898 {
899         /*
900          * FLOCK locks are special in a sense that they are almost never
901          * cancelled, instead special kind of lock is used to drop them.
902          * also there is no LRU for flock locks, so no point in tracking
903          * them anyway.
904          */
905         if (lock->l_resource->lr_type == LDLM_FLOCK)
906                 return;
907         ENTRY;
908
909         atomic_inc(&pl->pl_granted);
910         atomic_inc(&pl->pl_grant_rate);
911         atomic_inc(&pl->pl_grant_speed);
912
913         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_GRANT_STAT);
914         /*
915          * Do not do pool recalc for client side as all locks which
916          * potentially may be canceled has already been packed into
917          * enqueue/cancel rpc. Also we do not want to run out of stack
918          * with too long call paths.
919          */
920         if (ns_is_server(ldlm_pl2ns(pl)))
921                 ldlm_pool_recalc(pl);
922         EXIT;
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         ENTRY;
937
938         LASSERT(atomic_read(&pl->pl_granted) > 0);
939         atomic_dec(&pl->pl_granted);
940         atomic_inc(&pl->pl_cancel_rate);
941         atomic_dec(&pl->pl_grant_speed);
942
943         lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_CANCEL_STAT);
944
945         if (ns_is_server(ldlm_pl2ns(pl)))
946                 ldlm_pool_recalc(pl);
947         EXIT;
948 }
949 EXPORT_SYMBOL(ldlm_pool_del);
950
951 /**
952  * Returns current \a pl SLV.
953  *
954  * \pre ->pl_lock is not locked.
955  */
956 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
957 {
958         __u64 slv;
959         spin_lock(&pl->pl_lock);
960         slv = pl->pl_server_lock_volume;
961         spin_unlock(&pl->pl_lock);
962         return slv;
963 }
964 EXPORT_SYMBOL(ldlm_pool_get_slv);
965
966 /**
967  * Sets passed \a slv to \a pl.
968  *
969  * \pre ->pl_lock is not locked.
970  */
971 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
972 {
973         spin_lock(&pl->pl_lock);
974         pl->pl_server_lock_volume = slv;
975         spin_unlock(&pl->pl_lock);
976 }
977 EXPORT_SYMBOL(ldlm_pool_set_slv);
978
979 /**
980  * Returns current \a pl CLV.
981  *
982  * \pre ->pl_lock is not locked.
983  */
984 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
985 {
986         __u64 slv;
987         spin_lock(&pl->pl_lock);
988         slv = pl->pl_client_lock_volume;
989         spin_unlock(&pl->pl_lock);
990         return slv;
991 }
992 EXPORT_SYMBOL(ldlm_pool_get_clv);
993
994 /**
995  * Sets passed \a clv to \a pl.
996  *
997  * \pre ->pl_lock is not locked.
998  */
999 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1000 {
1001         spin_lock(&pl->pl_lock);
1002         pl->pl_client_lock_volume = clv;
1003         spin_unlock(&pl->pl_lock);
1004 }
1005 EXPORT_SYMBOL(ldlm_pool_set_clv);
1006
1007 /**
1008  * Returns current \a pl limit.
1009  */
1010 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1011 {
1012         return atomic_read(&pl->pl_limit);
1013 }
1014 EXPORT_SYMBOL(ldlm_pool_get_limit);
1015
1016 /**
1017  * Sets passed \a limit to \a pl.
1018  */
1019 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1020 {
1021         atomic_set(&pl->pl_limit, limit);
1022 }
1023 EXPORT_SYMBOL(ldlm_pool_set_limit);
1024
1025 /**
1026  * Returns current LVF from \a pl.
1027  */
1028 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1029 {
1030         return atomic_read(&pl->pl_lock_volume_factor);
1031 }
1032 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1033
1034 #ifdef __KERNEL__
1035 static int ldlm_pool_granted(struct ldlm_pool *pl)
1036 {
1037         return atomic_read(&pl->pl_granted);
1038 }
1039
1040 static struct ptlrpc_thread *ldlm_pools_thread;
1041 static struct shrinker *ldlm_pools_srv_shrinker;
1042 static struct shrinker *ldlm_pools_cli_shrinker;
1043 static struct completion ldlm_pools_comp;
1044
1045 /*
1046  * Cancel \a nr locks from all namespaces (if possible). Returns number of
1047  * cached locks after shrink is finished. All namespaces are asked to
1048  * cancel approximately equal amount of locks to keep balancing.
1049  */
1050 static int ldlm_pools_shrink(ldlm_side_t client, int nr,
1051                              unsigned int gfp_mask)
1052 {
1053         int total = 0, cached = 0, nr_ns;
1054         struct ldlm_namespace *ns;
1055         void *cookie;
1056
1057         if (nr != 0 && !(gfp_mask & __GFP_FS))
1058                 return -1;
1059
1060         CDEBUG(D_DLMTRACE, "Request to shrink %d %s locks from all pools\n",
1061                nr, client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1062
1063         cookie = cl_env_reenter();
1064
1065         /*
1066          * Find out how many resources we may release.
1067          */
1068         for (nr_ns = atomic_read(ldlm_namespace_nr(client));
1069              nr_ns > 0; nr_ns--)
1070         {
1071                 mutex_down(ldlm_namespace_lock(client));
1072                 if (list_empty(ldlm_namespace_list(client))) {
1073                         mutex_up(ldlm_namespace_lock(client));
1074                         cl_env_reexit(cookie);
1075                         return 0;
1076                 }
1077                 ns = ldlm_namespace_first_locked(client);
1078                 ldlm_namespace_get(ns);
1079                 ldlm_namespace_move_locked(ns, client);
1080                 mutex_up(ldlm_namespace_lock(client));
1081                 total += ldlm_pool_shrink(&ns->ns_pool, 0, gfp_mask);
1082                 ldlm_namespace_put(ns, 1);
1083         }
1084
1085         if (nr == 0 || total == 0) {
1086                 cl_env_reexit(cookie);
1087                 return total;
1088         }
1089
1090         /*
1091          * Shrink at least ldlm_namespace_nr(client) namespaces.
1092          */
1093         for (nr_ns = atomic_read(ldlm_namespace_nr(client));
1094              nr_ns > 0; nr_ns--)
1095         {
1096                 int cancel, nr_locks;
1097
1098                 /*
1099                  * Do not call shrink under ldlm_namespace_lock(client)
1100                  */
1101                 mutex_down(ldlm_namespace_lock(client));
1102                 if (list_empty(ldlm_namespace_list(client))) {
1103                         mutex_up(ldlm_namespace_lock(client));
1104                         /*
1105                          * If list is empty, we can't return any @cached > 0,
1106                          * that probably would cause needless shrinker
1107                          * call.
1108                          */
1109                         cached = 0;
1110                         break;
1111                 }
1112                 ns = ldlm_namespace_first_locked(client);
1113                 ldlm_namespace_get(ns);
1114                 ldlm_namespace_move_locked(ns, client);
1115                 mutex_up(ldlm_namespace_lock(client));
1116
1117                 nr_locks = ldlm_pool_granted(&ns->ns_pool);
1118                 cancel = 1 + nr_locks * nr / total;
1119                 ldlm_pool_shrink(&ns->ns_pool, cancel, gfp_mask);
1120                 cached += ldlm_pool_granted(&ns->ns_pool);
1121                 ldlm_namespace_put(ns, 1);
1122         }
1123         cl_env_reexit(cookie);
1124         return cached;
1125 }
1126
1127 static int ldlm_pools_srv_shrink(int nr, unsigned int gfp_mask)
1128 {
1129         return ldlm_pools_shrink(LDLM_NAMESPACE_SERVER, nr, gfp_mask);
1130 }
1131
1132 static int ldlm_pools_cli_shrink(int nr, unsigned int gfp_mask)
1133 {
1134         return ldlm_pools_shrink(LDLM_NAMESPACE_CLIENT, nr, gfp_mask);
1135 }
1136
1137 void ldlm_pools_recalc(ldlm_side_t client)
1138 {
1139         __u32 nr_l = 0, nr_p = 0, l;
1140         struct ldlm_namespace *ns;
1141         int nr, equal = 0;
1142
1143         /*
1144          * No need to setup pool limit for client pools.
1145          */
1146         if (client == LDLM_NAMESPACE_SERVER) {
1147                 /*
1148                  * Check all modest namespaces first.
1149                  */
1150                 mutex_down(ldlm_namespace_lock(client));
1151                 list_for_each_entry(ns, ldlm_namespace_list(client),
1152                                     ns_list_chain)
1153                 {
1154                         if (ns->ns_appetite != LDLM_NAMESPACE_MODEST)
1155                                 continue;
1156
1157                         l = ldlm_pool_granted(&ns->ns_pool);
1158                         if (l == 0)
1159                                 l = 1;
1160
1161                         /*
1162                          * Set the modest pools limit equal to their avg granted
1163                          * locks + 5%.
1164                          */
1165                         l += dru(l * LDLM_POOLS_MODEST_MARGIN, 100);
1166                         ldlm_pool_setup(&ns->ns_pool, l);
1167                         nr_l += l;
1168                         nr_p++;
1169                 }
1170
1171                 /*
1172                  * Make sure that modest namespaces did not eat more that 2/3
1173                  * of limit.
1174                  */
1175                 if (nr_l >= 2 * (LDLM_POOL_HOST_L / 3)) {
1176                         CWARN("\"Modest\" pools eat out 2/3 of server locks "
1177                               "limit (%d of %lu). This means that you have too "
1178                               "many clients for this amount of server RAM. "
1179                               "Upgrade server!\n", nr_l, LDLM_POOL_HOST_L);
1180                         equal = 1;
1181                 }
1182
1183                 /*
1184                  * The rest is given to greedy namespaces.
1185                  */
1186                 list_for_each_entry(ns, ldlm_namespace_list(client),
1187                                     ns_list_chain)
1188                 {
1189                         if (!equal && ns->ns_appetite != LDLM_NAMESPACE_GREEDY)
1190                                 continue;
1191
1192                         if (equal) {
1193                                 /*
1194                                  * In the case 2/3 locks are eaten out by
1195                                  * modest pools, we re-setup equal limit
1196                                  * for _all_ pools.
1197                                  */
1198                                 l = LDLM_POOL_HOST_L /
1199                                         atomic_read(ldlm_namespace_nr(client));
1200                         } else {
1201                                 /*
1202                                  * All the rest of greedy pools will have
1203                                  * all locks in equal parts.
1204                                  */
1205                                 l = (LDLM_POOL_HOST_L - nr_l) /
1206                                         (atomic_read(ldlm_namespace_nr(client)) -
1207                                          nr_p);
1208                         }
1209                         ldlm_pool_setup(&ns->ns_pool, l);
1210                 }
1211                 mutex_up(ldlm_namespace_lock(client));
1212         }
1213
1214         /*
1215          * Recalc at least ldlm_namespace_nr(client) namespaces.
1216          */
1217         for (nr = atomic_read(ldlm_namespace_nr(client)); nr > 0; nr--) {
1218                 /*
1219                  * Lock the list, get first @ns in the list, getref, move it
1220                  * to the tail, unlock and call pool recalc. This way we avoid
1221                  * calling recalc under @ns lock what is really good as we get
1222                  * rid of potential deadlock on client nodes when canceling
1223                  * locks synchronously.
1224                  */
1225                 mutex_down(ldlm_namespace_lock(client));
1226                 if (list_empty(ldlm_namespace_list(client))) {
1227                         mutex_up(ldlm_namespace_lock(client));
1228                         break;
1229                 }
1230                 ns = ldlm_namespace_first_locked(client);
1231                 ldlm_namespace_get(ns);
1232                 ldlm_namespace_move_locked(ns, client);
1233                 mutex_up(ldlm_namespace_lock(client));
1234
1235                 /*
1236                  * After setup is done - recalc the pool.
1237                  */
1238                 ldlm_pool_recalc(&ns->ns_pool);
1239                 ldlm_namespace_put(ns, 1);
1240         }
1241 }
1242 EXPORT_SYMBOL(ldlm_pools_recalc);
1243
1244 static int ldlm_pools_thread_main(void *arg)
1245 {
1246         struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
1247         char *t_name = "ldlm_poold";
1248         ENTRY;
1249
1250         cfs_daemonize(t_name);
1251         thread->t_flags = SVC_RUNNING;
1252         cfs_waitq_signal(&thread->t_ctl_waitq);
1253
1254         CDEBUG(D_DLMTRACE, "%s: pool thread starting, process %d\n",
1255                t_name, cfs_curproc_pid());
1256
1257         while (1) {
1258                 struct l_wait_info lwi;
1259
1260                 /*
1261                  * Recal all pools on this tick.
1262                  */
1263                 ldlm_pools_recalc(LDLM_NAMESPACE_SERVER);
1264                 ldlm_pools_recalc(LDLM_NAMESPACE_CLIENT);
1265
1266                 /*
1267                  * Wait until the next check time, or until we're
1268                  * stopped.
1269                  */
1270                 lwi = LWI_TIMEOUT(cfs_time_seconds(LDLM_POOLS_THREAD_PERIOD),
1271                                   NULL, NULL);
1272                 l_wait_event(thread->t_ctl_waitq, (thread->t_flags &
1273                                                    (SVC_STOPPING|SVC_EVENT)),
1274                              &lwi);
1275
1276                 if (thread->t_flags & SVC_STOPPING) {
1277                         thread->t_flags &= ~SVC_STOPPING;
1278                         break;
1279                 } else if (thread->t_flags & SVC_EVENT) {
1280                         thread->t_flags &= ~SVC_EVENT;
1281                 }
1282         }
1283
1284         thread->t_flags = SVC_STOPPED;
1285         cfs_waitq_signal(&thread->t_ctl_waitq);
1286
1287         CDEBUG(D_DLMTRACE, "%s: pool thread exiting, process %d\n",
1288                t_name, cfs_curproc_pid());
1289
1290         complete_and_exit(&ldlm_pools_comp, 0);
1291 }
1292
1293 static int ldlm_pools_thread_start(void)
1294 {
1295         struct l_wait_info lwi = { 0 };
1296         int rc;
1297         ENTRY;
1298
1299         if (ldlm_pools_thread != NULL)
1300                 RETURN(-EALREADY);
1301
1302         OBD_ALLOC_PTR(ldlm_pools_thread);
1303         if (ldlm_pools_thread == NULL)
1304                 RETURN(-ENOMEM);
1305
1306         init_completion(&ldlm_pools_comp);
1307         cfs_waitq_init(&ldlm_pools_thread->t_ctl_waitq);
1308
1309         /*
1310          * CLONE_VM and CLONE_FILES just avoid a needless copy, because we
1311          * just drop the VM and FILES in ptlrpc_daemonize() right away.
1312          */
1313         rc = cfs_kernel_thread(ldlm_pools_thread_main, ldlm_pools_thread,
1314                                CLONE_VM | CLONE_FILES);
1315         if (rc < 0) {
1316                 CERROR("Can't start pool thread, error %d\n",
1317                        rc);
1318                 OBD_FREE(ldlm_pools_thread, sizeof(*ldlm_pools_thread));
1319                 ldlm_pools_thread = NULL;
1320                 RETURN(rc);
1321         }
1322         l_wait_event(ldlm_pools_thread->t_ctl_waitq,
1323                      (ldlm_pools_thread->t_flags & SVC_RUNNING), &lwi);
1324         RETURN(0);
1325 }
1326
1327 static void ldlm_pools_thread_stop(void)
1328 {
1329         ENTRY;
1330
1331         if (ldlm_pools_thread == NULL) {
1332                 EXIT;
1333                 return;
1334         }
1335
1336         ldlm_pools_thread->t_flags = SVC_STOPPING;
1337         cfs_waitq_signal(&ldlm_pools_thread->t_ctl_waitq);
1338
1339         /*
1340          * Make sure that pools thread is finished before freeing @thread.
1341          * This fixes possible race and oops due to accessing freed memory
1342          * in pools thread.
1343          */
1344         wait_for_completion(&ldlm_pools_comp);
1345         OBD_FREE_PTR(ldlm_pools_thread);
1346         ldlm_pools_thread = NULL;
1347         EXIT;
1348 }
1349
1350 int ldlm_pools_init(void)
1351 {
1352         int rc;
1353         ENTRY;
1354
1355         rc = ldlm_pools_thread_start();
1356         if (rc == 0) {
1357                 ldlm_pools_srv_shrinker = set_shrinker(DEFAULT_SEEKS,
1358                                                        ldlm_pools_srv_shrink);
1359                 ldlm_pools_cli_shrinker = set_shrinker(DEFAULT_SEEKS,
1360                                                        ldlm_pools_cli_shrink);
1361         }
1362         RETURN(rc);
1363 }
1364 EXPORT_SYMBOL(ldlm_pools_init);
1365
1366 void ldlm_pools_fini(void)
1367 {
1368         if (ldlm_pools_srv_shrinker != NULL) {
1369                 remove_shrinker(ldlm_pools_srv_shrinker);
1370                 ldlm_pools_srv_shrinker = NULL;
1371         }
1372         if (ldlm_pools_cli_shrinker != NULL) {
1373                 remove_shrinker(ldlm_pools_cli_shrinker);
1374                 ldlm_pools_cli_shrinker = NULL;
1375         }
1376         ldlm_pools_thread_stop();
1377 }
1378 EXPORT_SYMBOL(ldlm_pools_fini);
1379 #endif /* __KERNEL__ */
1380
1381 #else /* !HAVE_LRU_RESIZE_SUPPORT */
1382 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
1383 {
1384         return 0;
1385 }
1386 EXPORT_SYMBOL(ldlm_pool_setup);
1387
1388 int ldlm_pool_recalc(struct ldlm_pool *pl)
1389 {
1390         return 0;
1391 }
1392 EXPORT_SYMBOL(ldlm_pool_recalc);
1393
1394 int ldlm_pool_shrink(struct ldlm_pool *pl,
1395                      int nr, unsigned int gfp_mask)
1396 {
1397         return 0;
1398 }
1399 EXPORT_SYMBOL(ldlm_pool_shrink);
1400
1401 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1402                    int idx, ldlm_side_t client)
1403 {
1404         return 0;
1405 }
1406 EXPORT_SYMBOL(ldlm_pool_init);
1407
1408 void ldlm_pool_fini(struct ldlm_pool *pl)
1409 {
1410         return;
1411 }
1412 EXPORT_SYMBOL(ldlm_pool_fini);
1413
1414 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
1415 {
1416         return;
1417 }
1418 EXPORT_SYMBOL(ldlm_pool_add);
1419
1420 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
1421 {
1422         return;
1423 }
1424 EXPORT_SYMBOL(ldlm_pool_del);
1425
1426 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
1427 {
1428         return 1;
1429 }
1430 EXPORT_SYMBOL(ldlm_pool_get_slv);
1431
1432 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
1433 {
1434         return;
1435 }
1436 EXPORT_SYMBOL(ldlm_pool_set_slv);
1437
1438 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
1439 {
1440         return 1;
1441 }
1442 EXPORT_SYMBOL(ldlm_pool_get_clv);
1443
1444 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1445 {
1446         return;
1447 }
1448 EXPORT_SYMBOL(ldlm_pool_set_clv);
1449
1450 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1451 {
1452         return 0;
1453 }
1454 EXPORT_SYMBOL(ldlm_pool_get_limit);
1455
1456 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1457 {
1458         return;
1459 }
1460 EXPORT_SYMBOL(ldlm_pool_set_limit);
1461
1462 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1463 {
1464         return 0;
1465 }
1466 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1467
1468 int ldlm_pools_init(void)
1469 {
1470         return 0;
1471 }
1472 EXPORT_SYMBOL(ldlm_pools_init);
1473
1474 void ldlm_pools_fini(void)
1475 {
1476         return;
1477 }
1478 EXPORT_SYMBOL(ldlm_pools_fini);
1479
1480 void ldlm_pools_recalc(ldlm_side_t client)
1481 {
1482         return;
1483 }
1484 EXPORT_SYMBOL(ldlm_pools_recalc);
1485 #endif /* HAVE_LRU_RESIZE_SUPPORT */