From owner-cvs-all@FreeBSD.ORG Sat Feb 11 20:08:56 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D226916A420; Sat, 11 Feb 2006 20:08:56 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9C6B43D48; Sat, 11 Feb 2006 20:08:53 +0000 (GMT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k1BK8r3v088286; Sat, 11 Feb 2006 20:08:53 GMT (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k1BK8rI4088285; Sat, 11 Feb 2006 20:08:53 GMT (envelope-from mux) Message-Id: <200602112008.k1BK8rI4088285@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 11 Feb 2006 20:08:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/net/csup Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Feb 2006 20:08:57 -0000 mux 2006-02-11 20:08:53 UTC FreeBSD ports repository Modified files: net/csup Makefile distinfo Log: Update to csup-snap-20060211: - Add support for retries when the connection is rejected by the server and the associated -1 and -r maxRetries options. - Add missing description for the -4 and -6 options in csup.1. - Ignore the return value of a chflags() call in fattr_install() to match CVSup. This fixes csup over NFS. - Correctly handle any locking error with assertions. - Make the multiplexer code fully dynamic and cancelable. - Handle errors in the sender and receiver threads correctly by closing the multilpexer and waking up all the threads blocked on any of the channels. This means we don't hang when being disconnected for instance. - Make several functions of the chan API, most notably chan_read() and chan_write() take a struct chan * instead of an id. This saves a mutex lock and unlock for each call to these functions, and also reduces the contention on the multiplexer lock. - Change the stream API so that we can associate a stream with a void * to support the previous change. Update all the consumers. - Optimize the scheduling of the sender thread so that it's not possible to have some channels starve others. - Optimize mkdirhier() so that it saves many access() calls on average. - Always set the "no rsync" option to the collections since we don't support the rsync updating algorithm yet. I have yet to see a CVSup server trying to send me rsync updates of files in checkout mode but better safe than sorry. - Fix the RCS keyword handling. Updating the OpenBSD-src collection from an OpenBSD CVSup server now works. - Correctly handle deletion requests for directories. - And various minor bugfixes. Revision Changes Path 1.6 +1 -1 ports/net/csup/Makefile 1.5 +3 -3 ports/net/csup/distinfo