#include <sys/cdefs.h>
#if !defined(lint)
__RCSID("$NetBSD: alloc.c,v 1.1 2010/06/14 21:06:09 pooka Exp $");
#endif
#include <sys/param.h>
#include <sys/condvar.h>
#include <sys/kmem.h>
#include <sys/kthread.h>
#include <sys/mutex.h>
#include <sys/pool.h>
#include <sys/proc.h>
#include <uvm/uvm.h>
#include <rump/rumpuser.h>
#include "kernspace.h"
static void *store[32];
static struct pool pp1, pp2;
static kmutex_t mtx;
static kcondvar_t kcv;
static int curstat;
static void
hthr(void *arg)
{
int i;
mutex_enter(&mtx);
curstat++;
cv_signal(&kcv);
while (curstat < 2)
cv_wait(&kcv, &mtx);
mutex_exit(&mtx);
while ((kernel_map->flags & VM_MAP_WANTVA) == 0)
kpause("take5", false, 1, NULL);
for (i = 0; i < __arraycount(store); i++) {
pool_put(&pp1, store[i]);
}
kthread_exit(0);
}
void
rumptest_alloc(size_t thelimit)
{
char *c;
int succ, i;
mutex_init(&mtx, MUTEX_DEFAULT, IPL_NONE);
cv_init(&kcv, "venailu");
kthread_create(PRI_NONE, KTHREAD_MPSAFE, NULL, hthr, NULL, NULL, "h");
pool_init(&pp1, 1024, 0, 0, 0, "vara-allas",
&pool_allocator_nointr, IPL_NONE);
pool_init(&pp2, 1024, 0, 0, 0, "allas",
&pool_allocator_nointr, IPL_NONE);
for (i = 0; i < __arraycount(store); i++) {
store[i] = pool_get(&pp1, PR_NOWAIT);
if (store[i] == NULL) {
panic("pool_get store failed");
}
}
mutex_enter(&mtx);
while (curstat == 0)
cv_wait(&kcv, &mtx);
mutex_exit(&mtx);
for (succ = 0;; succ++) {
if (succ * 1024 > thelimit)
panic("managed to allocate over limit");
if ((c = pool_get(&pp2, PR_NOWAIT)) == NULL) {
mutex_enter(&mtx);
curstat++;
cv_signal(&kcv);
mutex_exit(&mtx);
if (pool_get(&pp2, PR_WAITOK) == NULL)
panic("pool get PR_WAITOK failed");
break;
}
*c = 'a';
}
}