diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-06-02 02:40:51 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-06-02 02:40:51 -0400 |
commit | 8a4259bf89d23bfd58d87e275ef6da29cea6b3c5 (patch) | |
tree | ee96ea01ae32a828f1446f52bd2534783e0c8dfd /sound/pci/ctxfi/ctatc.c | |
parent | aae80dc24aeddec4e2b6e182a43491942f8667d3 (diff) |
ALSA: ctxfi - Fix Oops at mmapping
Replace a spinlock with a mutex protecting the vm block list at
mmap / munmap calls, which caused Oops like below:
BUG: sleeping function called from invalid context at mm/slub.c:1599
in_atomic(): 0, irqs_disabled(): 1, pid: 32065, name: xine
Pid: 32065, comm: xine Tainted: P 2.6.29.4-75.fc10.x86_64 #1
Call Trace:
[<ffffffff81040685>] __might_sleep+0x105/0x10a
[<ffffffff810c9fae>] kmem_cache_alloc+0x32/0xe2
[<ffffffffa08e3110>] ct_vm_map+0xfa/0x19e [snd_ctxfi]
[<ffffffffa08e1a07>] ct_map_audio_buffer+0x4c/0x76 [snd_ctxfi]
[<ffffffffa08e2aa5>] atc_pcm_playback_prepare+0x1d7/0x2a8 [snd_ctxfi]
[<ffffffff8105ef3f>] ? up_read+0x9/0xb
[<ffffffff81186b61>] ? __up_read+0x7c/0x87
[<ffffffffa08e36a6>] ct_pcm_playback_prepare+0x39/0x60 [snd_ctxfi]
[<ffffffffa0886bcb>] snd_pcm_do_prepare+0x16/0x28 [snd_pcm]
[<ffffffffa08867c7>] snd_pcm_action_single+0x2d/0x5b [snd_pcm]
[<ffffffffa08881f3>] snd_pcm_action_nonatomic+0x52/0x6a [snd_pcm]
[<ffffffffa088a723>] snd_pcm_common_ioctl1+0x404/0xc79 [snd_pcm]
[<ffffffff810c52c8>] ? alloc_pages_current+0xb9/0xc2
[<ffffffff810c9402>] ? new_slab+0x1a5/0x1cb
[<ffffffff810ab9ea>] ? vma_prio_tree_insert+0x23/0xc1
[<ffffffffa088b411>] snd_pcm_playback_ioctl1+0x213/0x230 [snd_pcm]
[<ffffffff810b6c20>] ? mmap_region+0x397/0x4c9
[<ffffffffa088bd9b>] snd_pcm_playback_ioctl+0x2e/0x36 [snd_pcm]
[<ffffffff810ddc64>] vfs_ioctl+0x2a/0x78
[<ffffffff810de130>] do_vfs_ioctl+0x462/0x4a2
[<ffffffff81029cef>] ? default_spin_lock_flags+0x9/0xe
[<ffffffff81374647>] ? trace_hardirqs_off_thunk+0x3a/0x6c
[<ffffffff810de1c5>] sys_ioctl+0x55/0x77
[<ffffffff8101133a>] system_call_fastpath+0x16/0x1b
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/ctatc.c')
-rw-r--r-- | sound/pci/ctxfi/ctatc.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c index ead104ea1e35..1a4bb357eaef 100644 --- a/sound/pci/ctxfi/ctatc.c +++ b/sound/pci/ctxfi/ctatc.c | |||
@@ -119,7 +119,6 @@ atc_pcm_release_resources(struct ct_atc *atc, struct ct_atc_pcm *apcm); | |||
119 | 119 | ||
120 | static int ct_map_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) | 120 | static int ct_map_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) |
121 | { | 121 | { |
122 | unsigned long flags; | ||
123 | struct snd_pcm_runtime *runtime; | 122 | struct snd_pcm_runtime *runtime; |
124 | struct ct_vm *vm; | 123 | struct ct_vm *vm; |
125 | 124 | ||
@@ -129,9 +128,7 @@ static int ct_map_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) | |||
129 | runtime = apcm->substream->runtime; | 128 | runtime = apcm->substream->runtime; |
130 | vm = atc->vm; | 129 | vm = atc->vm; |
131 | 130 | ||
132 | spin_lock_irqsave(&atc->vm_lock, flags); | ||
133 | apcm->vm_block = vm->map(vm, runtime->dma_area, runtime->dma_bytes); | 131 | apcm->vm_block = vm->map(vm, runtime->dma_area, runtime->dma_bytes); |
134 | spin_unlock_irqrestore(&atc->vm_lock, flags); | ||
135 | 132 | ||
136 | if (NULL == apcm->vm_block) | 133 | if (NULL == apcm->vm_block) |
137 | return -ENOENT; | 134 | return -ENOENT; |
@@ -141,7 +138,6 @@ static int ct_map_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) | |||
141 | 138 | ||
142 | static void ct_unmap_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) | 139 | static void ct_unmap_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) |
143 | { | 140 | { |
144 | unsigned long flags; | ||
145 | struct ct_vm *vm; | 141 | struct ct_vm *vm; |
146 | 142 | ||
147 | if (NULL == apcm->vm_block) | 143 | if (NULL == apcm->vm_block) |
@@ -149,9 +145,7 @@ static void ct_unmap_audio_buffer(struct ct_atc *atc, struct ct_atc_pcm *apcm) | |||
149 | 145 | ||
150 | vm = atc->vm; | 146 | vm = atc->vm; |
151 | 147 | ||
152 | spin_lock_irqsave(&atc->vm_lock, flags); | ||
153 | vm->unmap(vm, apcm->vm_block); | 148 | vm->unmap(vm, apcm->vm_block); |
154 | spin_unlock_irqrestore(&atc->vm_lock, flags); | ||
155 | 149 | ||
156 | apcm->vm_block = NULL; | 150 | apcm->vm_block = NULL; |
157 | } | 151 | } |
@@ -161,9 +155,7 @@ static unsigned long atc_get_ptp_phys(struct ct_atc *atc, int index) | |||
161 | struct ct_vm *vm; | 155 | struct ct_vm *vm; |
162 | void *kvirt_addr; | 156 | void *kvirt_addr; |
163 | unsigned long phys_addr; | 157 | unsigned long phys_addr; |
164 | unsigned long flags; | ||
165 | 158 | ||
166 | spin_lock_irqsave(&atc->vm_lock, flags); | ||
167 | vm = atc->vm; | 159 | vm = atc->vm; |
168 | kvirt_addr = vm->get_ptp_virt(vm, index); | 160 | kvirt_addr = vm->get_ptp_virt(vm, index); |
169 | if (kvirt_addr == NULL) | 161 | if (kvirt_addr == NULL) |
@@ -171,8 +163,6 @@ static unsigned long atc_get_ptp_phys(struct ct_atc *atc, int index) | |||
171 | else | 163 | else |
172 | phys_addr = virt_to_phys(kvirt_addr); | 164 | phys_addr = virt_to_phys(kvirt_addr); |
173 | 165 | ||
174 | spin_unlock_irqrestore(&atc->vm_lock, flags); | ||
175 | |||
176 | return phys_addr; | 166 | return phys_addr; |
177 | } | 167 | } |
178 | 168 | ||
@@ -1562,7 +1552,6 @@ int ct_atc_create(struct snd_card *card, struct pci_dev *pci, | |||
1562 | atc_set_ops(atc); | 1552 | atc_set_ops(atc); |
1563 | 1553 | ||
1564 | spin_lock_init(&atc->atc_lock); | 1554 | spin_lock_init(&atc->atc_lock); |
1565 | spin_lock_init(&atc->vm_lock); | ||
1566 | 1555 | ||
1567 | /* Find card model */ | 1556 | /* Find card model */ |
1568 | err = atc_identify_card(atc); | 1557 | err = atc_identify_card(atc); |