From 75b20ff1d090427689b1d6b5fd1945116c026fa5 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Thu, 29 Jul 2021 15:21:49 -0700 Subject: [PATCH] test-runner: set msize for --monitor This was added for logging but --monitor suffers the same warning without setting msize as well. --- tools/test-runner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-runner b/tools/test-runner index fa3c434f..2d4b6b5a 100755 --- a/tools/test-runner +++ b/tools/test-runner @@ -1379,7 +1379,7 @@ def run_tests(): os.remove(f) elif args.monitor: parent = os.path.abspath(os.path.join(args.monitor, os.pardir)) - mount('mondir', parent, '9p', 0, 'trans=virtio,version=9p2000.L') + mount('mondir', parent, '9p', 0, 'trans=virtio,version=9p2000.L,msize=10240') if config.ctx.args.unit_tests is None: run_auto_tests(config.ctx, args)