| version 1.101.2.11, 2008/02/27 08:36:56 |
version 1.101.2.12, 2008/03/17 09:15:34 |
| Line 996 pool_get(struct pool *pp, int flags) |
|
| Line 996 pool_get(struct pool *pp, int flags) |
|
| #endif /* DIAGNOSTIC */ |
#endif /* DIAGNOSTIC */ |
| #ifdef LOCKDEBUG |
#ifdef LOCKDEBUG |
| if (flags & PR_WAITOK) |
if (flags & PR_WAITOK) |
| ASSERT_SLEEPABLE(NULL, "pool_get(PR_WAITOK)"); |
ASSERT_SLEEPABLE(); |
| #endif |
#endif |
| |
|
| mutex_enter(&pp->pr_lock); |
mutex_enter(&pp->pr_lock); |
| Line 1288 pool_do_put(struct pool *pp, void *v, st |
|
| Line 1288 pool_do_put(struct pool *pp, void *v, st |
|
| if (ph->ph_nmissing == 0) { |
if (ph->ph_nmissing == 0) { |
| pp->pr_nidle++; |
pp->pr_nidle++; |
| if (pp->pr_npages > pp->pr_minpages && |
if (pp->pr_npages > pp->pr_minpages && |
| (pp->pr_npages > pp->pr_maxpages || |
pp->pr_npages > pp->pr_maxpages) { |
| pa_starved_p(pp->pr_alloc))) { |
|
| pr_rmpage(pp, ph, pq); |
pr_rmpage(pp, ph, pq); |
| } else { |
} else { |
| LIST_REMOVE(ph, ph_pagelist); |
LIST_REMOVE(ph, ph_pagelist); |
| Line 2523 pool_cache_get_paddr(pool_cache_t pc, in |
|
| Line 2522 pool_cache_get_paddr(pool_cache_t pc, in |
|
| |
|
| #ifdef LOCKDEBUG |
#ifdef LOCKDEBUG |
| if (flags & PR_WAITOK) |
if (flags & PR_WAITOK) |
| ASSERT_SLEEPABLE(NULL, "pool_cache_get(PR_WAITOK)"); |
ASSERT_SLEEPABLE(); |
| #endif |
#endif |
| |
|
| cc = pool_cache_cpu_enter(pc, &s); |
cc = pool_cache_cpu_enter(pc, &s); |
|
|
| snprintf(cpucachestr, |
snprintf(cpucachestr, |
| sizeof(cpucachestr), |
sizeof(cpucachestr), |
| "cached by CPU %u", |
"cached by CPU %u", |
| (u_int)ci->ci_cpuid); |
ci->ci_index); |
| goto print; |
goto print; |
| } |
} |
| } |
} |