diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-07-25 17:24:12 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-07-25 17:24:12 -0400 |
commit | a9e5f4d0780ec9cda7a70b08294d7718431b62a1 (patch) | |
tree | f21fa310b6ea63f49cf6d710fcd84fe8d66282f3 /mm | |
parent | 52f341cf75d2da84811127582616984eb0602360 (diff) |
[GFS2] Alter direct I/O path
As per comments received, alter the GFS2 direct I/O path so that
it uses the standard read functions "out of the box". Needs a
small change to one of the VFS functions. This reduces the size
of the code quite a lot and also removes the need for one new export.
Some more work remains to be done, but this is the bones of the
thing.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/filemap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index b9c91ab7f0f8..a92d690b3ae5 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -1122,7 +1122,6 @@ success: | |||
1122 | desc->arg.buf += size; | 1122 | desc->arg.buf += size; |
1123 | return size; | 1123 | return size; |
1124 | } | 1124 | } |
1125 | EXPORT_SYMBOL_GPL(file_read_actor); | ||
1126 | 1125 | ||
1127 | /** | 1126 | /** |
1128 | * __generic_file_aio_read - generic filesystem read routine | 1127 | * __generic_file_aio_read - generic filesystem read routine |
@@ -1184,7 +1183,8 @@ __generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov, | |||
1184 | *ppos = pos + retval; | 1183 | *ppos = pos + retval; |
1185 | } | 1184 | } |
1186 | file_accessed(filp); | 1185 | file_accessed(filp); |
1187 | goto out; | 1186 | if (retval != 0) |
1187 | goto out; | ||
1188 | } | 1188 | } |
1189 | 1189 | ||
1190 | retval = 0; | 1190 | retval = 0; |