From owner-freebsd-current@FreeBSD.ORG Fri Jun 5 11:18:28 2009 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 EA038106564A for ; Fri, 5 Jun 2009 11:18:28 +0000 (UTC) (envelope-from jacques.fourie@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.156]) by mx1.freebsd.org (Postfix) with ESMTP id 79BB78FC0C for ; Fri, 5 Jun 2009 11:18:28 +0000 (UTC) (envelope-from jacques.fourie@gmail.com) Received: by fg-out-1718.google.com with SMTP id e12so181405fga.12 for ; Fri, 05 Jun 2009 04:18:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=v8mJVPAKP7nY3tIma7lSJY4tHIuiFzqNAwh5ZS4O3es=; b=V2M/SvegmJ0ARtKmH0eeVhP7hY53vFZwNl3vdLKEahBUNpsM2G6295L8L4C5sHB/Cp ivaM4s9iAXnLu2+cLeOgSAeODmYiIZeTWN1j0/ACs17gQIW19ZZDgjT6IBEslkRYuPLE SXeQ3jsOaBMskTG1wWtTEkg+rkoxveQ9iCKng= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=TRmt6tlYS402NcZ6Qii7NYd+uNB11vpFdbUwYUfYn9n6JROa7+wp8bEu5XPE2q5R0/ D8ESMPHWTsftYcrcJ8ECqhCoIrgdKRSfyoEtbxGkijaWZOG/Vlm1cDnOJxbq+ly4oLkD l/HuTpASOww6zT/r0ftGEki/Jmd+1R5dfiuEY= MIME-Version: 1.0 Received: by 10.86.58.1 with SMTP id g1mr3724892fga.54.1244199505967; Fri, 05 Jun 2009 03:58:25 -0700 (PDT) In-Reply-To: <1230326101.16303.1243663430565.JavaMail.apache@mail52.abv.bg> References: <1230326101.16303.1243663430565.JavaMail.apache@mail52.abv.bg> Date: Fri, 5 Jun 2009 12:58:25 +0200 Message-ID: From: Jacques Fourie To: Mario Pavlov Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-current@freebsd.org Subject: Re: [Call For Testing] VirtualBox for FreeBSD! take 4 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: Fri, 05 Jun 2009 11:18:29 -0000 > Hi, > I've tried http://people.freebsd.org/~miwi/vbox/virtualbox_5.tgz out... > =A0- it compiles fine (except for the iso I had to download manually) > =A0- it panics when I try to load the kernel module, first I tried to loa= d it with X running and the second time I tried to load it without X runnin= g, please find attached the output. > > about my machine: > $ uname -a > FreeBSD home.mydomain.org 7.2-STABLE FreeBSD 7.2-STABLE #7: Thu May 28 01= :24:11 EEST 2009 =A0 =A0 mgp@mydomain.org:/usr/obj/usr/src/sys/Ss-STABLE = =A0amd64 > > and also ports updated from 28th of May > > regards, > mgp > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org= " > The following patch fixes this issue for me. --- semevent-r0drv-freebsd.c.old 2009-06-05 12:48:55.841136475 +0200 +++ semevent-r0drv-freebsd.c 2009-06-05 12:15:08.610705499 +0200 @@ -181,7 +181,7 @@ rc =3D tsleep(pEventInt, /* block id */ fInterruptible ? PZERO | PCATCH : PZERO, "iprtev", - tvtohz(&tv)); + cMillies =3D=3D RT_INDEFINITE_WAIT ? 0 : tvtohz(&tv)); mtx_lock_spin(&pEventInt->Mtx); Regards, Jacques