Signed-off-by: Ben Jackson <ben@xxxxxxx> --- On Wed, Jun 03, 2009 at 05:24:06PM -0700, Eric Wong wrote: > > find_rev_before can certainly be improved. I haven't noticed > performance issues with it myself, but you should be able to improve it. This avoids a long wait if you do 'git svn reset -r 9999999'. The linear search within the contiguous revisions doesn't seem to be a problem. git-svn.perl | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/git-svn.perl b/git-svn.perl index 20bf828..b77710c 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -3130,6 +3130,8 @@ sub find_rev_before { my ($self, $rev, $eq_ok, $min_rev) = @_; --$rev unless $eq_ok; $min_rev ||= 1; + my $max_rev = $self->rev_map_max; + $rev = $max_rev if ($rev > $max_rev); while ($rev >= $min_rev) { if (my $c = $self->rev_map_get($rev)) { return ($rev, $c); -- 1.6.3.GIT -- 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