aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/em28xx/em28xx-audio.c
diff options
context:
space:
mode:
authorRobert Krakora <rob.krakora@messagenetsystems.com>2009-05-28 11:16:19 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 18:21:16 -0300
commit75c74d1c78ec3b713a986e0efc645ed558384cdf (patch)
treec37df54bc361a2a9122f0ba853a9bc92197fca47 /drivers/media/video/em28xx/em28xx-audio.c
parentf41b6961566b2cd038ad91568882f8fc1feac160 (diff)
downloadkernel_samsung_smdk4412-75c74d1c78ec3b713a986e0efc645ed558384cdf.zip
kernel_samsung_smdk4412-75c74d1c78ec3b713a986e0efc645ed558384cdf.tar.gz
kernel_samsung_smdk4412-75c74d1c78ec3b713a986e0efc645ed558384cdf.tar.bz2
V4L/DVB (11896): em28xx: Fix for Slow Memory Leak
Test Code: (Provided by Douglas) v4l-dvb/v4l2-apps/test/stress-buffer.c The audio DMA area was never being freed and would slowly leak over time as the v4l device was opened and closed by an application. Thanks again to Douglas for generating the test code to help locate memory leaks!!! Signed-off-by: Robert Krakora <rob.krakora@messagenetsystems.com> Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/em28xx/em28xx-audio.c')
-rw-r--r--drivers/media/video/em28xx/em28xx-audio.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/video/em28xx/em28xx-audio.c b/drivers/media/video/em28xx/em28xx-audio.c
index 0131322..7bd8a70 100644
--- a/drivers/media/video/em28xx/em28xx-audio.c
+++ b/drivers/media/video/em28xx/em28xx-audio.c
@@ -339,6 +339,11 @@ static int snd_em28xx_pcm_close(struct snd_pcm_substream *substream)
mutex_lock(&dev->lock);
dev->adev.users--;
em28xx_audio_analog_set(dev);
+ if (substream->runtime->dma_area) {
+ dprintk("freeing\n");
+ vfree(substream->runtime->dma_area);
+ substream->runtime->dma_area = NULL;
+ }
mutex_unlock(&dev->lock);
return 0;