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