* [PATCH] upload-pack: Remove some unused code
@ 2010-07-24 20:09 Elijah Newren
2010-07-26 5:42 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Elijah Newren @ 2010-07-24 20:09 UTC (permalink / raw)
To: git; +Cc: Elijah Newren
Signed-off-by: Elijah Newren <newren@gmail.com>
---
I'm not sure if this is too trivial to submit, but I noticed it while
poking around in upload-pack.
Ever since f0cea83f631689331fce73b51f22707e897f7939, the
'create_full_pack' argument has been unused and is always false. We
can make it clear that this argument is currently unused and remove some
associated code from an 'if' block.
upload-pack.c | 29 ++++++++++++-----------------
1 files changed, 12 insertions(+), 17 deletions(-)
diff --git a/upload-pack.c b/upload-pack.c
index dc464d7..c2e4eae 100644
--- a/upload-pack.c
+++ b/upload-pack.c
@@ -105,7 +105,7 @@ static void show_edge(struct commit *commit)
fprintf(pack_pipe, "-%s\n", sha1_to_hex(commit->object.sha1));
}
-static int do_rev_list(int in, int out, void *create_full_pack)
+static int do_rev_list(int in, int out, void *unused)
{
int i;
struct rev_info revs;
@@ -118,23 +118,18 @@ static int do_rev_list(int in, int out, void *create_full_pack)
if (use_thin_pack)
revs.edge_hint = 1;
- if (create_full_pack) {
- const char *args[] = {"rev-list", "--all", NULL};
- setup_revisions(2, args, &revs, NULL);
- } else {
- for (i = 0; i < want_obj.nr; i++) {
- struct object *o = want_obj.objects[i].item;
- /* why??? */
- o->flags &= ~UNINTERESTING;
- add_pending_object(&revs, o, NULL);
- }
- for (i = 0; i < have_obj.nr; i++) {
- struct object *o = have_obj.objects[i].item;
- o->flags |= UNINTERESTING;
- add_pending_object(&revs, o, NULL);
- }
- setup_revisions(0, NULL, &revs, NULL);
+ for (i = 0; i < want_obj.nr; i++) {
+ struct object *o = want_obj.objects[i].item;
+ /* why??? */
+ o->flags &= ~UNINTERESTING;
+ add_pending_object(&revs, o, NULL);
+ }
+ for (i = 0; i < have_obj.nr; i++) {
+ struct object *o = have_obj.objects[i].item;
+ o->flags |= UNINTERESTING;
+ add_pending_object(&revs, o, NULL);
}
+ setup_revisions(0, NULL, &revs, NULL);
if (prepare_revision_walk(&revs))
die("revision walk setup failed");
mark_edges_uninteresting(revs.commits, &revs, show_edge);
--
1.7.2.1.g83744
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] upload-pack: Remove some unused code
2010-07-24 20:09 [PATCH] upload-pack: Remove some unused code Elijah Newren
@ 2010-07-26 5:42 ` Junio C Hamano
2010-07-26 18:29 ` Nicolas Pitre
0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2010-07-26 5:42 UTC (permalink / raw)
To: Elijah Newren; +Cc: git, Nick Edelen, Nicolas Pitre
Elijah Newren <newren@gmail.com> writes:
> Signed-off-by: Elijah Newren <newren@gmail.com>
> ---
> I'm not sure if this is too trivial to submit, but I noticed it while
> poking around in upload-pack.
>
> Ever since f0cea83f631689331fce73b51f22707e897f7939, the
> 'create_full_pack' argument has been unused and is always false. We
> can make it clear that this argument is currently unused and remove some
> associated code from an 'if' block.
While it is true that currently we memset(&rev_list) to always pass NULL
there, I wonder if that was an unintended behaviour change introduced by
the commit you mentioned...
> upload-pack.c | 29 ++++++++++++-----------------
> 1 files changed, 12 insertions(+), 17 deletions(-)
>
> diff --git a/upload-pack.c b/upload-pack.c
> index dc464d7..c2e4eae 100644
> --- a/upload-pack.c
> +++ b/upload-pack.c
> @@ -105,7 +105,7 @@ static void show_edge(struct commit *commit)
> fprintf(pack_pipe, "-%s\n", sha1_to_hex(commit->object.sha1));
> }
>
> -static int do_rev_list(int in, int out, void *create_full_pack)
> +static int do_rev_list(int in, int out, void *unused)
> {
> int i;
> struct rev_info revs;
> @@ -118,23 +118,18 @@ static int do_rev_list(int in, int out, void *create_full_pack)
> if (use_thin_pack)
> revs.edge_hint = 1;
>
> - if (create_full_pack) {
> - const char *args[] = {"rev-list", "--all", NULL};
> - setup_revisions(2, args, &revs, NULL);
> - } else {
> - for (i = 0; i < want_obj.nr; i++) {
> - struct object *o = want_obj.objects[i].item;
> - /* why??? */
> - o->flags &= ~UNINTERESTING;
> - add_pending_object(&revs, o, NULL);
> - }
> - for (i = 0; i < have_obj.nr; i++) {
> - struct object *o = have_obj.objects[i].item;
> - o->flags |= UNINTERESTING;
> - add_pending_object(&revs, o, NULL);
> - }
> - setup_revisions(0, NULL, &revs, NULL);
> + for (i = 0; i < want_obj.nr; i++) {
> + struct object *o = want_obj.objects[i].item;
> + /* why??? */
> + o->flags &= ~UNINTERESTING;
> + add_pending_object(&revs, o, NULL);
> + }
> + for (i = 0; i < have_obj.nr; i++) {
> + struct object *o = have_obj.objects[i].item;
> + o->flags |= UNINTERESTING;
> + add_pending_object(&revs, o, NULL);
> }
> + setup_revisions(0, NULL, &revs, NULL);
> if (prepare_revision_walk(&revs))
> die("revision walk setup failed");
> mark_edges_uninteresting(revs.commits, &revs, show_edge);
> --
> 1.7.2.1.g83744
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] upload-pack: Remove some unused code
2010-07-26 5:42 ` Junio C Hamano
@ 2010-07-26 18:29 ` Nicolas Pitre
0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Pitre @ 2010-07-26 18:29 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Elijah Newren, git, Nick Edelen
On Sun, 25 Jul 2010, Junio C Hamano wrote:
> Elijah Newren <newren@gmail.com> writes:
>
> > Signed-off-by: Elijah Newren <newren@gmail.com>
> > ---
> > I'm not sure if this is too trivial to submit, but I noticed it while
> > poking around in upload-pack.
> >
> > Ever since f0cea83f631689331fce73b51f22707e897f7939, the
> > 'create_full_pack' argument has been unused and is always false. We
> > can make it clear that this argument is currently unused and remove some
> > associated code from an 'if' block.
>
> While it is true that currently we memset(&rev_list) to always pass NULL
> there, I wonder if that was an unintended behaviour change introduced by
> the commit you mentioned...
I don't think so. Especially since now do_rev_list() is only used for
shallow clones/fetches, there can never be a full pack in that case.
The create_full_pack logic remans present and local to
create_pack_file().
Nicolas
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-07-26 18:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-24 20:09 [PATCH] upload-pack: Remove some unused code Elijah Newren
2010-07-26 5:42 ` Junio C Hamano
2010-07-26 18:29 ` Nicolas Pitre
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).