dma: make memory allocations atomic
This commit is contained in:
parent
10e8b00fb0
commit
d1805c2f00
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@ static void dmabuf_destroy(struct kent *kent)
|
|||
struct dmabuf *dmabuf_create(struct device *dev, size_t len)
|
||||
{
|
||||
int err = 0;
|
||||
struct dmabuf *buf = malloc(sizeof(*buf) + len);
|
||||
/*
|
||||
* allocation needs to be atomic because the buffer might be
|
||||
* free()d from within an irq handler which cannot sleep
|
||||
*/
|
||||
struct dmabuf *buf = atomic_malloc(sizeof(*buf) + len);
|
||||
if (buf == NULL)
|
||||
return NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue