From owner-freebsd-arm@freebsd.org Mon Nov 30 19:47:51 2015 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E39D1A3C97C for ; Mon, 30 Nov 2015 19:47:51 +0000 (UTC) (envelope-from freebsd.asc@strcmp.org) Received: from olinguito.schwarzes.net (olinguito.schwarzes.net [IPv6:2a01:4f8:7d:1b5::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7CF1110A6 for ; Mon, 30 Nov 2015 19:47:50 +0000 (UTC) (envelope-from freebsd.asc@strcmp.org) Received: from [62.109.78.35] (mosquito.schwarzes.net [62.109.78.35]) (authenticated bits=0) by olinguito.schwarzes.net (8.15.2/8.15.2) with ESMTPA id tAUJlm9h056534 for ; Mon, 30 Nov 2015 20:47:48 +0100 (CET) (envelope-from freebsd.asc@strcmp.org) From: Andreas Schwarz To: freebsd-arm@FreeBSD.org Mail-Reply-To: Andreas Schwarz Mail-Followup-To: freebsd-arm@FreeBSD.org Date: Mon, 30 Nov 2015 20:47:47 +0100 (CET) Message-ID: <475076c4950.65c32bb0@mail.schwarzes.net> In-Reply-To: <644A3890-CEF7-4ED4-BB85-616C09EE1E6F@kientzle.com> References: <20150904173804.GA82922@potato.growveg.org> <46ddeb2caa6.2d9e5c4c@mail.schwarzes.net> <20150904223214.GA80713@potato.growveg.org> <644A3890-CEF7-4ED4-BB85-616C09EE1E6F@kientzle.com> User-Agent: YAM/2.9p1 (MorphOS; PPC; rv:20140418r7798) Subject: Re: very odd behaviour from svnlite on RPi2 MIME-Version: 1.0 Content-Type: text/plain X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.4.3 (olinguito.schwarzes.net [78.47.41.143]); Mon, 30 Nov 2015 20:47:48 +0100 (CET) X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Nov 2015 19:47:52 -0000 On 04.09.15, Tim Kientzle wrote: >> I've not seen these errors on the other freebsd boxes in the logs (same >> connection) which is why I thought it might be a bottleneck with the pi. > > In some cases, I've repeated the 'svn cleanup' + 'svn up' cycle for 2-3 days before it finally completed > only to see missing files that svn doesn't seem to be aware of at all. I've found that partial tree > checkouts are more likely to succeed; you can sometimes work around this by asking SVN to checkout/update > individual subdirectories. Just some additional informations. I found out the main reason for my svn(lite) problems. root@pizelot:/usr/src # svnlite update Updating '.': svn: E170013: Unable to connect to a repository at URL 'http://svn.freebsd.org/base/head' svn: E000060: Error running context: Operation timed out root@pizelot:/usr/src # host svn.freebsd.org svn.freebsd.org is an alias for svnmir.geo.freebsd.org. svnmir.geo.freebsd.org has address 213.138.116.72 svnmir.geo.freebsd.org has IPv6 address 2001:41c8:112:8300::e6a:0 svnmir.geo.freebsd.org mail is handled by 0 . root@pizelot:/usr/src # ping6 svn.freebsd.org PING6(56=40+8+8 bytes) 2a01:c08:0:5::3 --> 2001:41c8:112:8300::e6a:0 ^C --- svnmir.geo.freebsd.org ping6 statistics --- 24 packets transmitted, 0 packets received, 100.0% packet loss IPv6 connection is prefered before IPv4 (there is no failover to v4). When deconfiguring v6, svn update works like expected. I've not found an option to tell svn to prefer the ipv4 address (it's only possible to manipulate the svn server URL or change the systemwide address selection). -asc