diff options
author | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2010-05-17 04:00:07 -0400 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-05-17 04:00:16 -0400 |
commit | 58ea91c05346f7c6336e6248b743aa9a8e1c19a9 (patch) | |
tree | aa8fafa3a049a482eb9f2600fec40c03ae10935a /arch/s390/hypfs | |
parent | f73a2b03c59b95a3ee8eebcc127350c77c950e87 (diff) |
[S390] avoid default_llseek in s390 drivers
Use nonseekable_open for a couple of s390 device drivers. This avoids
the use of default_llseek function which has a dependency on the BKL.
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/hypfs')
-rw-r--r-- | arch/s390/hypfs/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/hypfs/inode.c b/arch/s390/hypfs/inode.c index c53f8ac825ca..95c1aaac06cd 100644 --- a/arch/s390/hypfs/inode.c +++ b/arch/s390/hypfs/inode.c | |||
@@ -145,7 +145,7 @@ static int hypfs_open(struct inode *inode, struct file *filp) | |||
145 | } | 145 | } |
146 | mutex_unlock(&fs_info->lock); | 146 | mutex_unlock(&fs_info->lock); |
147 | } | 147 | } |
148 | return 0; | 148 | return nonseekable_open(inode, filp); |
149 | } | 149 | } |
150 | 150 | ||
151 | static ssize_t hypfs_aio_read(struct kiocb *iocb, const struct iovec *iov, | 151 | static ssize_t hypfs_aio_read(struct kiocb *iocb, const struct iovec *iov, |