From aa0bfe32edfab38dcdf2870e0b1e3b404cf845ed Mon Sep 17 00:00:00 2001 From: Miroslav Cimerman Date: Thu, 15 May 2025 21:31:03 +0200 Subject: [PATCH] mkfile: increase buffer size --- uspace/app/bdsh/cmds/modules/mkfile/mkfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uspace/app/bdsh/cmds/modules/mkfile/mkfile.c b/uspace/app/bdsh/cmds/modules/mkfile/mkfile.c index 146afb2d42..d4d5ba563b 100644 --- a/uspace/app/bdsh/cmds/modules/mkfile/mkfile.c +++ b/uspace/app/bdsh/cmds/modules/mkfile/mkfile.c @@ -47,7 +47,7 @@ #include "cmds.h" /** Number of bytes to write at a time */ -#define BUFFER_SIZE 16384 +#define BUFFER_SIZE (1024 * 64) static const char *cmdname = "mkfile";