upload-pack: drop lookup-before-parse optimization
authorJeff King <peff@peff.net>
Sat, 16 Mar 2013 10:25:25 +0000 (06:25 -0400)
committerJunio C Hamano <gitster@pobox.com>
Sun, 17 Mar 2013 05:16:45 +0000 (22:16 -0700)
When we receive a "have" line from the client, we want to
load the object pointed to by the sha1. However, we are
careful to do:

o = lookup_object(sha1);
if (!o || !o->parsed)
o = parse_object(sha1);

to avoid loading the object from disk if we have already
seen it. However, since ccdc603 (parse_object: try internal
cache before reading object db), parse_object already does
this optimization internally. We can just call parse_object
directly.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
upload-pack.c
index 6142421ea1172f7fe6b57486a4f41b81d92bab85..e29d5d2085657a201f1d0028144e4cddaf64c611 100644 (file)
@@ -327,9 +327,7 @@ static int got_sha1(char *hex, unsigned char *sha1)
        if (!has_sha1_file(sha1))
                return -1;
 
-       o = lookup_object(sha1);
-       if (!(o && o->parsed))
-               o = parse_object(sha1);
+       o = parse_object(sha1);
        if (!o)
                die("oops (%s)", sha1_to_hex(sha1));
        if (o->type == OBJ_COMMIT) {