From owner-freebsd-current@FreeBSD.ORG Tue Dec 24 15:51:20 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23A2EDFF; Tue, 24 Dec 2013 15:51:20 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED1A81AE7; Tue, 24 Dec 2013 15:51:19 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id E0953B995; Tue, 24 Dec 2013 10:51:18 -0500 (EST) From: John Baldwin To: Roger Pau Monne Subject: Re: [PATCH v7 19/19] isa: allow ISA bus to attach to the nexus Date: Tue, 24 Dec 2013 10:45:10 -0500 User-Agent: KMail/1.13.5 (FreeBSD/8.4-CBSD-20130906; KDE/4.5.5; amd64; ; ) References: <1387479296-33389-1-git-send-email-roger.pau@citrix.com> <1387479296-33389-20-git-send-email-roger.pau@citrix.com> In-Reply-To: <1387479296-33389-20-git-send-email-roger.pau@citrix.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201312241045.10382.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Tue, 24 Dec 2013 10:51:19 -0500 (EST) Cc: xen-devel@lists.xen.org, julien.grall@citrix.com, freebsd-xen@freebsd.org, freebsd-current@freebsd.org, kib@freebsd.org, gibbs@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.17 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: Tue, 24 Dec 2013 15:51:20 -0000 On Thursday, December 19, 2013 1:54:56 pm Roger Pau Monne wrote: > --- > sys/x86/isa/isa.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) If you go the xenpv route, you would replace 'nexus' with 'xenpv' here. > diff --git a/sys/x86/isa/isa.c b/sys/x86/isa/isa.c > index 1a57137..09d1ab7 100644 > --- a/sys/x86/isa/isa.c > +++ b/sys/x86/isa/isa.c > @@ -241,3 +241,6 @@ isa_release_resource(device_t bus, device_t child, int type, int rid, > * On this platform, isa can also attach to the legacy bus. > */ > DRIVER_MODULE(isa, legacy, isa_driver, isa_devclass, 0, 0); > +#ifdef XENHVM > +DRIVER_MODULE(isa, nexus, isa_driver, isa_devclass, 0, 0); > +#endif > -- > 1.7.7.5 (Apple Git-26) > > -- John Baldwin