From f9765990b26cc0d713c6a9484753eb0d7669ea0f Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 8 Jul 2014 17:12:21 +0200 Subject: [PATCH] createLatencyReport(), fix mount option name. --- src/latency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latency.c b/src/latency.c index 52c3f3a9..207baefd 100644 --- a/src/latency.c +++ b/src/latency.c @@ -391,7 +391,7 @@ sds createLatencyReport(void) { } if (advise_data_writeback) { - report = sdscat(report,"- Mounting ext3/4 filesystems with mode=writeback can provide a performance boost compared to mode=ordered, however this mode of operation provides less guarantees, and sometimes it can happen that after a hard crash the AOF file will have an half-written command at the end and will require to be repaired before Redis restarts.\n"); + report = sdscat(report,"- Mounting ext3/4 filesystems with data=writeback can provide a performance boost compared to data=ordered, however this mode of operation provides less guarantees, and sometimes it can happen that after a hard crash the AOF file will have an half-written command at the end and will require to be repaired before Redis restarts.\n"); } if (advise_disk_contention) { -- GitLab