From: Andre Noll <maan@systemlinux.org>
To: Art Haas <ahaas@airmail.net>
Cc: Junio C Hamano <junkio@cox.net>,
git@vger.kernel.org, Linus Torvalds <torvalds@osdl.org>
Subject: Re: Odd behavior with git and cairo-devel repo
Date: Wed, 21 Jun 2006 19:46:32 +0200 [thread overview]
Message-ID: <20060621174632.GP11245@skl-net.de> (raw)
In-Reply-To: <20060621120618.GR2820@artsapartment.org>
On 07:06, Art Haas wrote:
> I see this patch has made it into git now, and it fixes the problem
> described above. Thanks!
>
> However, I'm still seeing the problem where 'git prune' leaves the
> repo in an invalid state. In the case above, running 'git prune' on a
> freshly checked-out repo works without problems; when the repo has a
> number of unpacked objects, however, things go bad. On the FC4 machine
> I have, I updated my git repo, rebuilt, and installed the build with
> the patch above, then updated my cairo repo. The 'git pull' retrieved
> a handful of objects, and 'git fsck-objects' ran without problem.
> Then 'git prune' was run, seemingly without problem, and when I tried
> 'git repack -a -d' things went boom. A subsequent 'git fsck-object'
> run indicated the repo was missing tree and commit objects.
>
> Is anyone else seeing a similar problem with 'git prune'?
Yeah. This is due to a thinko in grow_refs_hash() which was introduced in
commit 3e4339e6f96e8c4f38a9c6607b98d3e96a2ed783
Author: Linus Torvalds <torvalds@osdl.org>
Date: Sun Jun 18 11:45:02 2006 -0700
Remove "refs" field from "struct object"
Fix below.
---
Fix grow_refs_hash()
As the hash values depend on the hash size, they have to be
recalulated when growing the hash. It's possible (though unlikely)
that there are duplicates even with the new, larger hash size, so
make grow_refs_hash() check for duplicates.
Signed-off-by: Andre Noll <maan@systemlinux.org>
---
diff --git a/object-refs.c b/object-refs.c
index 8afa227..fa1d3c1 100644
--- a/object-refs.c
+++ b/object-refs.c
@@ -25,6 +25,8 @@ static void grow_refs_hash(void)
if (!ref)
continue;
j = hash_obj(ref->base, new_hash_size);
+ while (new_hash[j])
+ j = (j + 1) % new_hash_size;
new_hash[j] = ref;
}
free(refs_hash);
--
The only person who always got his work done by Friday was Robinson Crusoe
next prev parent reply other threads:[~2006-06-21 17:47 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-21 1:00 Odd behavior with git and cairo-devel repo Art Haas
2006-06-21 2:46 ` Andre Noll
2006-06-21 11:01 ` Junio C Hamano
2006-06-21 12:06 ` Art Haas
2006-06-21 17:46 ` Andre Noll [this message]
2006-06-21 18:01 ` Linus Torvalds
2006-06-21 19:43 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060621174632.GP11245@skl-net.de \
--to=maan@systemlinux.org \
--cc=ahaas@airmail.net \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
--cc=torvalds@osdl.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox