Re: Tasklet doubt!

From: Jeff Garzik (jgarzik@pobox.com)
Date: Fri Apr 11 2003 - 11:45:01 EST


On Fri, Apr 11, 2003 at 09:49:01PM +0530, Sriram Narasimhan wrote:
> Hello,
>
> How much of memory can be allocated from a tasklet ? [ kmalloc
> (GFP_ATOMIC) ].
>
> I was able to allocate upto 2.5 MB. But I would like to allocate upto
> 8MB. Is this possible?

You don't want to do that :) You're starving other GFP_ATOMIC
processes, and will increase system failures due to lack of memory...
even though there may be plenty outside the emergency pools.

One option is to create a background kernel thread (via schedule_task or
schedule_work, depending on your kernel version) that allocates memory
which your tasklet then takes.

        Jeff

-
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/



This archive was generated by hypermail 2b29 : Tue Apr 15 2003 - 22:00:23 EST