git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] Clean up how fetch_pack() handles the heads list
@ 2012-08-23  8:10 mhagger
  2012-08-23  8:10 ` [PATCH 01/17] t5500: add tests of error output for missing refs mhagger
                   ` (17 more replies)
  0 siblings, 18 replies; 40+ messages in thread
From: mhagger @ 2012-08-23  8:10 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Jeff King, git, Michael Haggerty

From: Michael Haggerty <mhagger@alum.mit.edu>

There were various confusing things (and a couple of bugs) in the way
that fetch_pack() handled the list (nr_heads, heads) of references to
be sought from the remote:

* Different names were used for the list in different functions for no
  special reason.

* fetch_pack() modified the list in-place:

  * It moved entries around

  * It sometimes shrunk the list without informing the caller (which
    could lead to spurious error messages)

  * It overwrote the first byte of matching entries with NUL, leaving
    a sparse list that the caller had to interpret

  * Its interaction with the list was documented

* No error was reported if *all* requested references were missing
  from the remote.

I'm still suspicious about the logic related to args.fetch_all and
args.depth, but I don't think I've made anything worse.

This patch series applies to the merge between master and
jc/maint-push-refs-all, though the dependency on the latter is only
textual.

Michael Haggerty (17):
  t5500: add tests of error output for missing refs
  Rename static function fetch_pack() to http_fetch_pack()
  Fix formatting.
  Name local variables more consistently
  Do not check the same match_pos twice
  Let fetch_pack() inform caller about number of unique heads
  Pass nr_heads to do_pack_ref() by reference
  Pass nr_heads to everything_local() by reference
  Pass nr_heads to filter_refs() by reference
  Remove ineffective optimization
  filter_refs(): do not leave gaps in return_refs
  filter_refs(): compress unmatched refs in heads array
  cmd_fetch_pack: return early if finish_connect() returns an error
  Report missing refs even if no existing refs were received
  cmd_fetch_pack(): simplify computation of return value
  fetch_pack(): free matching heads
  fetch_refs(): simplify logic

 builtin/fetch-pack.c  | 128 ++++++++++++++++++++------------------------------
 fetch-pack.h          |  19 +++++---
 http-walker.c         |   4 +-
 t/t5500-fetch-pack.sh |  32 ++++++++++++-
 transport.c           |   8 ++--
 5 files changed, 101 insertions(+), 90 deletions(-)

-- 
1.7.11.3

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

end of thread, other threads:[~2012-09-02  7:03 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-23  8:10 [PATCH 00/17] Clean up how fetch_pack() handles the heads list mhagger
2012-08-23  8:10 ` [PATCH 01/17] t5500: add tests of error output for missing refs mhagger
2012-08-23  8:10 ` [PATCH 02/17] Rename static function fetch_pack() to http_fetch_pack() mhagger
2012-08-23  8:10 ` [PATCH 03/17] Fix formatting mhagger
2012-08-23  8:10 ` [PATCH 04/17] Name local variables more consistently mhagger
2012-08-23  8:39   ` Jeff King
2012-08-24  7:05     ` Michael Haggerty
2012-08-26 17:39     ` Junio C Hamano
2012-08-27  9:22       ` Michael Haggerty
2012-08-27  9:25         ` Jeff King
2012-08-27 16:55           ` Junio C Hamano
2012-08-27 16:50         ` Junio C Hamano
2012-08-23  8:10 ` [PATCH 05/17] Do not check the same match_pos twice mhagger
2012-08-23  8:42   ` Jeff King
2012-08-23  8:10 ` [PATCH 06/17] Let fetch_pack() inform caller about number of unique heads mhagger
2012-08-23  8:54   ` Jeff King
2012-08-25  5:05     ` Michael Haggerty
2012-08-23  8:10 ` [PATCH 07/17] Pass nr_heads to do_pack_ref() by reference mhagger
2012-08-23  8:10 ` [PATCH 08/17] Pass nr_heads to everything_local() " mhagger
2012-08-23  8:10 ` [PATCH 09/17] Pass nr_heads to filter_refs() " mhagger
2012-08-23  8:10 ` [PATCH 10/17] Remove ineffective optimization mhagger
2012-08-23  8:10 ` [PATCH 11/17] filter_refs(): do not leave gaps in return_refs mhagger
2012-08-23  8:10 ` [PATCH 12/17] filter_refs(): compress unmatched refs in heads array mhagger
2012-08-23  8:10 ` [PATCH 13/17] cmd_fetch_pack: return early if finish_connect() returns an error mhagger
2012-08-23  8:10 ` [PATCH 14/17] Report missing refs even if no existing refs were received mhagger
2012-08-23  8:10 ` [PATCH 15/17] cmd_fetch_pack(): simplify computation of return value mhagger
2012-08-23  8:10 ` [PATCH 16/17] fetch_pack(): free matching heads mhagger
2012-08-23  9:04   ` Jeff King
2012-08-23  8:10 ` [PATCH 17/17] fetch_refs(): simplify logic mhagger
2012-08-23  9:07   ` Jeff King
2012-08-25  6:37     ` Michael Haggerty
2012-08-23  9:26 ` [PATCH 00/17] Clean up how fetch_pack() handles the heads list Jeff King
2012-08-23 19:13   ` Philip Oakley
2012-08-23 19:56     ` Jeff King
2012-08-23 20:31       ` Jeff King
2012-08-25  7:05         ` Michael Haggerty
2012-09-02  7:02         ` Michael Haggerty
2012-08-23 22:09       ` Philip Oakley
2012-08-24  4:23       ` Junio C Hamano
2012-08-24 12:46         ` Philip Oakley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).