From owner-freebsd-current@FreeBSD.ORG Sun Sep 18 10:33:08 2011 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D3DC106564A for ; Sun, 18 Sep 2011 10:33:08 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id F0E658FC08 for ; Sun, 18 Sep 2011 10:33:07 +0000 (UTC) Received: by gxk28 with SMTP id 28so4979523gxk.13 for ; Sun, 18 Sep 2011 03:33:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=Wi51kOc6hE5MGjyzkadXjvQvWncM0FmkcQbcyjwTLUA=; b=s3d1shE60iu7XdxToAf+fcJXMONQF1/9KOqCDhEctho47CuixHXt3quMZTlkPs5Ci7 AaDY56nfZ8HuBuXFcvQ5AaMwltBNpWNkb96zcuOUzQq8gBzuBnre8GQHsdd4oJHfPv6W KlM8WxBO2LObqJzeYYuMkNmK0B+VY9eJJ/3dY= MIME-Version: 1.0 Received: by 10.236.176.65 with SMTP id a41mr7262225yhm.72.1316341987473; Sun, 18 Sep 2011 03:33:07 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.236.111.42 with HTTP; Sun, 18 Sep 2011 03:33:07 -0700 (PDT) In-Reply-To: <4E6A076D.7040309@wintek.com> References: <20110908221356.Horde.MFEsZ6Qd9PdOaSIEaid2X_A@avocado.salatschuessel.net> <4E692F87.5010708@sentex.net> <20110909073305.Horde.oi-EGaQd9PdOaaURAsTRVJk@avocado.salatschuessel.net> <4E6A076D.7040309@wintek.com> Date: Sun, 18 Sep 2011 18:33:07 +0800 X-Google-Sender-Auth: O_-4jRiAjrMgSWDUq1nObmVUxCc Message-ID: From: Adrian Chadd To: rjk@wintek.com Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current@freebsd.org, alexz@visp.ru Subject: Re: cvsup broken on amd64? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Sep 2011 10:33:08 -0000 Ah, you're the one with the csup problem. Would you mind trying csup again, and if it doesn't work, try this patch: Index: updater.c =================================================================== --- updater.c (revision 224905) +++ updater.c (working copy) @@ -240,9 +240,9 @@ * Make sure to close the fixups even in case of an error, * so that the lister thread doesn't block indefinitely. */ - fixups_close(up->config->fixups); if (!error) error = updater_batch(up, 1); + fixups_close(up->config->fixups); switch (error) { case UPDATER_ERR_PROTO: xasprintf(&args->errmsg, "Updater failed: Protocol error"); There's a PR open now (154954) but the patch may be wrong. thanks, Adrian