From owner-freebsd-emulation@freebsd.org Wed Mar 2 01:29:16 2016 Return-Path: Delivered-To: freebsd-emulation@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10725AC021F; Wed, 2 Mar 2016 01:29:16 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E4B90196C; Wed, 2 Mar 2016 01:29:15 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 026FFB96B; Tue, 1 Mar 2016 20:29:15 -0500 (EST) From: John Baldwin To: freebsd-current@freebsd.org Cc: Ivan Klymenko , Michael Butler , "freebsd-emulation@freebsd.org" Subject: Re: SVN r296272 breaks virtualbox Date: Tue, 01 Mar 2016 17:27:35 -0800 Message-ID: <76770847.2GZvgBdTxv@ralph.baldwin.cx> User-Agent: KMail/4.14.3 (FreeBSD/10.2-STABLE; KDE/4.14.3; amd64; ; ) In-Reply-To: <20160302004206.5bc6e0b3@nonamehost.local> References: <56D617D1.5040209@protected-networks.net> <20160302004206.5bc6e0b3@nonamehost.local> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 01 Mar 2016 20:29:15 -0500 (EST) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Mar 2016 01:29:16 -0000 On Wednesday, March 02, 2016 12:42:05 AM Ivan Klymenko wrote: > On Tue, 1 Mar 2016 17:29:37 -0500 > Michael Butler wrote: > > > The removal of "taskqueue_enqueue_fast" breaks the virtualbox kmods: > > > > Mar 1 16:54:36 toshi kernel: vboxdrv: fAsync=0 offMin=0x914 > > offMax=0x151c Mar 1 16:54:36 toshi kernel: link_elf_obj: symbol > > taskqueue_enqueue_fast undefined > > Mar 1 16:54:36 toshi kernel: linker_load_file: Unsupported file type > > Mar 1 16:54:36 toshi kernel: link_elf_obj: symbol > > taskqueue_enqueue_fast undefined > > Mar 1 16:54:36 toshi kernel: linker_load_file: Unsupported file type > > Mar 1 16:54:36 toshi kernel: KLD vboxnetadp.ko: depends on > > vboxnetflt - not available or version mismatch > > Mar 1 16:54:36 toshi kernel: linker_load_file: Unsupported file type > > > > Michael > > > > > +1 Then the port needs to be patched? It's been using an API deprecated for the last 15 years. A simple s/taskqueue_enqueue_fast/taskqueue_enqueue/ will fix it. -- John Baldwin