diff options
Diffstat (limited to 'default.c')
-rw-r--r-- | default.c | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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; } |