]> git.ipfire.org Git - thirdparty/git.git/commit - upload-pack.c
upload-pack: use buffered I/O to talk to rev-list
authorRené Scharfe <l.s.r@web.de>
Wed, 12 Aug 2020 16:52:55 +0000 (18:52 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Aug 2020 17:29:39 +0000 (10:29 -0700)
commita698d67b08f98ddac0e6df898fbfab5b4fbd36b1
treeac14f756e96b831cb4c304bb7b83ceabcafdbeab
parent6af3b00abc3d2af69e6bdf4f8c0843d7e3bf9c88
upload-pack: use buffered I/O to talk to rev-list

Like f0bca72dc77 (send-pack: use buffered I/O to talk to pack-objects,
2016-06-08), significantly reduce the number of system calls and
simplify the code for sending object IDs to rev-list by using stdio's
buffering.

Take care to handle errors immediately to get the correct error code,
and to flush the buffer explicitly before closing the stream in order to
catch any write errors for these last bytes.

Helped-by: Chris Torek <chris.torek@gmail.com>
Helped-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
upload-pack.c