From 0bbe4cfa3d602c03ff3fc436c082e2a19e742880 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 23 Mar 2015 15:54:20 +1100 Subject: [PATCH] Added flags for flushfs. --- samples/mount_sample/mount.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/samples/mount_sample/mount.go b/samples/mount_sample/mount.go index c5a5d9d..be63a1c 100644 --- a/samples/mount_sample/mount.go +++ b/samples/mount_sample/mount.go @@ -26,6 +26,16 @@ var fType = flag.String( "", "The name of the samples/ sub-dir to be mounted.") +var fFlushesFile = flag.String( + "flushfs.flushes_file", + "", + "Path to a file to which flushes should be reported, \\n-separated.") + +var fFsyncsFile = flag.String( + "flushfs.fsyncs_file", + "", + "Path to a file to which fsyncs should be reported, \\n-separated.") + func main() { os.Exit(1) }