All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 ] ALSA: core: memalloc: add page alignment for iram
@ 2020-12-17 16:15 Robin Gong
  2020-12-17  9:38   ` Takashi Iwai
  2020-12-17  9:43 ` Lars-Peter Clausen
  0 siblings, 2 replies; 20+ messages in thread
From: Robin Gong @ 2020-12-17 16:15 UTC (permalink / raw)
  To: perex, tiwai, akpm, xiang, pierre-louis.bossart, gustavoars,
	shengjiu.wang
  Cc: alsa-devel, linux-kernel

Since mmap for userspace is based on page alignment, add page alignment
for iram alloc from pool, otherwise, some good data located in the same
page of dmab->area maybe touched wrongly by userspace like pulseaudio.

Signed-off-by: Robin Gong <yibin.gong@nxp.com>
---
 sound/core/memalloc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sound/core/memalloc.c b/sound/core/memalloc.c
index 0aeeb62..0f33516 100644
--- a/sound/core/memalloc.c
+++ b/sound/core/memalloc.c
@@ -77,7 +77,8 @@ static void snd_malloc_dev_iram(struct snd_dma_buffer *dmab, size_t size)
 	/* Assign the pool into private_data field */
 	dmab->private_data = pool;
 
-	dmab->area = gen_pool_dma_alloc(pool, size, &dmab->addr);
+	dmab->area = gen_pool_dma_alloc_align(pool, size, &dmab->addr,
+					PAGE_SIZE);
 }
 
 /**
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2020-12-17 16:29 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-17 16:15 [PATCH v1 ] ALSA: core: memalloc: add page alignment for iram Robin Gong
2020-12-17  9:38 ` Takashi Iwai
2020-12-17  9:38   ` Takashi Iwai
2020-12-17  9:43 ` Lars-Peter Clausen
2020-12-17  9:55   ` Takashi Iwai
2020-12-17  9:55     ` Takashi Iwai
2020-12-17 10:14     ` Takashi Iwai
2020-12-17 10:14       ` Takashi Iwai
2020-12-17 10:44       ` Lars-Peter Clausen
2020-12-17 10:44         ` Lars-Peter Clausen
2020-12-17 10:59     ` Lars-Peter Clausen
2020-12-17 10:59       ` Lars-Peter Clausen
2020-12-17 11:06       ` Takashi Iwai
2020-12-17 11:06         ` Takashi Iwai
2020-12-17 13:16         ` Lars-Peter Clausen
2020-12-17 14:24           ` Takashi Iwai
2020-12-17 14:57             ` Lars-Peter Clausen
2020-12-17 15:18               ` Takashi Iwai
2020-12-17 15:38                 ` Lars-Peter Clausen
2020-12-17 16:28                   ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.