From commits-return-48374-archive-asf-public=cust-asf.ponee.io@subversion.apache.org Sun Feb 11 05:00:18 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 8577718061A for ; Sun, 11 Feb 2018 05:00:18 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 752CC160C5F; Sun, 11 Feb 2018 04:00:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BA8B3160C4D for ; Sun, 11 Feb 2018 05:00:17 +0100 (CET) Received: (qmail 69755 invoked by uid 500); 11 Feb 2018 04:00:16 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 69745 invoked by uid 99); 11 Feb 2018 04:00:16 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Feb 2018 04:00:16 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 2B4CF3A0096 for ; Sun, 11 Feb 2018 04:00:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1823809 - in /subversion/branches/1.10.x: ./ STATUS subversion/libsvn_client/info.c Date: Sun, 11 Feb 2018 04:00:16 -0000 To: commits@subversion.apache.org From: svn-role@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20180211040016.2B4CF3A0096@svn01-us-west.apache.org> Author: svn-role Date: Sun Feb 11 04:00:15 2018 New Revision: 1823809 URL: http://svn.apache.org/viewvc?rev=1823809&view=rev Log: Merge r1823327 from trunk: * r1823327 Performance: Make the 'info' command fast on old repository revisions. Justification: Performance was bad. Votes: +1: julianfoad, brane, stsp Modified: subversion/branches/1.10.x/ (props changed) subversion/branches/1.10.x/STATUS subversion/branches/1.10.x/subversion/libsvn_client/info.c Propchange: subversion/branches/1.10.x/ ------------------------------------------------------------------------------ --- svn:mergeinfo (original) +++ svn:mergeinfo Sun Feb 11 04:00:15 2018 @@ -100,4 +100,4 @@ /subversion/branches/verify-at-commit:1462039-1462408 /subversion/branches/verify-keep-going:1439280-1546110 /subversion/branches/wc-collate-path:1402685-1480384 -/subversion/trunk:1817837,1817856,1818577-1818578,1818584,1818651,1818662,1818727,1818801,1818803,1818807,1818868,1818871,1819036-1819037,1819043,1819049,1819052,1819093,1819146,1819162,1819444,1819556-1819557,1819603,1819804,1819911,1820044,1820046-1820047,1820518,1820718,1820778,1821183,1821224,1821621,1821678,1822401,1822996,1823202-1823203 +/subversion/trunk:1817837,1817856,1818577-1818578,1818584,1818651,1818662,1818727,1818801,1818803,1818807,1818868,1818871,1819036-1819037,1819043,1819049,1819052,1819093,1819146,1819162,1819444,1819556-1819557,1819603,1819804,1819911,1820044,1820046-1820047,1820518,1820718,1820778,1821183,1821224,1821621,1821678,1822401,1822996,1823202-1823203,1823327 Modified: subversion/branches/1.10.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.10.x/STATUS?rev=1823809&r1=1823808&r2=1823809&view=diff ============================================================================== --- subversion/branches/1.10.x/STATUS (original) +++ subversion/branches/1.10.x/STATUS Sun Feb 11 04:00:15 2018 @@ -21,13 +21,6 @@ Veto-blocked changes: Approved changes: ================= - * r1823327 - Performance: Make the 'info' command fast on old repository revisions. - Justification: - Performance was bad. - Votes: - +1: julianfoad, brane, stsp - * r1820627 davautocheck.sh: Support a --lldb option alongside --gdb. Justification: Modified: subversion/branches/1.10.x/subversion/libsvn_client/info.c URL: http://svn.apache.org/viewvc/subversion/branches/1.10.x/subversion/libsvn_client/info.c?rev=1823809&r1=1823808&r2=1823809&view=diff ============================================================================== --- subversion/branches/1.10.x/subversion/libsvn_client/info.c (original) +++ subversion/branches/1.10.x/subversion/libsvn_client/info.c Sun Feb 11 04:00:15 2018 @@ -253,17 +253,17 @@ same_resource_in_head(svn_boolean_t *sam apr_pool_t *pool) { svn_error_t *err; - svn_opt_revision_t start_rev, peg_rev; + svn_opt_revision_t operative_rev, peg_rev; const char *head_url; - start_rev.kind = svn_opt_revision_head; - peg_rev.kind = svn_opt_revision_number; - peg_rev.value.number = rev; + peg_rev.kind = svn_opt_revision_head; + operative_rev.kind = svn_opt_revision_number; + operative_rev.value.number = rev; err = svn_client__repos_locations(&head_url, NULL, NULL, NULL, ra_session, url, &peg_rev, - &start_rev, NULL, + &operative_rev, NULL, ctx, pool); if (err && ((err->apr_err == SVN_ERR_CLIENT_UNRELATED_RESOURCES) ||