udf: BKL ioctl pushdown

Convert udf_ioctl to an unlocked_ioctl and push the BKL down into it.

Signed-off-by: John Kacur <jkacur@redhat.com
Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
John Kacur
2010-05-05 15:15:39 +02:00
committed by Jan Kara
parent 7ebd467551
commit 2f07a88b30
3 changed files with 29 additions and 19 deletions

View File

@@ -209,6 +209,6 @@ static int udf_readdir(struct file *filp, void *dirent, filldir_t filldir)
const struct file_operations udf_dir_operations = {
.read = generic_read_dir,
.readdir = udf_readdir,
.ioctl = udf_ioctl,
.unlocked_ioctl = udf_ioctl,
.fsync = simple_fsync,
};