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