committed by
Jonathan Corbet
parent
6b0ee363b2
commit
b0e54f7c47
@@ -27,6 +27,7 @@
|
|||||||
#include <linux/bcd.h>
|
#include <linux/bcd.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
|
#include <linux/smp_lock.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/miscdevice.h>
|
#include <linux/miscdevice.h>
|
||||||
#include <linux/ioport.h>
|
#include <linux/ioport.h>
|
||||||
@@ -163,15 +164,18 @@ static long rtc_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|||||||
|
|
||||||
static int rtc_open(struct inode *inode, struct file *file)
|
static int rtc_open(struct inode *inode, struct file *file)
|
||||||
{
|
{
|
||||||
|
lock_kernel();
|
||||||
spin_lock_irq(&rtc_lock);
|
spin_lock_irq(&rtc_lock);
|
||||||
|
|
||||||
if (rtc_status & RTC_IS_OPEN) {
|
if (rtc_status & RTC_IS_OPEN) {
|
||||||
spin_unlock_irq(&rtc_lock);
|
spin_unlock_irq(&rtc_lock);
|
||||||
|
unlock_kernel();
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
rtc_status |= RTC_IS_OPEN;
|
rtc_status |= RTC_IS_OPEN;
|
||||||
spin_unlock_irq(&rtc_lock);
|
spin_unlock_irq(&rtc_lock);
|
||||||
|
unlock_kernel();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user