Convert ext4 to use unlocked_ioctl
I checked ext4_ioctl and it looked largely safe to not be used without BKL. So convert it over to unlocked_ioctl. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
This commit is contained in:
parent
161e7b7c1d
commit
5cdd7b2d77
4 changed files with 6 additions and 13 deletions
|
@ -42,7 +42,7 @@ const struct file_operations ext4_dir_operations = {
|
||||||
.llseek = generic_file_llseek,
|
.llseek = generic_file_llseek,
|
||||||
.read = generic_read_dir,
|
.read = generic_read_dir,
|
||||||
.readdir = ext4_readdir, /* we take BKL. needed?*/
|
.readdir = ext4_readdir, /* we take BKL. needed?*/
|
||||||
.ioctl = ext4_ioctl, /* BKL held */
|
.unlocked_ioctl = ext4_ioctl,
|
||||||
#ifdef CONFIG_COMPAT
|
#ifdef CONFIG_COMPAT
|
||||||
.compat_ioctl = ext4_compat_ioctl,
|
.compat_ioctl = ext4_compat_ioctl,
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -129,7 +129,7 @@ const struct file_operations ext4_file_operations = {
|
||||||
.write = do_sync_write,
|
.write = do_sync_write,
|
||||||
.aio_read = generic_file_aio_read,
|
.aio_read = generic_file_aio_read,
|
||||||
.aio_write = ext4_file_write,
|
.aio_write = ext4_file_write,
|
||||||
.ioctl = ext4_ioctl,
|
.unlocked_ioctl = ext4_ioctl,
|
||||||
#ifdef CONFIG_COMPAT
|
#ifdef CONFIG_COMPAT
|
||||||
.compat_ioctl = ext4_compat_ioctl,
|
.compat_ioctl = ext4_compat_ioctl,
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -18,9 +18,9 @@
|
||||||
#include <linux/mount.h>
|
#include <linux/mount.h>
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
|
||||||
int ext4_ioctl (struct inode * inode, struct file * filp, unsigned int cmd,
|
long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
||||||
unsigned long arg)
|
|
||||||
{
|
{
|
||||||
|
struct inode *inode = filp->f_dentry->d_inode;
|
||||||
struct ext4_inode_info *ei = EXT4_I(inode);
|
struct ext4_inode_info *ei = EXT4_I(inode);
|
||||||
unsigned int flags;
|
unsigned int flags;
|
||||||
unsigned short rsv_window_size;
|
unsigned short rsv_window_size;
|
||||||
|
@ -277,9 +277,6 @@ int ext4_ioctl (struct inode * inode, struct file * filp, unsigned int cmd,
|
||||||
#ifdef CONFIG_COMPAT
|
#ifdef CONFIG_COMPAT
|
||||||
long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
||||||
{
|
{
|
||||||
struct inode *inode = file->f_path.dentry->d_inode;
|
|
||||||
int ret;
|
|
||||||
|
|
||||||
/* These are just misnamed, they actually get/put from/to user an int */
|
/* These are just misnamed, they actually get/put from/to user an int */
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case EXT4_IOC32_GETFLAGS:
|
case EXT4_IOC32_GETFLAGS:
|
||||||
|
@ -319,9 +316,6 @@ long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
|
||||||
default:
|
default:
|
||||||
return -ENOIOCTLCMD;
|
return -ENOIOCTLCMD;
|
||||||
}
|
}
|
||||||
lock_kernel();
|
return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
|
||||||
ret = ext4_ioctl(inode, file, cmd, (unsigned long) compat_ptr(arg));
|
|
||||||
unlock_kernel();
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1050,8 +1050,7 @@ extern int ext4_block_truncate_page(handle_t *handle, struct page *page,
|
||||||
struct address_space *mapping, loff_t from);
|
struct address_space *mapping, loff_t from);
|
||||||
|
|
||||||
/* ioctl.c */
|
/* ioctl.c */
|
||||||
extern int ext4_ioctl (struct inode *, struct file *, unsigned int,
|
extern long ext4_ioctl(struct file *, unsigned int, unsigned long);
|
||||||
unsigned long);
|
|
||||||
extern long ext4_compat_ioctl (struct file *, unsigned int, unsigned long);
|
extern long ext4_compat_ioctl (struct file *, unsigned int, unsigned long);
|
||||||
|
|
||||||
/* migrate.c */
|
/* migrate.c */
|
||||||
|
|
Loading…
Reference in a new issue