Searched defs:granted (Results 1 - 3 of 3) sorted by relevance

/drivers/staging/lustre/lustre/ldlm/
H A Dldlm_lock.c649 * Add a lock to list of just granted locks to send completion AST to.
655 LDLM_DEBUG(lock, "lock granted; sending completion AST.");
897 * Finds a position to insert the new lock into granted lock list.
902 * queue [input]: the granted list where search acts on;
988 * Add a lock into resource granted list after a position described by
1023 * Add a lock to granted list on a resource maintaining skiplist
1039 * Includes putting the lock into granted list and updating lock mode.
1174 * Used to prevent certain races in LOV/OSC where the lock is granted, but LVB
1212 * If 'flags' contains LDLM_FL_BLOCK_GRANTED, then only locks on the granted
1550 * into granted o
2109 int granted = 0; local
[all...]
H A Dldlm_pool.c44 * granted locks, grant speed for past period, etc - that is, locking load.
84 * pl_granted - Number of granted locks (calculated);
85 * pl_grant_rate - Number of granted locks for last T (calculated);
88 * pl_grant_plan - Planned number of granted locks for next T (calculated);
224 int granted, grant_step, limit; local
227 granted = atomic_read(&pl->pl_granted);
230 grant_step = ((limit - granted) * grant_step) / 100;
231 pl->pl_grant_plan = granted + grant_step;
244 int granted; local
255 granted
291 int granted = atomic_read(&pl->pl_granted); local
642 int granted, grant_rate, cancel_rate, grant_step; local
[all...]
H A Dldlm_resource.c70 /* during debug dump certain amount of granted locks for one resource to avoid
1390 unsigned int granted = 0; local
1406 ++granted > ldlm_dump_granted_max) {
1407 CDEBUG(level, "only dump %d granted locks to "
1408 "avoid DDOS.\n", granted);

Completed in 83 milliseconds