mbox series

[v1,0/4] Change xwrite() to write_in_full() in builtins.

Message ID 20240226220539.3494-1-randall.becker@nexbridge.ca (mailing list archive)
Headers show
Series Change xwrite() to write_in_full() in builtins. | expand

Message

Randall S. Becker Feb. 26, 2024, 10:05 p.m. UTC
From: "Randall S. Becker" <rsbecker@nexbridge.com>

This series replaces xwrite to write_in_full in builtins/. The change is
required to fix critical problems that prevent full writes to be
processed by on platforms where xwrite may be limited to a platform size
limit. Further changes outside of builtins/ may be required but do not
appear to be as urgent as this change, which causes test breakage in
t7704. A separate series will be contributed for changes outside of
builtins/ at a later date.

Randall S. Becker (4):
  builtin/index-pack.c: change xwrite to write_in_full to allow large
    sizes.
  builtin/receive-pack.c: change xwrite to write_in_full to allow large
    sizes.
  builtin/repack.c: change xwrite to write_in_full to allow large sizes.
  builtin/unpack-objects.c: change xwrite to write_in_full to allow
    large sizes.

 builtin/index-pack.c     | 2 +-
 builtin/receive-pack.c   | 5 +++--
 builtin/repack.c         | 9 +++++++--
 builtin/unpack-objects.c | 2 +-
 4 files changed, 12 insertions(+), 6 deletions(-)