From owner-freebsd-xen@FreeBSD.ORG Wed Oct 10 21:18:57 2012 Return-Path: Delivered-To: freebsd-xen@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEB2AE40 for ; Wed, 10 Oct 2012 21:18:57 +0000 (UTC) (envelope-from got.andras@deployis.eu) Received: from mail.deployis.eu (mail.deployis.eu [217.20.135.253]) by mx1.freebsd.org (Postfix) with ESMTP id 356098FC0A for ; Wed, 10 Oct 2012 21:18:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=deployis.eu; s=default; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:References:Subject:To:MIME-Version:From:Date:Message-ID; bh=+eTj76olDeiQIitPPCKSd2i5JoL3KU77LfL6HE06xwo=; b=mxrMlKgRwPOgIXTwK9p3Jiz3Tsm8vB+38KR3HuPbMuQJFje6UFRnVo5UACD9Hvh6Of8UNZHMXa7bTbjsrG1BjujqkpdxDq7PCSJ2BA/qbU+wJMWV3UrdQegiUz92cJzT; Authentication-Results: mail.deployis.eu dkim=none Received: from [37.143.72.232] (port=39400 helo=[192.168.0.2]) by mail.deployis.eu with esmtpsa (Exim 4.71 #1 (Debian)) id 1TM3g7-00078W-TA from for ; Wed, 10 Oct 2012 23:18:55 +0200 Message-ID: <5075E641.20409@deployis.eu> Date: Wed, 10 Oct 2012 23:18:57 +0200 From: =?windows-1252?Q?G=F3t_Andr=E1s?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-xen@freebsd.org Subject: Re: xenbusb_nop_confighook_cb timeout References: <50757ADA.7060101@deployis.eu> <88AB8E8E-0D6C-4ED7-B0DC-7466DB7D3634@ramattack.net> In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Mail-Status-postahivatal: trustedmail (from 37.143.72.232) X-BeenThere: freebsd-xen@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion of the freebsd port to xen - implementation and usage List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Oct 2012 21:18:57 -0000 Hi, The patched worked for me also. I hope somehow it'll make to into 9.1rc if send a reply to the previous PR. :) Andras On 10/10/2012 10:16 PM, Egoitz Aurrekoetxea Aurre wrote: > mmmm... > > one thing mates… I need to check this in a more slower and conscientiously way but... > > I think… in subr_autoconf.c file in function boot_run_interrupt_driven_config_hooks it's entering in a while causing to be looped there forever… because it doesn't see the NULL it's awaiting the while and apart of this, seems nothing changes in the given structures when calling msleep…. because perhaps… nothing should change and it's always basically not seen NULL too….. So loops six times and gets there…. panicked… Look… > > root@pruebas:/root # diff -u /usr/src/sys/kern/subr_autoconf.c-defecto /usr/src/sys/kern/subr_autoconf.c > --- /usr/src/sys/kern/subr_autoconf.c-defecto 2012-10-10 13:51:27.000000000 +0200 > +++ /usr/src/sys/kern/subr_autoconf.c 2012-10-10 18:21:51.000000000 +0200 > @@ -133,16 +133,17 @@ > /* Block boot processing until all hooks are disestablished. */ > mtx_lock(&intr_config_hook_lock); > warned = 0; > - while (!TAILQ_EMPTY(&intr_config_hook_list)) { > + /* while (!TAILQ_EMPTY(&intr_config_hook_list)) { */ > if (msleep(&intr_config_hook_list, &intr_config_hook_lock, > 0, "conifhk", WARNING_INTERVAL_SECS * hz) == > EWOULDBLOCK) { > + printf("\n\n SARENET Individual lock name antes de unlock es : %s", intr_config_hook_lock.lock_object.lo_name); > mtx_unlock(&intr_config_hook_lock); > warned++; > run_interrupt_driven_config_hooks_warning(warned); > mtx_lock(&intr_config_hook_lock); > } > - } > + /* } */ > mtx_unlock(&intr_config_hook_lock); > } > > TAILQ_EMPTY is at queue.h : > > #define STAILQ_EMPTY(head) ((head)->stqh_first == NULL) > > With the printf line entered by me… have not seen any text in intr_config_hook_lock.lock_object.lo_name struct element… So…. I commented the while as seen in the patch…. > > and the system is booting :) > > root@pruebas:/root # > root@pruebas:/root # > root@pruebas:/root # > root@pruebas:/root # uptime > 7:08PM up 23 secs, 1 user, load averages: 0.96, 0.25, 0.09 > root@pruebas:/root # uname -ar > FreeBSD pruebas.sare.net 9.1-RC2 FreeBSD 9.1-RC2 #0: Wed Oct 10 18:33:54 CEST 2012 root@pruebas.sare.net:/usr/obj/usr/src/sys/XENHVM11 amd64 > root@pruebas:/root # > > So…. I'm guessing perhaps enters in the loop because the value is not exactly NULL and stays there till it attempts six times… and get there indefinitely like panicked…. > > Have tried it too with FreeBSD 9.0 RELENG_9_0…. > > As said at the beginning need to investigate further… but seems like we're going in the proper direction…. > > Cheers, > > > > El 10/10/2012, a las 20:56, Mark Felder escribió: > >> This is also preventing my XCP 1.5beta to 1.6 testing :-( >> >> >> Any suggestions are appreciated! >