diff options
author | John Kacur <jkacur@redhat.com> | 2010-05-05 15:15:39 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-05-05 16:36:17 +0200 |
commit | 2f07a88b30f510c7625d75cdf286903b465350a0 (patch) | |
tree | 5869affff304e0090e1aa59f94b77e183f278eb3 /fs/udf/udfdecl.h | |
parent | 7ebd467551ed6ae200d7835a84bbda0dcadaa511 (diff) | |
download | linux-2f07a88b30f510c7625d75cdf286903b465350a0.tar.gz linux-2f07a88b30f510c7625d75cdf286903b465350a0.tar.bz2 linux-2f07a88b30f510c7625d75cdf286903b465350a0.zip |
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>
Diffstat (limited to 'fs/udf/udfdecl.h')
-rw-r--r-- | fs/udf/udfdecl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/udf/udfdecl.h b/fs/udf/udfdecl.h index 702a1148e702..9079ff7d6255 100644 --- a/fs/udf/udfdecl.h +++ b/fs/udf/udfdecl.h @@ -130,8 +130,7 @@ extern int udf_write_fi(struct inode *inode, struct fileIdentDesc *, uint8_t *, uint8_t *); /* file.c */ -extern int udf_ioctl(struct inode *, struct file *, unsigned int, - unsigned long); +extern long udf_ioctl(struct file *, unsigned int, unsigned long); extern int udf_setattr(struct dentry *dentry, struct iattr *iattr); /* inode.c */ extern struct inode *udf_iget(struct super_block *, struct kernel_lb_addr *); |