[PATCH v1 1/4] builtin/index-pack.c: change xwrite to write_in_full to allow large sizes.
From: Randall S. Becker <hidden>
Date: 2024-02-26 22:05:53
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Randall S. Becker <hidden>
Date: 2024-02-26 22:05:53
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: "Randall S. Becker" <redacted> This change is required because some platforms do not support file writes of arbitrary sizes (e.g, NonStop). xwrite ends up truncating the output to the maximum single I/O size possible for the destination device. Signed-off-by: Randall S. Becker <redacted> --- builtin/index-pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/builtin/index-pack.c b/builtin/index-pack.c
index a3a37bd215..f80b8d101a 100644
--- a/builtin/index-pack.c
+++ b/builtin/index-pack.c@@ -1571,7 +1571,7 @@ static void final(const char *final_pack_name, const char *curr_pack_name, * the last part of the input buffer to stdout. */ while (input_len) { - err = xwrite(1, input_buffer + input_offset, input_len); + err = write_in_full(1, input_buffer + input_offset, input_len); if (err <= 0) break; input_len -= err;
--
2.42.1