[<prev] [next>] [day] [month] [year] [list]
Message-Id: <67AA922F-881E-47F1-866B-9613E30C7A78@gmail.com>
Date: Tue, 7 Oct 2008 13:20:11 -0600
From: Richard Holden <aciddeath@...il.com>
To: linux-kernel@...r.kernel.org
Cc: Alan Cox <alan@...rguk.ukuu.org.uk>
Subject: [PATCH] phonedev: remove BKL
This patch removes the BKL from the phonedev module. The phone_device
array is covered by the phone_lock mutex in all cases and
request_module no longer needs the BKL so we can remove the only
remaining instance of the BKL from phonedev.
Signed-off-by: Richard Holden <aciddeath@...il.com>
diff --git a/drivers/telephony/phonedev.c b/drivers/telephony/phonedev.c
index 4d74ba3..37caf4d 100644
--- a/drivers/telephony/phonedev.c
+++ b/drivers/telephony/phonedev.c
@@ -54,7 +54,6 @@ static int phone_open(struct inode *inode, struct
file *file)
if (minor >= PHONE_NUM_DEVICES)
return -ENODEV;
- lock_kernel();
mutex_lock(&phone_lock);
p = phone_device[minor];
if (p)
@@ -81,7 +80,6 @@ static int phone_open(struct inode *inode, struct
file *file)
fops_put(old_fops);
end:
mutex_unlock(&phone_lock);
- unlock_kernel();
return err;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists