[PATCH 06/10] rev-list: pass "revs" to "show_bisect_vars"

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



instead of using static "revs" data

Signed-off-by: Christian Couder <chriscool@xxxxxxxxxxxxx>
---
 bisect.h           |    3 ++-
 builtin-rev-list.c |   13 +++++++------
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/bisect.h b/bisect.h
index 860a15c..31c99fe 100644
--- a/bisect.h
+++ b/bisect.h
@@ -5,6 +5,7 @@ extern struct commit_list *find_bisection(struct commit_list *list,
 					  int *reaches, int *all,
 					  int find_all);
 
-extern int show_bisect_vars(int reaches, int all, int show_all);
+extern int show_bisect_vars(struct rev_info *revs, int reaches, int all,
+			    int show_all);
 
 #endif
diff --git a/builtin-rev-list.c b/builtin-rev-list.c
index c700c34..cdb0f9d 100644
--- a/builtin-rev-list.c
+++ b/builtin-rev-list.c
@@ -226,16 +226,16 @@ static int estimate_bisect_steps(int all)
 	return (e < 3 * x) ? n : n - 1;
 }
 
-int show_bisect_vars(int reaches, int all, int show_all)
+int show_bisect_vars(struct rev_info *revs, int reaches, int all, int show_all)
 {
 	int cnt;
 	char hex[41];
 
-	if (!revs.commits)
+	if (!revs->commits)
 		return 1;
 
 	/*
-	 * revs.commits can reach "reaches" commits among
+	 * revs->commits can reach "reaches" commits among
 	 * "all" commits.  If it is good, then there are
 	 * (all-reaches) commits left to be bisected.
 	 * On the other hand, if it is bad, then the set
@@ -247,10 +247,10 @@ int show_bisect_vars(int reaches, int all, int show_all)
 	if (cnt < reaches)
 		cnt = reaches;
 
-	strcpy(hex, sha1_to_hex(revs.commits->item->object.sha1));
+	strcpy(hex, sha1_to_hex(revs->commits->item->object.sha1));
 
 	if (show_all) {
-		traverse_commit_list(&revs, show_commit, show_object);
+		traverse_commit_list(revs, show_commit, show_object);
 		printf("------\n");
 	}
 
@@ -358,7 +358,8 @@ int cmd_rev_list(int argc, const char **argv, const char *prefix)
 		revs.commits = find_bisection(revs.commits, &reaches, &all,
 					      bisect_find_all);
 		if (bisect_show_vars)
-			return show_bisect_vars(reaches, all, bisect_find_all);
+			return show_bisect_vars(&revs, reaches, all,
+						bisect_find_all);
 	}
 
 	traverse_commit_list(&revs,
-- 
1.6.2.1.317.g3d804

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux