diff options
author | Andi Kleen <ak@suse.de> | 2008-04-29 22:03:54 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-04-29 22:03:54 -0400 |
commit | 5cdd7b2d7716a7ed7d6dc7588e2d015f04d46640 (patch) | |
tree | c2146662517bbd22377a54d1487e202d86dde6db /include/linux | |
parent | 161e7b7c1d24112d188df9a7b30d468a8d135b96 (diff) |
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>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/ext4_fs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/ext4_fs.h b/include/linux/ext4_fs.h index 105337ca9ed..33bc88568c5 100644 --- a/include/linux/ext4_fs.h +++ b/include/linux/ext4_fs.h @@ -1050,8 +1050,7 @@ extern int ext4_block_truncate_page(handle_t *handle, struct page *page, struct address_space *mapping, loff_t from); /* ioctl.c */ -extern int ext4_ioctl (struct inode *, struct file *, unsigned int, - unsigned long); +extern long ext4_ioctl(struct file *, unsigned int, unsigned long); extern long ext4_compat_ioctl (struct file *, unsigned int, unsigned long); /* migrate.c */ |