Staging: push down BKL into ioctl functions
Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Frederic Weisbecker <fweisbec@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
59200df52c
commit
b1f2ac0763
3 changed files with 42 additions and 13 deletions
|
@ -16,6 +16,7 @@
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include <linux/version.h>
|
#include <linux/version.h>
|
||||||
|
#include <linux/smp_lock.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
|
|
||||||
#include "crystalhd_lnx.h"
|
#include "crystalhd_lnx.h"
|
||||||
|
@ -261,12 +262,12 @@ static int chd_dec_api_cmd(struct crystalhd_adp *adp, unsigned long ua,
|
||||||
}
|
}
|
||||||
|
|
||||||
/* API interfaces */
|
/* API interfaces */
|
||||||
static int chd_dec_ioctl(struct inode *in, struct file *fd,
|
static long chd_dec_ioctl(struct file *fd, unsigned int cmd, unsigned long ua)
|
||||||
unsigned int cmd, unsigned long ua)
|
|
||||||
{
|
{
|
||||||
struct crystalhd_adp *adp = chd_get_adp();
|
struct crystalhd_adp *adp = chd_get_adp();
|
||||||
crystalhd_cmd_proc cproc;
|
crystalhd_cmd_proc cproc;
|
||||||
struct crystalhd_user *uc;
|
struct crystalhd_user *uc;
|
||||||
|
int ret;
|
||||||
|
|
||||||
if (!adp || !fd) {
|
if (!adp || !fd) {
|
||||||
BCMLOG_ERR("Invalid adp\n");
|
BCMLOG_ERR("Invalid adp\n");
|
||||||
|
@ -279,13 +280,17 @@ static int chd_dec_ioctl(struct inode *in, struct file *fd,
|
||||||
return -ENODATA;
|
return -ENODATA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
lock_kernel();
|
||||||
cproc = crystalhd_get_cmd_proc(&adp->cmds, cmd, uc);
|
cproc = crystalhd_get_cmd_proc(&adp->cmds, cmd, uc);
|
||||||
if (!cproc) {
|
if (!cproc) {
|
||||||
BCMLOG_ERR("Unhandled command: %d\n", cmd);
|
BCMLOG_ERR("Unhandled command: %d\n", cmd);
|
||||||
|
unlock_kernel();
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return chd_dec_api_cmd(adp, ua, uc->uid, cmd, cproc);
|
ret = chd_dec_api_cmd(adp, ua, uc->uid, cmd, cproc);
|
||||||
|
unlock_kernel();
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int chd_dec_open(struct inode *in, struct file *fd)
|
static int chd_dec_open(struct inode *in, struct file *fd)
|
||||||
|
@ -345,7 +350,7 @@ static int chd_dec_close(struct inode *in, struct file *fd)
|
||||||
|
|
||||||
static const struct file_operations chd_dec_fops = {
|
static const struct file_operations chd_dec_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.ioctl = chd_dec_ioctl,
|
.unlocked_ioctl = chd_dec_ioctl,
|
||||||
.open = chd_dec_open,
|
.open = chd_dec_open,
|
||||||
.release = chd_dec_close,
|
.release = chd_dec_close,
|
||||||
};
|
};
|
||||||
|
|
|
@ -63,6 +63,7 @@ extern void printques(int);
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/poll.h>
|
#include <linux/poll.h>
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
|
#include <linux/smp_lock.h>
|
||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
@ -835,6 +836,17 @@ static unsigned int dt3155_poll (struct file * filp, poll_table *wait)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static long
|
||||||
|
dt3155_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
lock_kernel();
|
||||||
|
ret = dt3155_ioctl(file->f_path.dentry->d_inode, file, cmd, arg);
|
||||||
|
unlock_kernel();
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
/*****************************************************
|
/*****************************************************
|
||||||
* file operations supported by DT3155 driver
|
* file operations supported by DT3155 driver
|
||||||
|
@ -842,12 +854,12 @@ static unsigned int dt3155_poll (struct file * filp, poll_table *wait)
|
||||||
* register_chrdev
|
* register_chrdev
|
||||||
*****************************************************/
|
*****************************************************/
|
||||||
static struct file_operations dt3155_fops = {
|
static struct file_operations dt3155_fops = {
|
||||||
read: dt3155_read,
|
.read = dt3155_read,
|
||||||
ioctl: dt3155_ioctl,
|
.unlocked_ioctl = dt3155_unlocked_ioctl,
|
||||||
mmap: dt3155_mmap,
|
.mmap = dt3155_mmap,
|
||||||
poll: dt3155_poll,
|
.poll = dt3155_poll,
|
||||||
open: dt3155_open,
|
.open = dt3155_open,
|
||||||
release: dt3155_close
|
.release = dt3155_close
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/spinlock.h>
|
#include <linux/spinlock.h>
|
||||||
#include <linux/syscalls.h>
|
#include <linux/syscalls.h>
|
||||||
|
#include <linux/smp_lock.h>
|
||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
@ -130,8 +131,7 @@ static int vme_user_release(struct inode *, struct file *);
|
||||||
static ssize_t vme_user_read(struct file *, char *, size_t, loff_t *);
|
static ssize_t vme_user_read(struct file *, char *, size_t, loff_t *);
|
||||||
static ssize_t vme_user_write(struct file *, const char *, size_t, loff_t *);
|
static ssize_t vme_user_write(struct file *, const char *, size_t, loff_t *);
|
||||||
static loff_t vme_user_llseek(struct file *, loff_t, int);
|
static loff_t vme_user_llseek(struct file *, loff_t, int);
|
||||||
static int vme_user_ioctl(struct inode *, struct file *, unsigned int,
|
static long vme_user_unlocked_ioctl(struct file *, unsigned int, unsigned long);
|
||||||
unsigned long);
|
|
||||||
|
|
||||||
static int __init vme_user_probe(struct device *, int, int);
|
static int __init vme_user_probe(struct device *, int, int);
|
||||||
static int __exit vme_user_remove(struct device *, int, int);
|
static int __exit vme_user_remove(struct device *, int, int);
|
||||||
|
@ -142,7 +142,7 @@ static struct file_operations vme_user_fops = {
|
||||||
.read = vme_user_read,
|
.read = vme_user_read,
|
||||||
.write = vme_user_write,
|
.write = vme_user_write,
|
||||||
.llseek = vme_user_llseek,
|
.llseek = vme_user_llseek,
|
||||||
.ioctl = vme_user_ioctl,
|
.unlocked_ioctl = vme_user_unlocked_ioctl,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -555,6 +555,18 @@ static int vme_user_ioctl(struct inode *inode, struct file *file,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static long
|
||||||
|
vme_user_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
lock_kernel();
|
||||||
|
ret = vme_user_ioctl(file->f_path.dentry->d_inode, file, cmd, arg);
|
||||||
|
unlock_kernel();
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Unallocate a previously allocated buffer
|
* Unallocate a previously allocated buffer
|
||||||
|
|
Loading…
Reference in a new issue