OPTION(osd_data, 0, OPT_STR, ""),
OPTION(osd_journal, 0, OPT_STR, ""),
OPTION(osd_journal_size, 0, OPT_INT, 0), // in mb
+ OPTION(osd_max_write_size, 0, OPT_INT, 90),
OPTION(osd_balance_reads, 0, OPT_BOOL, false),
OPTION(osd_flash_crowd_iat_threshold, 0, OPT_INT, 0),
OPTION(osd_flash_crowd_iat_alpha, 0, OPT_DOUBLE, 0.125),
const char *osd_data;
const char *osd_journal;
int osd_journal_size; // in mb
+ int osd_max_write_size; // in MB
bool osd_balance_reads;
int osd_flash_crowd_iat_threshold; // flash crowd interarrival time threshold in ms
double osd_flash_crowd_iat_alpha;