* [PATCH 06/11] xfstests: randholes: encapsulate direct I/O setup code
@ 2010-10-14 14:50 Alex Elder
0 siblings, 0 replies; only message in thread
From: Alex Elder @ 2010-10-14 14:50 UTC (permalink / raw)
To: xfs
Pull the code used to get alignment information for direct I/O into
a separate function.
Signed-off-by: Alex Elder <aelder@sgi.com>
---
src/randholes.c | 32 +++++++++++++++++++-------------
1 file changed, 19 insertions(+), 13 deletions(-)
Index: b/src/randholes.c
===================================================================
--- a/src/randholes.c
+++ b/src/randholes.c
@@ -271,6 +271,22 @@ readblks(int fd)
}
int
+direct_setup(char *filename, int fd)
+{
+ if (xfscntl(filename, fd, DIOINFO, &diob) < 0) {
+ perror("xfscntl(FIOINFO)");
+ return 1;
+ }
+ if (blocksize % diob.d_miniosz) {
+ fprintf(stderr, "blocksize %d must be a multiple of "
+ "%d for direct I/O\n", blocksize, diob.d_miniosz);
+ return 1;
+ }
+
+ return 0;
+}
+
+int
main(int argc, char *argv[])
{
int seed, ch, fd, oflags;
@@ -374,19 +390,9 @@ main(int argc, char *argv[])
}
}
- if (direct) {
- if (xfscntl(filename, fd, DIOINFO, &diob) < 0) {
- perror("xfscntl(FIOINFO)");
- return 1;
- }
- if (blocksize % diob.d_miniosz) {
- fprintf(stderr,
- "blocksize %d must be a multiple of %d for direct I/O\n",
- blocksize,
- diob.d_miniosz);
- return 1;
- }
- }
+ if (direct && direct_setup(filename, fd))
+ return 1;
+
printf(test?"write (skipped)\n":"write\n");
writeblks(filename, fd);
printf("readback\n");
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2010-10-14 14:52 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-14 14:50 [PATCH 06/11] xfstests: randholes: encapsulate direct I/O setup code Alex Elder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox