Skip to content

Commit c602d3a

Browse files
peffgitster
authored andcommitted
write_entry: avoid reading blobs in CE_RETRY case
When retrying a delayed filter-process request, we don't need to send the blob to the filter a second time. However, we read it unconditionally into a buffer, only to later throw away that buffer. We can make this more efficient by skipping the read in the first place when it isn't necessary. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent b240158 commit c602d3a

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

entry.c

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ static int write_entry(struct cache_entry *ce,
240240
char *path, const struct checkout *state, int to_tempfile)
241241
{
242242
unsigned int ce_mode_s_ifmt = ce->ce_mode & S_IFMT;
243+
struct delayed_checkout *dco = state->delayed_checkout;
243244
int fd, ret, fstat_done = 0;
244245
char *new;
245246
struct strbuf buf = STRBUF_INIT;
@@ -261,10 +262,19 @@ static int write_entry(struct cache_entry *ce,
261262
switch (ce_mode_s_ifmt) {
262263
case S_IFREG:
263264
case S_IFLNK:
264-
new = read_blob_entry(ce, &size);
265-
if (!new)
266-
return error("unable to read sha1 file of %s (%s)",
267-
path, oid_to_hex(&ce->oid));
265+
/*
266+
* We do not send the blob in case of a retry, so do not
267+
* bother reading it at all.
268+
*/
269+
if (ce_mode_s_ifmt == S_IFREG && dco && dco->state == CE_RETRY) {
270+
new = NULL;
271+
size = 0;
272+
} else {
273+
new = read_blob_entry(ce, &size);
274+
if (!new)
275+
return error("unable to read sha1 file of %s (%s)",
276+
path, oid_to_hex(&ce->oid));
277+
}
268278

269279
if (ce_mode_s_ifmt == S_IFLNK && has_symlinks && !to_tempfile) {
270280
ret = symlink(new, path);
@@ -279,14 +289,7 @@ static int write_entry(struct cache_entry *ce,
279289
* Convert from git internal format to working tree format
280290
*/
281291
if (ce_mode_s_ifmt == S_IFREG) {
282-
struct delayed_checkout *dco = state->delayed_checkout;
283292
if (dco && dco->state != CE_NO_DELAY) {
284-
/* Do not send the blob in case of a retry. */
285-
if (dco->state == CE_RETRY) {
286-
free(new);
287-
new = NULL;
288-
size = 0;
289-
}
290293
ret = async_convert_to_working_tree(
291294
ce->name, new, size, &buf, dco);
292295
if (ret && string_list_has_string(&dco->paths, ce->name)) {

0 commit comments

Comments
 (0)