Git development
 help / color / mirror / Atom feed
* [PATCH] pack-objects: emit base before delta.
@ 2005-07-01  5:58 Junio C Hamano
  2005-07-01  6:18 ` Junio C Hamano
  2005-07-01 15:28 ` Linus Torvalds
  0 siblings, 2 replies; 4+ messages in thread
From: Junio C Hamano @ 2005-07-01  5:58 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: git

This micro-optimizes the order of objects in a pack.  By
emitting base objects before deltified ones, unpack-objects do
not keep items on delta_list.

I think it is prudent to keep the add_delta_to_list() logic in
unpack-objects, so this commit only changes the packing side.

Signed-off-by: Junio C Hamano <junkio@cox.net>
---

 pack-objects.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

9be15981d7038f1d9d0b105f45760987584e60a6
diff --git a/pack-objects.c b/pack-objects.c
--- a/pack-objects.c
+++ b/pack-objects.c
@@ -114,11 +114,13 @@ static unsigned long write_one(struct sh
 		 * if it is written already.
 		 */
 		return offset;
-	e->offset = offset;
-	offset += write_object(f, e);
-	/* if we are delitified, write out its base object. */
+
+	/* if we are delitified, write out its base objects first */
 	if (e->delta)
 		offset = write_one(f, e->delta, offset);
+
+	e->offset = offset;
+	offset += write_object(f, e);
 	return offset;
 }
 
------------

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-07-01 15:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-01  5:58 [PATCH] pack-objects: emit base before delta Junio C Hamano
2005-07-01  6:18 ` Junio C Hamano
2005-07-01 15:28 ` Linus Torvalds
2005-07-01 15:40   ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox