Whamcloud - gitweb
ext2fs: declare struct_io_manager at end of file
authorAndreas Dilger <adilger@dilger.ca>
Tue, 18 Feb 2014 23:31:36 +0000 (18:31 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 18 Feb 2014 23:31:43 +0000 (18:31 -0500)
commita4613d134506818ee605eaf0d907fc7f19b236ed
tree72673f45ffd0e2bcd55a05539e831de1036e1695
parent3b97799c7472c2a9ead804db9651130651e8e033
ext2fs: declare struct_io_manager at end of file

Declare struct_io_manager at the end of unix_io.c, undo_io.c, and
test_io.c files so that there isn't a need to forward declare every
member of this structure.  That avoids a lot of redundant code
at the start of every one of these files.

Move the test_flush() function above test_abort() to avoid the need
for a forward declaration.

Fix a few instances of space before tab in these files.

Signed-off-by: Andreas Dilger <adilger@dilger.ca>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
lib/ext2fs/test_io.c
lib/ext2fs/undo_io.c
lib/ext2fs/unix_io.c