aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2007-10-12 02:17:47 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-12 03:29:50 -0400
commit782e3b3b3804c38d5130c7f21d7ec7bf6709023f (patch)
tree54e790dfd52f0451189fa1591dc97bc5ff5f5866 /fs/xfs
parentcbd09dbbb62096c1da627eca865f988d2ed0a84e (diff)
Fix up more bio fallout
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/linux-2.6/xfs_aops.c3
-rw-r--r--fs/xfs/linux-2.6/xfs_buf.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c
index 3f13519436af..6f4c29e9c3d9 100644
--- a/fs/xfs/linux-2.6/xfs_aops.c
+++ b/fs/xfs/linux-2.6/xfs_aops.c
@@ -323,7 +323,7 @@ xfs_iomap_valid(
323/* 323/*
324 * BIO completion handler for buffered IO. 324 * BIO completion handler for buffered IO.
325 */ 325 */
326STATIC int 326STATIC void
327xfs_end_bio( 327xfs_end_bio(
328 struct bio *bio, 328 struct bio *bio,
329 int error) 329 int error)
@@ -339,7 +339,6 @@ xfs_end_bio(
339 bio_put(bio); 339 bio_put(bio);
340 340
341 xfs_finish_ioend(ioend, 0); 341 xfs_finish_ioend(ioend, 0);
342 return 0;
343} 342}
344 343
345STATIC void 344STATIC void
diff --git a/fs/xfs/linux-2.6/xfs_buf.c b/fs/xfs/linux-2.6/xfs_buf.c
index 6a75f4d984a1..39f44ee572e8 100644
--- a/fs/xfs/linux-2.6/xfs_buf.c
+++ b/fs/xfs/linux-2.6/xfs_buf.c
@@ -1103,7 +1103,7 @@ _xfs_buf_ioend(
1103 } 1103 }
1104} 1104}
1105 1105
1106STATIC int 1106STATIC void
1107xfs_buf_bio_end_io( 1107xfs_buf_bio_end_io(
1108 struct bio *bio, 1108 struct bio *bio,
1109 int error) 1109 int error)
@@ -1139,7 +1139,6 @@ xfs_buf_bio_end_io(
1139 1139
1140 _xfs_buf_ioend(bp, 1); 1140 _xfs_buf_ioend(bp, 1);
1141 bio_put(bio); 1141 bio_put(bio);
1142 return 0;
1143} 1142}
1144 1143
1145STATIC void 1144STATIC void