1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2 * vim:expandtab:shiftwidth=8:tabstop=8:
6 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
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
29 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
30 * Use is subject to license terms.
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
36 * lustre/ldlm/ldlm_pool.c
38 * Author: Yury Umanets <umka@clusterfs.com>
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.
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.
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.
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);
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.
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).
79 * Glossary for terms used:
81 * pl_limit - Number of allowed locks in pool. Applies to server and client
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);
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.
98 #define DEBUG_SUBSYSTEM S_LDLM
101 # include <lustre_dlm.h>
103 # include <liblustre.h>
106 #include <cl_object.h>
108 #include <obd_class.h>
109 #include <obd_support.h>
110 #include "ldlm_internal.h"
112 #ifdef HAVE_LRU_RESIZE_SUPPORT
115 * 50 ldlm locks for 1MB of RAM.
117 #define LDLM_POOL_HOST_L ((CFS_NUM_CACHEPAGES >> (20 - CFS_PAGE_SHIFT)) * 50)
120 * Maximal possible grant step plan in %.
122 #define LDLM_POOL_MAX_GSP (30)
125 * Minimal possible grant step plan in %.
127 #define LDLM_POOL_MIN_GSP (1)
130 * This controls the speed of reaching LDLM_POOL_MAX_GSP
131 * with increasing thread period.
133 #define LDLM_POOL_GSP_STEP_SHIFT (2)
136 * LDLM_POOL_GSP% of all locks is default GP.
138 #define LDLM_POOL_GP(L) (((L) * LDLM_POOL_MAX_GSP) / 100)
141 * Max age for locks on clients.
143 #define LDLM_POOL_MAX_AGE (36000)
146 * The granularity of SLV calculation.
148 #define LDLM_POOL_SLV_SHIFT (10)
151 extern cfs_proc_dir_entry_t *ldlm_ns_proc_dir;
154 static inline __u64 dru(__u64 val, __u32 shift, int round_up)
156 return (val + (round_up ? (1 << shift) - 1 : 0)) >> shift;
159 static inline __u64 ldlm_pool_slv_max(__u32 L)
162 * Allow to have all locks for 1 client for 10 hrs.
163 * Formula is the following: limit * 10h / 1 client.
165 __u64 lim = (__u64)L * LDLM_POOL_MAX_AGE / 1;
169 static inline __u64 ldlm_pool_slv_min(__u32 L)
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,
183 LDLM_POOL_SHRINK_REQTD_STAT,
184 LDLM_POOL_SHRINK_FREED_STAT,
185 LDLM_POOL_RECALC_STAT,
186 LDLM_POOL_TIMING_STAT,
190 static inline struct ldlm_namespace *ldlm_pl2ns(struct ldlm_pool *pl)
192 return container_of(pl, struct ldlm_namespace, ns_pool);
196 * Calculates suggested grant_step in % of available locks for passed
197 * \a period. This is later used in grant_plan calculations.
199 static inline int ldlm_pool_t2gsp(unsigned int t)
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.
205 * How this will affect execution is the following:
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;
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
221 return LDLM_POOL_MAX_GSP -
222 ((LDLM_POOL_MAX_GSP - LDLM_POOL_MIN_GSP) >>
223 (t >> LDLM_POOL_GSP_STEP_SHIFT));
227 * Recalculates next grant limit on passed \a pl.
229 * \pre ->pl_lock is locked.
231 static inline void ldlm_pool_recalc_grant_plan(struct ldlm_pool *pl)
233 int granted, grant_step, limit;
235 limit = ldlm_pool_get_limit(pl);
236 granted = cfs_atomic_read(&pl->pl_granted);
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;
244 * Recalculates next SLV on passed \a pl.
246 * \pre ->pl_lock is locked.
248 static inline void ldlm_pool_recalc_slv(struct ldlm_pool *pl)
258 slv = pl->pl_server_lock_volume;
259 grant_plan = pl->pl_grant_plan;
260 limit = ldlm_pool_get_limit(pl);
261 granted = cfs_atomic_read(&pl->pl_granted);
262 round_up = granted < limit;
264 grant_usage = max_t(int, limit - (granted - grant_plan), 1);
267 * Find out SLV change factor which is the ratio of grant usage
268 * from limit. SLV changes as fast as the ratio of grant plan
269 * consumption. The more locks from grant plan are not consumed
270 * by clients in last interval (idle time), the faster grows
271 * SLV. And the opposite, the more grant plan is over-consumed
272 * (load time) the faster drops SLV.
274 slv_factor = (grant_usage << LDLM_POOL_SLV_SHIFT);
275 do_div(slv_factor, limit);
276 if (2 * abs(granted - limit) > limit) {
277 slv_factor *= slv_factor;
278 slv_factor = dru(slv_factor, LDLM_POOL_SLV_SHIFT, round_up);
280 slv = slv * slv_factor;
281 slv = dru(slv, LDLM_POOL_SLV_SHIFT, round_up);
283 if (slv > ldlm_pool_slv_max(limit)) {
284 slv = ldlm_pool_slv_max(limit);
285 } else if (slv < ldlm_pool_slv_min(limit)) {
286 slv = ldlm_pool_slv_min(limit);
289 pl->pl_server_lock_volume = slv;
293 * Recalculates next stats on passed \a pl.
295 * \pre ->pl_lock is locked.
297 static inline void ldlm_pool_recalc_stats(struct ldlm_pool *pl)
299 int grant_plan = pl->pl_grant_plan;
300 __u64 slv = pl->pl_server_lock_volume;
301 int granted = cfs_atomic_read(&pl->pl_granted);
302 int grant_rate = cfs_atomic_read(&pl->pl_grant_rate);
303 int cancel_rate = cfs_atomic_read(&pl->pl_cancel_rate);
305 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_SLV_STAT,
307 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
309 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
311 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
313 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
318 * Sets current SLV into obd accessible via ldlm_pl2ns(pl)->ns_obd.
320 static void ldlm_srv_pool_push_slv(struct ldlm_pool *pl)
322 struct obd_device *obd;
325 * Set new SLV in obd field for using it later without accessing the
326 * pool. This is required to avoid race between sending reply to client
327 * with new SLV and cleanup server stack in which we can't guarantee
328 * that namespace is still alive. We know only that obd is alive as
329 * long as valid export is alive.
331 obd = ldlm_pl2ns(pl)->ns_obd;
332 LASSERT(obd != NULL);
333 cfs_write_lock(&obd->obd_pool_lock);
334 obd->obd_pool_slv = pl->pl_server_lock_volume;
335 cfs_write_unlock(&obd->obd_pool_lock);
339 * Recalculates all pool fields on passed \a pl.
341 * \pre ->pl_lock is not locked.
343 static int ldlm_srv_pool_recalc(struct ldlm_pool *pl)
345 time_t recalc_interval_sec;
348 cfs_spin_lock(&pl->pl_lock);
349 recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
350 if (recalc_interval_sec >= pl->pl_recalc_period) {
352 * Recalc SLV after last period. This should be done
353 * _before_ recalculating new grant plan.
355 ldlm_pool_recalc_slv(pl);
358 * Make sure that pool informed obd of last SLV changes.
360 ldlm_srv_pool_push_slv(pl);
363 * Update grant_plan for new period.
365 ldlm_pool_recalc_grant_plan(pl);
367 pl->pl_recalc_time = cfs_time_current_sec();
368 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
369 recalc_interval_sec);
372 cfs_spin_unlock(&pl->pl_lock);
377 * This function is used on server side as main entry point for memory
378 * pressure handling. It decreases SLV on \a pl according to passed
379 * \a nr and \a gfp_mask.
381 * Our goal here is to decrease SLV such a way that clients hold \a nr
382 * locks smaller in next 10h.
384 static int ldlm_srv_pool_shrink(struct ldlm_pool *pl,
385 int nr, unsigned int gfp_mask)
390 * VM is asking how many entries may be potentially freed.
393 return cfs_atomic_read(&pl->pl_granted);
396 * Client already canceled locks but server is already in shrinker
397 * and can't cancel anything. Let's catch this race.
399 if (cfs_atomic_read(&pl->pl_granted) == 0)
402 cfs_spin_lock(&pl->pl_lock);
405 * We want shrinker to possibly cause cancellation of @nr locks from
406 * clients or grant approximately @nr locks smaller next intervals.
408 * This is why we decreased SLV by @nr. This effect will only be as
409 * long as one re-calc interval (1s these days) and this should be
410 * enough to pass this decreased SLV to all clients. On next recalc
411 * interval pool will either increase SLV if locks load is not high
412 * or will keep on same level or even decrease again, thus, shrinker
413 * decreased SLV will affect next recalc intervals and this way will
414 * make locking load lower.
416 if (nr < pl->pl_server_lock_volume) {
417 pl->pl_server_lock_volume = pl->pl_server_lock_volume - nr;
419 limit = ldlm_pool_get_limit(pl);
420 pl->pl_server_lock_volume = ldlm_pool_slv_min(limit);
424 * Make sure that pool informed obd of last SLV changes.
426 ldlm_srv_pool_push_slv(pl);
427 cfs_spin_unlock(&pl->pl_lock);
430 * We did not really free any memory here so far, it only will be
431 * freed later may be, so that we return 0 to not confuse VM.
437 * Setup server side pool \a pl with passed \a limit.
439 static int ldlm_srv_pool_setup(struct ldlm_pool *pl, int limit)
441 struct obd_device *obd;
444 obd = ldlm_pl2ns(pl)->ns_obd;
445 LASSERT(obd != NULL && obd != LP_POISON);
446 LASSERT(obd->obd_type != LP_POISON);
447 cfs_write_lock(&obd->obd_pool_lock);
448 obd->obd_pool_limit = limit;
449 cfs_write_unlock(&obd->obd_pool_lock);
451 ldlm_pool_set_limit(pl, limit);
456 * Sets SLV and Limit from ldlm_pl2ns(pl)->ns_obd tp passed \a pl.
458 static void ldlm_cli_pool_pop_slv(struct ldlm_pool *pl)
460 struct obd_device *obd;
463 * Get new SLV and Limit from obd which is updated with coming
466 obd = ldlm_pl2ns(pl)->ns_obd;
467 LASSERT(obd != NULL);
468 cfs_read_lock(&obd->obd_pool_lock);
469 pl->pl_server_lock_volume = obd->obd_pool_slv;
470 ldlm_pool_set_limit(pl, obd->obd_pool_limit);
471 cfs_read_unlock(&obd->obd_pool_lock);
475 * Recalculates client size pool \a pl according to current SLV and Limit.
477 static int ldlm_cli_pool_recalc(struct ldlm_pool *pl)
479 time_t recalc_interval_sec;
482 cfs_spin_lock(&pl->pl_lock);
484 * Check if we need to recalc lists now.
486 recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
487 if (recalc_interval_sec < pl->pl_recalc_period) {
488 cfs_spin_unlock(&pl->pl_lock);
493 * Make sure that pool knows last SLV and Limit from obd.
495 ldlm_cli_pool_pop_slv(pl);
497 pl->pl_recalc_time = cfs_time_current_sec();
498 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_TIMING_STAT,
499 recalc_interval_sec);
500 cfs_spin_unlock(&pl->pl_lock);
503 * Do not cancel locks in case lru resize is disabled for this ns.
505 if (!ns_connect_lru_resize(ldlm_pl2ns(pl)))
509 * In the time of canceling locks on client we do not need to maintain
510 * sharp timing, we only want to cancel locks asap according to new SLV.
511 * It may be called when SLV has changed much, this is why we do not
512 * take into account pl->pl_recalc_time here.
514 RETURN(ldlm_cancel_lru(ldlm_pl2ns(pl), 0, LDLM_SYNC,
519 * This function is main entry point for memory pressure handling on client
520 * side. Main goal of this function is to cancel some number of locks on
521 * passed \a pl according to \a nr and \a gfp_mask.
523 static int ldlm_cli_pool_shrink(struct ldlm_pool *pl,
524 int nr, unsigned int gfp_mask)
526 struct ldlm_namespace *ns;
527 int canceled = 0, unused;
532 * Do not cancel locks in case lru resize is disabled for this ns.
534 if (!ns_connect_lru_resize(ns))
538 * Make sure that pool knows last SLV and Limit from obd.
540 ldlm_cli_pool_pop_slv(pl);
542 cfs_spin_lock(&ns->ns_unused_lock);
543 unused = ns->ns_nr_unused;
544 cfs_spin_unlock(&ns->ns_unused_lock);
547 canceled = ldlm_cancel_lru(ns, nr, LDLM_SYNC,
552 * Return the number of potentially reclaimable locks.
554 return ((unused - canceled) / 100) * sysctl_vfs_cache_pressure;
556 return unused - canceled;
560 struct ldlm_pool_ops ldlm_srv_pool_ops = {
561 .po_recalc = ldlm_srv_pool_recalc,
562 .po_shrink = ldlm_srv_pool_shrink,
563 .po_setup = ldlm_srv_pool_setup
566 struct ldlm_pool_ops ldlm_cli_pool_ops = {
567 .po_recalc = ldlm_cli_pool_recalc,
568 .po_shrink = ldlm_cli_pool_shrink
572 * Pool recalc wrapper. Will call either client or server pool recalc callback
573 * depending what pool \a pl is used.
575 int ldlm_pool_recalc(struct ldlm_pool *pl)
577 time_t recalc_interval_sec;
580 cfs_spin_lock(&pl->pl_lock);
581 recalc_interval_sec = cfs_time_current_sec() - pl->pl_recalc_time;
582 if (recalc_interval_sec > 0) {
584 * Update pool statistics every 1s.
586 ldlm_pool_recalc_stats(pl);
589 * Zero out all rates and speed for the last period.
591 cfs_atomic_set(&pl->pl_grant_rate, 0);
592 cfs_atomic_set(&pl->pl_cancel_rate, 0);
593 cfs_atomic_set(&pl->pl_grant_speed, 0);
595 cfs_spin_unlock(&pl->pl_lock);
597 if (pl->pl_ops->po_recalc != NULL) {
598 count = pl->pl_ops->po_recalc(pl);
599 lprocfs_counter_add(pl->pl_stats, LDLM_POOL_RECALC_STAT,
606 EXPORT_SYMBOL(ldlm_pool_recalc);
609 * Pool shrink wrapper. Will call either client or server pool recalc callback
610 * depending what pool \a pl is used.
612 int ldlm_pool_shrink(struct ldlm_pool *pl, int nr,
613 unsigned int gfp_mask)
617 if (pl->pl_ops->po_shrink != NULL) {
618 cancel = pl->pl_ops->po_shrink(pl, nr, gfp_mask);
620 lprocfs_counter_add(pl->pl_stats,
621 LDLM_POOL_SHRINK_REQTD_STAT,
623 lprocfs_counter_add(pl->pl_stats,
624 LDLM_POOL_SHRINK_FREED_STAT,
626 CDEBUG(D_DLMTRACE, "%s: request to shrink %d locks, "
627 "shrunk %d\n", pl->pl_name, nr, cancel);
632 EXPORT_SYMBOL(ldlm_pool_shrink);
635 * Pool setup wrapper. Will call either client or server pool recalc callback
636 * depending what pool \a pl is used.
638 * Sets passed \a limit into pool \a pl.
640 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
643 if (pl->pl_ops->po_setup != NULL)
644 RETURN(pl->pl_ops->po_setup(pl, limit));
647 EXPORT_SYMBOL(ldlm_pool_setup);
650 static int lprocfs_rd_pool_state(char *page, char **start, off_t off,
651 int count, int *eof, void *data)
653 int granted, grant_rate, cancel_rate, grant_step;
654 int nr = 0, grant_speed, grant_plan, lvf;
655 struct ldlm_pool *pl = data;
659 cfs_spin_lock(&pl->pl_lock);
660 slv = pl->pl_server_lock_volume;
661 clv = pl->pl_client_lock_volume;
662 limit = ldlm_pool_get_limit(pl);
663 grant_plan = pl->pl_grant_plan;
664 granted = cfs_atomic_read(&pl->pl_granted);
665 grant_rate = cfs_atomic_read(&pl->pl_grant_rate);
666 lvf = cfs_atomic_read(&pl->pl_lock_volume_factor);
667 grant_speed = cfs_atomic_read(&pl->pl_grant_speed);
668 cancel_rate = cfs_atomic_read(&pl->pl_cancel_rate);
669 grant_step = ldlm_pool_t2gsp(pl->pl_recalc_period);
670 cfs_spin_unlock(&pl->pl_lock);
672 nr += snprintf(page + nr, count - nr, "LDLM pool state (%s):\n",
674 nr += snprintf(page + nr, count - nr, " SLV: "LPU64"\n", slv);
675 nr += snprintf(page + nr, count - nr, " CLV: "LPU64"\n", clv);
676 nr += snprintf(page + nr, count - nr, " LVF: %d\n", lvf);
678 if (ns_is_server(ldlm_pl2ns(pl))) {
679 nr += snprintf(page + nr, count - nr, " GSP: %d%%\n",
681 nr += snprintf(page + nr, count - nr, " GP: %d\n",
684 nr += snprintf(page + nr, count - nr, " GR: %d\n",
686 nr += snprintf(page + nr, count - nr, " CR: %d\n",
688 nr += snprintf(page + nr, count - nr, " GS: %d\n",
690 nr += snprintf(page + nr, count - nr, " G: %d\n",
692 nr += snprintf(page + nr, count - nr, " L: %d\n",
697 LDLM_POOL_PROC_READER(grant_plan, int);
698 LDLM_POOL_PROC_READER(recalc_period, int);
699 LDLM_POOL_PROC_WRITER(recalc_period, int);
701 static int ldlm_pool_proc_init(struct ldlm_pool *pl)
703 struct ldlm_namespace *ns = ldlm_pl2ns(pl);
704 struct proc_dir_entry *parent_ns_proc;
705 struct lprocfs_vars pool_vars[2];
706 char *var_name = NULL;
710 OBD_ALLOC(var_name, MAX_STRING_SIZE + 1);
714 parent_ns_proc = lprocfs_srch(ldlm_ns_proc_dir, ns->ns_name);
715 if (parent_ns_proc == NULL) {
716 CERROR("%s: proc entry is not initialized\n",
718 GOTO(out_free_name, rc = -EINVAL);
720 pl->pl_proc_dir = lprocfs_register("pool", parent_ns_proc,
722 if (IS_ERR(pl->pl_proc_dir)) {
723 CERROR("LProcFS failed in ldlm-pool-init\n");
724 rc = PTR_ERR(pl->pl_proc_dir);
725 GOTO(out_free_name, rc);
728 var_name[MAX_STRING_SIZE] = '\0';
729 memset(pool_vars, 0, sizeof(pool_vars));
730 pool_vars[0].name = var_name;
732 snprintf(var_name, MAX_STRING_SIZE, "server_lock_volume");
733 pool_vars[0].data = &pl->pl_server_lock_volume;
734 pool_vars[0].read_fptr = lprocfs_rd_u64;
735 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
737 snprintf(var_name, MAX_STRING_SIZE, "limit");
738 pool_vars[0].data = &pl->pl_limit;
739 pool_vars[0].read_fptr = lprocfs_rd_atomic;
740 pool_vars[0].write_fptr = lprocfs_wr_atomic;
741 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
743 snprintf(var_name, MAX_STRING_SIZE, "granted");
744 pool_vars[0].data = &pl->pl_granted;
745 pool_vars[0].read_fptr = lprocfs_rd_atomic;
746 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
748 snprintf(var_name, MAX_STRING_SIZE, "grant_speed");
749 pool_vars[0].data = &pl->pl_grant_speed;
750 pool_vars[0].read_fptr = lprocfs_rd_atomic;
751 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
753 snprintf(var_name, MAX_STRING_SIZE, "cancel_rate");
754 pool_vars[0].data = &pl->pl_cancel_rate;
755 pool_vars[0].read_fptr = lprocfs_rd_atomic;
756 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
758 snprintf(var_name, MAX_STRING_SIZE, "grant_rate");
759 pool_vars[0].data = &pl->pl_grant_rate;
760 pool_vars[0].read_fptr = lprocfs_rd_atomic;
761 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
763 snprintf(var_name, MAX_STRING_SIZE, "grant_plan");
764 pool_vars[0].data = pl;
765 pool_vars[0].read_fptr = lprocfs_rd_grant_plan;
766 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
768 snprintf(var_name, MAX_STRING_SIZE, "recalc_period");
769 pool_vars[0].data = pl;
770 pool_vars[0].read_fptr = lprocfs_rd_recalc_period;
771 pool_vars[0].write_fptr = lprocfs_wr_recalc_period;
772 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
774 snprintf(var_name, MAX_STRING_SIZE, "lock_volume_factor");
775 pool_vars[0].data = &pl->pl_lock_volume_factor;
776 pool_vars[0].read_fptr = lprocfs_rd_atomic;
777 pool_vars[0].write_fptr = lprocfs_wr_atomic;
778 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
780 snprintf(var_name, MAX_STRING_SIZE, "state");
781 pool_vars[0].data = pl;
782 pool_vars[0].read_fptr = lprocfs_rd_pool_state;
783 lprocfs_add_vars(pl->pl_proc_dir, pool_vars, 0);
785 pl->pl_stats = lprocfs_alloc_stats(LDLM_POOL_LAST_STAT -
786 LDLM_POOL_FIRST_STAT, 0);
788 GOTO(out_free_name, rc = -ENOMEM);
790 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANTED_STAT,
791 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
793 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_STAT,
794 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
796 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_STAT,
797 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
799 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_RATE_STAT,
800 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
801 "grant_rate", "locks/s");
802 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_CANCEL_RATE_STAT,
803 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
804 "cancel_rate", "locks/s");
805 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_GRANT_PLAN_STAT,
806 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
807 "grant_plan", "locks/s");
808 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SLV_STAT,
809 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
811 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_REQTD_STAT,
812 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
813 "shrink_request", "locks");
814 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_SHRINK_FREED_STAT,
815 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
816 "shrink_freed", "locks");
817 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_RECALC_STAT,
818 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
819 "recalc_freed", "locks");
820 lprocfs_counter_init(pl->pl_stats, LDLM_POOL_TIMING_STAT,
821 LPROCFS_CNTR_AVGMINMAX | LPROCFS_CNTR_STDDEV,
822 "recalc_timing", "sec");
823 lprocfs_register_stats(pl->pl_proc_dir, "stats", pl->pl_stats);
827 OBD_FREE(var_name, MAX_STRING_SIZE + 1);
831 static void ldlm_pool_proc_fini(struct ldlm_pool *pl)
833 if (pl->pl_stats != NULL) {
834 lprocfs_free_stats(&pl->pl_stats);
837 if (pl->pl_proc_dir != NULL) {
838 lprocfs_remove(&pl->pl_proc_dir);
839 pl->pl_proc_dir = NULL;
842 #else /* !__KERNEL__*/
843 #define ldlm_pool_proc_init(pl) (0)
844 #define ldlm_pool_proc_fini(pl) while (0) {}
847 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
848 int idx, ldlm_side_t client)
853 cfs_spin_lock_init(&pl->pl_lock);
854 cfs_atomic_set(&pl->pl_granted, 0);
855 pl->pl_recalc_time = cfs_time_current_sec();
856 cfs_atomic_set(&pl->pl_lock_volume_factor, 1);
858 cfs_atomic_set(&pl->pl_grant_rate, 0);
859 cfs_atomic_set(&pl->pl_cancel_rate, 0);
860 cfs_atomic_set(&pl->pl_grant_speed, 0);
861 pl->pl_grant_plan = LDLM_POOL_GP(LDLM_POOL_HOST_L);
863 snprintf(pl->pl_name, sizeof(pl->pl_name), "ldlm-pool-%s-%d",
866 if (client == LDLM_NAMESPACE_SERVER) {
867 pl->pl_ops = &ldlm_srv_pool_ops;
868 ldlm_pool_set_limit(pl, LDLM_POOL_HOST_L);
869 pl->pl_recalc_period = LDLM_POOL_SRV_DEF_RECALC_PERIOD;
870 pl->pl_server_lock_volume = ldlm_pool_slv_max(LDLM_POOL_HOST_L);
872 ldlm_pool_set_limit(pl, 1);
873 pl->pl_server_lock_volume = 0;
874 pl->pl_ops = &ldlm_cli_pool_ops;
875 pl->pl_recalc_period = LDLM_POOL_CLI_DEF_RECALC_PERIOD;
877 pl->pl_client_lock_volume = 0;
878 rc = ldlm_pool_proc_init(pl);
882 CDEBUG(D_DLMTRACE, "Lock pool %s is initialized\n", pl->pl_name);
886 EXPORT_SYMBOL(ldlm_pool_init);
888 void ldlm_pool_fini(struct ldlm_pool *pl)
891 ldlm_pool_proc_fini(pl);
894 * Pool should not be used after this point. We can't free it here as
895 * it lives in struct ldlm_namespace, but still interested in catching
896 * any abnormal using cases.
898 POISON(pl, 0x5a, sizeof(*pl));
901 EXPORT_SYMBOL(ldlm_pool_fini);
904 * Add new taken ldlm lock \a lock into pool \a pl accounting.
906 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
909 * FLOCK locks are special in a sense that they are almost never
910 * cancelled, instead special kind of lock is used to drop them.
911 * also there is no LRU for flock locks, so no point in tracking
914 if (lock->l_resource->lr_type == LDLM_FLOCK)
918 LDLM_DEBUG(lock, "add lock to pool");
919 cfs_atomic_inc(&pl->pl_granted);
920 cfs_atomic_inc(&pl->pl_grant_rate);
921 cfs_atomic_inc(&pl->pl_grant_speed);
923 lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_GRANT_STAT);
925 * Do not do pool recalc for client side as all locks which
926 * potentially may be canceled has already been packed into
927 * enqueue/cancel rpc. Also we do not want to run out of stack
928 * with too long call paths.
930 if (ns_is_server(ldlm_pl2ns(pl)))
931 ldlm_pool_recalc(pl);
934 EXPORT_SYMBOL(ldlm_pool_add);
937 * Remove ldlm lock \a lock from pool \a pl accounting.
939 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
942 * Filter out FLOCK locks. Read above comment in ldlm_pool_add().
944 if (lock->l_resource->lr_type == LDLM_FLOCK)
948 LDLM_DEBUG(lock, "del lock from pool");
949 LASSERT(cfs_atomic_read(&pl->pl_granted) > 0);
950 cfs_atomic_dec(&pl->pl_granted);
951 cfs_atomic_inc(&pl->pl_cancel_rate);
952 cfs_atomic_dec(&pl->pl_grant_speed);
954 lprocfs_counter_incr(pl->pl_stats, LDLM_POOL_CANCEL_STAT);
956 if (ns_is_server(ldlm_pl2ns(pl)))
957 ldlm_pool_recalc(pl);
960 EXPORT_SYMBOL(ldlm_pool_del);
963 * Returns current \a pl SLV.
965 * \pre ->pl_lock is not locked.
967 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
970 cfs_spin_lock(&pl->pl_lock);
971 slv = pl->pl_server_lock_volume;
972 cfs_spin_unlock(&pl->pl_lock);
975 EXPORT_SYMBOL(ldlm_pool_get_slv);
978 * Sets passed \a slv to \a pl.
980 * \pre ->pl_lock is not locked.
982 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
984 cfs_spin_lock(&pl->pl_lock);
985 pl->pl_server_lock_volume = slv;
986 cfs_spin_unlock(&pl->pl_lock);
988 EXPORT_SYMBOL(ldlm_pool_set_slv);
991 * Returns current \a pl CLV.
993 * \pre ->pl_lock is not locked.
995 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
998 cfs_spin_lock(&pl->pl_lock);
999 slv = pl->pl_client_lock_volume;
1000 cfs_spin_unlock(&pl->pl_lock);
1003 EXPORT_SYMBOL(ldlm_pool_get_clv);
1006 * Sets passed \a clv to \a pl.
1008 * \pre ->pl_lock is not locked.
1010 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1012 cfs_spin_lock(&pl->pl_lock);
1013 pl->pl_client_lock_volume = clv;
1014 cfs_spin_unlock(&pl->pl_lock);
1016 EXPORT_SYMBOL(ldlm_pool_set_clv);
1019 * Returns current \a pl limit.
1021 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1023 return cfs_atomic_read(&pl->pl_limit);
1025 EXPORT_SYMBOL(ldlm_pool_get_limit);
1028 * Sets passed \a limit to \a pl.
1030 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1032 cfs_atomic_set(&pl->pl_limit, limit);
1034 EXPORT_SYMBOL(ldlm_pool_set_limit);
1037 * Returns current LVF from \a pl.
1039 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1041 return cfs_atomic_read(&pl->pl_lock_volume_factor);
1043 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1046 static int ldlm_pool_granted(struct ldlm_pool *pl)
1048 return cfs_atomic_read(&pl->pl_granted);
1051 static struct ptlrpc_thread *ldlm_pools_thread;
1052 static struct cfs_shrinker *ldlm_pools_srv_shrinker;
1053 static struct cfs_shrinker *ldlm_pools_cli_shrinker;
1054 static cfs_completion_t ldlm_pools_comp;
1057 * Cancel \a nr locks from all namespaces (if possible). Returns number of
1058 * cached locks after shrink is finished. All namespaces are asked to
1059 * cancel approximately equal amount of locks to keep balancing.
1061 static int ldlm_pools_shrink(ldlm_side_t client, int nr,
1062 unsigned int gfp_mask)
1064 int total = 0, cached = 0, nr_ns;
1065 struct ldlm_namespace *ns;
1068 if (nr != 0 && !(gfp_mask & __GFP_FS))
1071 CDEBUG(D_DLMTRACE, "Request to shrink %d %s locks from all pools\n",
1072 nr, client == LDLM_NAMESPACE_CLIENT ? "client" : "server");
1074 cookie = cl_env_reenter();
1077 * Find out how many resources we may release.
1079 for (nr_ns = cfs_atomic_read(ldlm_namespace_nr(client));
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);
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);
1096 if (nr == 0 || total == 0) {
1097 cl_env_reexit(cookie);
1102 * Shrink at least ldlm_namespace_nr(client) namespaces.
1104 for (nr_ns = cfs_atomic_read(ldlm_namespace_nr(client));
1107 int cancel, nr_locks;
1110 * Do not call shrink under ldlm_namespace_lock(client)
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));
1116 * If list is empty, we can't return any @cached > 0,
1117 * that probably would cause needless shrinker
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));
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);
1134 cl_env_reexit(cookie);
1138 static int ldlm_pools_srv_shrink(int nr, unsigned int gfp_mask)
1140 return ldlm_pools_shrink(LDLM_NAMESPACE_SERVER, nr, gfp_mask);
1143 static int ldlm_pools_cli_shrink(int nr, unsigned int gfp_mask)
1145 return ldlm_pools_shrink(LDLM_NAMESPACE_CLIENT, nr, gfp_mask);
1148 void ldlm_pools_recalc(ldlm_side_t client)
1150 __u32 nr_l = 0, nr_p = 0, l;
1151 struct ldlm_namespace *ns;
1155 * No need to setup pool limit for client pools.
1157 if (client == LDLM_NAMESPACE_SERVER) {
1159 * Check all modest namespaces first.
1161 cfs_mutex_down(ldlm_namespace_lock(client));
1162 cfs_list_for_each_entry(ns, ldlm_namespace_list(client),
1165 if (ns->ns_appetite != LDLM_NAMESPACE_MODEST)
1168 l = ldlm_pool_granted(&ns->ns_pool);
1173 * Set the modest pools limit equal to their avg granted
1176 l += dru(l, LDLM_POOLS_MODEST_MARGIN_SHIFT, 0);
1177 ldlm_pool_setup(&ns->ns_pool, l);
1183 * Make sure that modest namespaces did not eat more that 2/3
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);
1195 * The rest is given to greedy namespaces.
1197 cfs_list_for_each_entry(ns, ldlm_namespace_list(client),
1200 if (!equal && ns->ns_appetite != LDLM_NAMESPACE_GREEDY)
1205 * In the case 2/3 locks are eaten out by
1206 * modest pools, we re-setup equal limit
1209 l = LDLM_POOL_HOST_L /
1211 ldlm_namespace_nr(client));
1214 * All the rest of greedy pools will have
1215 * all locks in equal parts.
1217 l = (LDLM_POOL_HOST_L - nr_l) /
1219 ldlm_namespace_nr(client)) -
1222 ldlm_pool_setup(&ns->ns_pool, l);
1224 cfs_mutex_up(ldlm_namespace_lock(client));
1228 * Recalc at least ldlm_namespace_nr(client) namespaces.
1230 for (nr = cfs_atomic_read(ldlm_namespace_nr(client)); nr > 0; nr--) {
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.
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));
1244 ns = ldlm_namespace_first_locked(client);
1246 cfs_spin_lock(&ns->ns_hash_lock);
1248 * skip ns which is being freed, and we don't want to increase
1249 * its refcount again, not even temporarily. bz21519.
1251 if (ns->ns_refcount == 0) {
1255 ldlm_namespace_get_locked(ns);
1257 cfs_spin_unlock(&ns->ns_hash_lock);
1259 ldlm_namespace_move_locked(ns, client);
1260 cfs_mutex_up(ldlm_namespace_lock(client));
1263 * After setup is done - recalc the pool.
1266 ldlm_pool_recalc(&ns->ns_pool);
1267 ldlm_namespace_put(ns, 1);
1271 EXPORT_SYMBOL(ldlm_pools_recalc);
1273 static int ldlm_pools_thread_main(void *arg)
1275 struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg;
1276 char *t_name = "ldlm_poold";
1279 cfs_daemonize(t_name);
1280 thread->t_flags = SVC_RUNNING;
1281 cfs_waitq_signal(&thread->t_ctl_waitq);
1283 CDEBUG(D_DLMTRACE, "%s: pool thread starting, process %d\n",
1284 t_name, cfs_curproc_pid());
1287 struct l_wait_info lwi;
1290 * Recal all pools on this tick.
1292 ldlm_pools_recalc(LDLM_NAMESPACE_SERVER);
1293 ldlm_pools_recalc(LDLM_NAMESPACE_CLIENT);
1296 * Wait until the next check time, or until we're
1299 lwi = LWI_TIMEOUT(cfs_time_seconds(LDLM_POOLS_THREAD_PERIOD),
1301 l_wait_event(thread->t_ctl_waitq, (thread->t_flags &
1302 (SVC_STOPPING|SVC_EVENT)),
1305 if (thread->t_flags & SVC_STOPPING) {
1306 thread->t_flags &= ~SVC_STOPPING;
1308 } else if (thread->t_flags & SVC_EVENT) {
1309 thread->t_flags &= ~SVC_EVENT;
1313 thread->t_flags = SVC_STOPPED;
1314 cfs_waitq_signal(&thread->t_ctl_waitq);
1316 CDEBUG(D_DLMTRACE, "%s: pool thread exiting, process %d\n",
1317 t_name, cfs_curproc_pid());
1319 cfs_complete_and_exit(&ldlm_pools_comp, 0);
1322 static int ldlm_pools_thread_start(void)
1324 struct l_wait_info lwi = { 0 };
1328 if (ldlm_pools_thread != NULL)
1331 OBD_ALLOC_PTR(ldlm_pools_thread);
1332 if (ldlm_pools_thread == NULL)
1335 cfs_init_completion(&ldlm_pools_comp);
1336 cfs_waitq_init(&ldlm_pools_thread->t_ctl_waitq);
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.
1342 rc = cfs_kernel_thread(ldlm_pools_thread_main, ldlm_pools_thread,
1343 CLONE_VM | CLONE_FILES);
1345 CERROR("Can't start pool thread, error %d\n",
1347 OBD_FREE(ldlm_pools_thread, sizeof(*ldlm_pools_thread));
1348 ldlm_pools_thread = NULL;
1351 l_wait_event(ldlm_pools_thread->t_ctl_waitq,
1352 (ldlm_pools_thread->t_flags & SVC_RUNNING), &lwi);
1356 static void ldlm_pools_thread_stop(void)
1360 if (ldlm_pools_thread == NULL) {
1365 ldlm_pools_thread->t_flags = SVC_STOPPING;
1366 cfs_waitq_signal(&ldlm_pools_thread->t_ctl_waitq);
1369 * Make sure that pools thread is finished before freeing @thread.
1370 * This fixes possible race and oops due to accessing freed memory
1373 cfs_wait_for_completion(&ldlm_pools_comp);
1374 OBD_FREE_PTR(ldlm_pools_thread);
1375 ldlm_pools_thread = NULL;
1379 int ldlm_pools_init(void)
1384 rc = ldlm_pools_thread_start();
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);
1395 EXPORT_SYMBOL(ldlm_pools_init);
1397 void ldlm_pools_fini(void)
1399 if (ldlm_pools_srv_shrinker != NULL) {
1400 cfs_remove_shrinker(ldlm_pools_srv_shrinker);
1401 ldlm_pools_srv_shrinker = NULL;
1403 if (ldlm_pools_cli_shrinker != NULL) {
1404 cfs_remove_shrinker(ldlm_pools_cli_shrinker);
1405 ldlm_pools_cli_shrinker = NULL;
1407 ldlm_pools_thread_stop();
1409 EXPORT_SYMBOL(ldlm_pools_fini);
1410 #endif /* __KERNEL__ */
1412 #else /* !HAVE_LRU_RESIZE_SUPPORT */
1413 int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
1417 EXPORT_SYMBOL(ldlm_pool_setup);
1419 int ldlm_pool_recalc(struct ldlm_pool *pl)
1423 EXPORT_SYMBOL(ldlm_pool_recalc);
1425 int ldlm_pool_shrink(struct ldlm_pool *pl,
1426 int nr, unsigned int gfp_mask)
1430 EXPORT_SYMBOL(ldlm_pool_shrink);
1432 int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
1433 int idx, ldlm_side_t client)
1437 EXPORT_SYMBOL(ldlm_pool_init);
1439 void ldlm_pool_fini(struct ldlm_pool *pl)
1443 EXPORT_SYMBOL(ldlm_pool_fini);
1445 void ldlm_pool_add(struct ldlm_pool *pl, struct ldlm_lock *lock)
1449 EXPORT_SYMBOL(ldlm_pool_add);
1451 void ldlm_pool_del(struct ldlm_pool *pl, struct ldlm_lock *lock)
1455 EXPORT_SYMBOL(ldlm_pool_del);
1457 __u64 ldlm_pool_get_slv(struct ldlm_pool *pl)
1461 EXPORT_SYMBOL(ldlm_pool_get_slv);
1463 void ldlm_pool_set_slv(struct ldlm_pool *pl, __u64 slv)
1467 EXPORT_SYMBOL(ldlm_pool_set_slv);
1469 __u64 ldlm_pool_get_clv(struct ldlm_pool *pl)
1473 EXPORT_SYMBOL(ldlm_pool_get_clv);
1475 void ldlm_pool_set_clv(struct ldlm_pool *pl, __u64 clv)
1479 EXPORT_SYMBOL(ldlm_pool_set_clv);
1481 __u32 ldlm_pool_get_limit(struct ldlm_pool *pl)
1485 EXPORT_SYMBOL(ldlm_pool_get_limit);
1487 void ldlm_pool_set_limit(struct ldlm_pool *pl, __u32 limit)
1491 EXPORT_SYMBOL(ldlm_pool_set_limit);
1493 __u32 ldlm_pool_get_lvf(struct ldlm_pool *pl)
1497 EXPORT_SYMBOL(ldlm_pool_get_lvf);
1499 int ldlm_pools_init(void)
1503 EXPORT_SYMBOL(ldlm_pools_init);
1505 void ldlm_pools_fini(void)
1509 EXPORT_SYMBOL(ldlm_pools_fini);
1511 void ldlm_pools_recalc(ldlm_side_t client)
1515 EXPORT_SYMBOL(ldlm_pools_recalc);
1516 #endif /* HAVE_LRU_RESIZE_SUPPORT */