summaryrefslogtreecommitdiffstats
path: root/default.c
diff options
context:
space:
mode:
Diffstat (limited to 'default.c')
-rw-r--r--default.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/default.c b/default.c
index 71c6ab1..4c55144 100644
--- a/default.c
+++ b/default.c
@@ -148,8 +148,17 @@ int fastwriter_default_open(fastwriter_t *fw, const char *name, fastwriter_flags
ctx->wr_block = EXT4_WRITEBLOCK;
#endif /* !DISABLE_AIO */
ctx->pa_block = EXT4_PREALLOCATE;
+/* } else if (!strcmp(fs, "fhgfs")) {
+ ctx->sync_mode = 0;
+ ctx->wr_block = OCFS_WRITEBLOCK;
+ ctx->pa_block = EXT4_PREALLOCATE;
+ } else if (strstr(fs, "gluster")) {
+ ctx->sync_mode = 0;
+ ctx->wr_block = OCFS_WRITEBLOCK;
+ ctx->pa_block = EXT4_PREALLOCATE;*/
} else {
- ctx->wr_block = EXT4_WRITEBLOCK;
+ ctx->sync_mode = 0;
+ ctx->wr_block = OCFS_WRITEBLOCK;
ctx->pa_block = 0;
}