Re: fact-import: failed to apply delta

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Shawn O. Pearce
Date: Tuesday, February 10, 2009 - 4:09 pm

Junio C Hamano <gitster@pobox.com> wrote:

Right, that was my thought.
 

That whole code is hairy.  It already has more comments than code.
What more can I really say here other than maybe this?

diff --git a/fast-import.c b/fast-import.c
index 03b13e0..7bfb563 100644
--- a/fast-import.c
+++ b/fast-import.c
@@ -1204,6 +1204,12 @@ static void *gfi_unpack_entry(
 		 */
 		p->pack_size = pack_size + 20;
 	}
+	/* DANGER, WILL ROBINSON DANGER !!!!
+	 *
+	 * unpack_entry() wasn't meant to be called the way we are
+	 * about to call it right here.  Be very careful, any sort
+	 * of assumption is probably wrong.
+	 */
 	return unpack_entry(p, oe->offset, &type, sizep);
 }
 
 

Right.

But the hiccup of a checkpoint in terms of overall performance is
such a huge amount (due to needing to re-read the entire pack to
compute its final checksum) that the loss of the delta_base_cache
is pretty much a drop in the bucket here.

I can go back and add in a struct packed_git* and filter to only
those entries in the cache, but it doesn't seem worth it to me.

-- 
Shawn.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
fact-import: failed to apply delta, Daniel Barkalow, (Mon Feb 9, 8:26 pm)
Re: fact-import: failed to apply delta, Johannes Schindelin, (Tue Feb 10, 3:28 am)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 8:56 am)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Tue Feb 10, 10:15 am)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 10:22 am)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Tue Feb 10, 10:47 am)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 12:12 pm)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Tue Feb 10, 1:03 pm)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 1:12 pm)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Tue Feb 10, 2:19 pm)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 2:25 pm)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Tue Feb 10, 2:32 pm)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 2:36 pm)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Tue Feb 10, 2:51 pm)
Re: fact-import: failed to apply delta, Junio C Hamano, (Tue Feb 10, 3:30 pm)
Re: fact-import: failed to apply delta, Junio C Hamano, (Tue Feb 10, 3:47 pm)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 4:09 pm)
Re: fact-import: failed to apply delta, Junio C Hamano, (Tue Feb 10, 4:15 pm)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Tue Feb 10, 4:16 pm)
Re: fact-import: failed to apply delta, Junio C Hamano, (Tue Feb 10, 4:32 pm)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Wed Feb 11, 11:09 am)
Re: fact-import: failed to apply delta, Shawn O. Pearce, (Wed Feb 11, 11:15 am)
Re: fact-import: failed to apply delta, Junio C Hamano, (Wed Feb 11, 11:30 am)
Re: fact-import: failed to apply delta, Daniel Barkalow, (Wed Feb 11, 11:33 am)