diff options
author | John Kacur <jkacur@redhat.com> | 2010-07-03 18:02:31 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-07-05 12:07:30 -0400 |
commit | 171d9f7d786681e76bb289d01d8f897cbc50de57 (patch) | |
tree | 5d05843426e6e3a95b9744e43d96586bc2ab5c06 /sound | |
parent | 65ee2ba3105f6ca3b8814d993682d4f21a1f0d8d (diff) |
soundcore_open: Reduce the area BKL coverage
Most of this function is protected by the sound_loader_lock.
We can push down the BKL to this call out err = file->f_op->open(inode,file);
In order to build the sound core without the BKL, we
will need to push the lock_kernel() call into the ~20
device drivers that register their file operations.
Signed-off-by: John Kacur <jkacur@redhat.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/sound_core.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sound/sound_core.c b/sound/sound_core.c index 7c2d677a2df5..c8627fcd4900 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c | |||
@@ -576,8 +576,6 @@ static int soundcore_open(struct inode *inode, struct file *file) | |||
576 | struct sound_unit *s; | 576 | struct sound_unit *s; |
577 | const struct file_operations *new_fops = NULL; | 577 | const struct file_operations *new_fops = NULL; |
578 | 578 | ||
579 | lock_kernel (); | ||
580 | |||
581 | chain=unit&0x0F; | 579 | chain=unit&0x0F; |
582 | if(chain==4 || chain==5) /* dsp/audio/dsp16 */ | 580 | if(chain==4 || chain==5) /* dsp/audio/dsp16 */ |
583 | { | 581 | { |
@@ -630,18 +628,23 @@ static int soundcore_open(struct inode *inode, struct file *file) | |||
630 | const struct file_operations *old_fops = file->f_op; | 628 | const struct file_operations *old_fops = file->f_op; |
631 | file->f_op = new_fops; | 629 | file->f_op = new_fops; |
632 | spin_unlock(&sound_loader_lock); | 630 | spin_unlock(&sound_loader_lock); |
633 | if(file->f_op->open) | 631 | |
632 | if (file->f_op->open) { | ||
633 | /* TODO: push down BKL into indivial open functions */ | ||
634 | lock_kernel(); | ||
634 | err = file->f_op->open(inode,file); | 635 | err = file->f_op->open(inode,file); |
636 | unlock_kernel(); | ||
637 | } | ||
638 | |||
635 | if (err) { | 639 | if (err) { |
636 | fops_put(file->f_op); | 640 | fops_put(file->f_op); |
637 | file->f_op = fops_get(old_fops); | 641 | file->f_op = fops_get(old_fops); |
638 | } | 642 | } |
643 | |||
639 | fops_put(old_fops); | 644 | fops_put(old_fops); |
640 | unlock_kernel(); | ||
641 | return err; | 645 | return err; |
642 | } | 646 | } |
643 | spin_unlock(&sound_loader_lock); | 647 | spin_unlock(&sound_loader_lock); |
644 | unlock_kernel(); | ||
645 | return -ENODEV; | 648 | return -ENODEV; |
646 | } | 649 | } |
647 | 650 | ||