From owner-freebsd-current@FreeBSD.ORG Wed Nov 29 22:13:49 2006 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B595616A415; Wed, 29 Nov 2006 22:13:49 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.ntplx.net (mail.ntplx.net [204.213.176.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54CB943D46; Wed, 29 Nov 2006 22:13:24 +0000 (GMT) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.ntplx.net (8.13.8/8.13.8/NETPLEX) with ESMTP id kATMDRLN011740; Wed, 29 Nov 2006 17:13:27 -0500 (EST) Date: Wed, 29 Nov 2006 17:13:27 -0500 (EST) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Norikatsu Shigemura In-Reply-To: Message-ID: References: <20061130003939.7d05b09a.nork@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-2.0.2 (mail.ntplx.net [204.213.176.10]); Wed, 29 Nov 2006 17:13:27 -0500 (EST) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.ntplx.net) Cc: current@freebsd.org Subject: Re: cvsync doesn't work simply on 7-current with SYMVER_ENABLED=yes X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Nov 2006 22:13:49 -0000 On Wed, 29 Nov 2006, Daniel Eischen wrote: > On Thu, 30 Nov 2006, Norikatsu Shigemura wrote: > >> I'm testing SYMVER_ENABLED=yes environment by using net/cvsync. >> Yes, it is quite simple. You can only install and use it. It >> doesn't require any setting like following. >> >> $ cvsync -4 -v >> 'cvsync://cvsync.allbsd.org/freebsd-src/rcs/?prefix=/home/ncvs' >> >> >> I tested -lthr case and -lpthread case. Please see attached log. >> >> $ ktrace -i -t cnisuw =cvsync -4 -v >> 'cvsync://cvsync.allbsd.org/freebsd-src/rcs/?prefix=/home/ncvs' >> Parsing a URI >> cvsync://cvsync.allbsd.org/freebsd-src/rcs/?prefix=/home/ncvs... >> Connecting to cvsync.allbsd.org port 7777 >> host 133.31.130.35 port 7777: Operation timed out >> service is not available at cvsync.allbsd.org port 7777 > > I don't understand why kqueue and kevent are not found in cvsync, > but still end up being referenced: I guess the kqueue/kevent must be coming from libc name lookups which I didn't at first spot. The only thing that looks strange there is that libc uses kqueue and kevent instead of _kqueue and _kevent, though I don't think that will make a difference. Other than that, I don't see anything that looks out of the ordinary. You might try dumping the sockaddr before cvsync does the connect() -- DE