isolated memory pools ?

Muthian Sivathanu (muthian_s@yahoo.com)
Wed, 14 May 2003 09:35:58 -0700 (PDT)


Hi,

Does anyone know if there is a simple way to manage
isolated memory pools in linux ? I am writing a
device driver that does a lot of memory allocation to
keep track of some internal data structures. However,
when the system is subjected to an I/O intensive
workload for instance, the file system cache takes
away a lot of memory, leading to unpredictable delays
in memory allocation within my driver, which creates a
lot of performance problems.

Ideally, I would like to be able to allocate my own
memory pool, say, with 10% of the host memory, and
then have total control over it, i.e. the rest of the
kernel should not allocate from this space, and my
local free_pages should return memory back to my local
pool. One obvious way to do this would be to pin
those pages to memory and then write my own memory
management routines to handle allocations within the
pool, but that seems time consuming and hard. Is
there a way the existing kernel memory management
routines can be harnessed to manage
such an isolated free pool ?

Thanks,
Muthian.

P.S: Please CC my personal address in your replies
since I am not a member of
the mailing list.

__________________________________
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.
http://search.yahoo.com
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/