OpenCores
URL https://opencores.org/ocsvn/c0or1k/c0or1k/trunk

Subversion Repositories c0or1k

[/] [c0or1k/] [trunk/] [conts/] [libl4/] [src/] [lib/] [idpool.c] - Rev 2

Compare with Previous | Blame | View Log

/*
 * Used for thread and space ids, and also for
 * utcb tracking in page-sized-chunks.
 *
 * Copyright (C) 2009 B Labs Ltd.
 */
#include <stdio.h>
#include <l4lib/lib/idpool.h>
#include <l4/api/errno.h>
#include <malloc/malloc.h>
 
void id_pool_init(struct id_pool *pool, int totalbits)
{
	pool->nwords = BITWISE_GETWORD(totalbits) + 1;
	pool->bitlimit = totalbits;
}
 
struct id_pool *id_pool_new_init(int totalbits)
{
	int nwords = BITWISE_GETWORD(totalbits) + 1;
	struct id_pool *new = kzalloc((nwords * SZ_WORD)
				      + sizeof(struct id_pool));
	if (!new)
		return PTR_ERR(-ENOMEM);
 
	new->nwords = nwords;
	new->bitlimit = totalbits;
 
	return new;
}
 
/* Search for a free slot up to the limit given */
int id_new(struct id_pool *pool)
{
	return find_and_set_first_free_bit(pool->bitmap, pool->bitlimit);
}
 
/* This finds n contiguous free ids, allocates and returns the first one */
int ids_new_contiguous(struct id_pool *pool, int numids)
{
	int id = find_and_set_first_free_contig_bits(pool->bitmap,
						     pool->bitlimit,
						     numids);
	if (id < 0)
		printf("%s: Warning! New id alloc failed\n", __FUNCTION__);
	return id;
}
 
/* This deletes a list of contiguous ids given the first one and number of ids */
int ids_del_contiguous(struct id_pool *pool, int first, int numids)
{
	int ret;
 
	if (pool->nwords * WORD_BITS < first + numids)
		return -1;
	if ((ret = check_and_clear_contig_bits(pool->bitmap, first, numids)))
		printf("%s: Error: Invalid argument range.\n", __FUNCTION__);
	return ret;
}
 
int id_del(struct id_pool *pool, int id)
{
	int ret;
 
	if (pool->nwords * WORD_BITS < id)
		return -1;
 
	if ((ret = check_and_clear_bit(pool->bitmap, id) < 0))
		printf("%s: Error: Could not delete id.\n", __FUNCTION__);
	return ret;
}
 
/* Return a specific id, if available */
int id_get(struct id_pool *pool, int id)
{
	int ret;
 
	ret = check_and_set_bit(pool->bitmap, id);
 
	if (ret < 0)
		return ret;
	else
		return id;
}
 
int id_is_empty(struct id_pool *pool)
{
	for (int i = 0; i < pool->nwords; i++)
		if (pool->bitmap[i])
			return 0;
	return 1;
}
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.