diff options
author | Christoph Hellwig <hch@lst.de> | 2008-09-03 15:53:01 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2008-10-23 05:13:21 -0400 |
commit | 3222a3e55f4025acb2a5a4379cf2f2b7df1f1243 (patch) | |
tree | d12740cd5dc00ae17f7beb63584dd00d7c1fb4cb /fs/jfs/namei.c | |
parent | 4e9ed2f85af7adfa7c3f0efa839a53186254fdcb (diff) |
[PATCH] fix ->llseek for more directories
With this patch all directory fops instances that have a readdir
that doesn't take the BKL are switched to generic_file_llseek.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/jfs/namei.c')
-rw-r--r-- | fs/jfs/namei.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c index e199dde7b83c..cc3cedffbfa1 100644 --- a/fs/jfs/namei.c +++ b/fs/jfs/namei.c | |||
@@ -1547,6 +1547,7 @@ const struct file_operations jfs_dir_operations = { | |||
1547 | #ifdef CONFIG_COMPAT | 1547 | #ifdef CONFIG_COMPAT |
1548 | .compat_ioctl = jfs_compat_ioctl, | 1548 | .compat_ioctl = jfs_compat_ioctl, |
1549 | #endif | 1549 | #endif |
1550 | .llseek = generic_file_llseek, | ||
1550 | }; | 1551 | }; |
1551 | 1552 | ||
1552 | static int jfs_ci_hash(struct dentry *dir, struct qstr *this) | 1553 | static int jfs_ci_hash(struct dentry *dir, struct qstr *this) |