* compile error on kernel 2.4.29-xenU
@ 2005-04-11 11:13 Marco Genise
2005-04-11 12:20 ` Mark Williamson
0 siblings, 1 reply; 5+ messages in thread
From: Marco Genise @ 2005-04-11 11:13 UTC (permalink / raw)
To: xen-devel
Hi,
when I try to compile a custom kernel 2.4.29 with option "Device driver
domain" enabled, I get following error during "make ARCH=xen":
arch/xen/drivers/blkif/drv.o(.text+0x35e0): In function `blkif_connect':
: undefined reference to `direct_remap_area_pages'
arch/xen/drivers/netif/drv.o(.text+0x1a95): In function `netif_connect':
: undefined reference to `direct_remap_area_pages'
arch/xen/drivers/netif/drv.o(.text+0x1ad4): In function `netif_connect':
: undefined reference to `direct_remap_area_pages'
When I disable the option compiling finishes without any problem.
My domain0 kernel is version 2.6.11, other domains run with 2.6.11-xenU
without any privileged access. Current Xen version used is
xen-2.0-testing. Same error occured with xen-2.0.5-stable. Didn't test
with xen-unstable right now.
Anyone got a hint what the problem might be?
Thanks in advance,
Marco.
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: compile error on kernel 2.4.29-xenU
@ 2005-04-11 11:17 Ian Pratt
2005-04-11 12:19 ` Marco Genise
0 siblings, 1 reply; 5+ messages in thread
From: Ian Pratt @ 2005-04-11 11:17 UTC (permalink / raw)
To: marco, xen-devel
> when I try to compile a custom kernel 2.4.29 with option
> "Device driver domain" enabled, I get following error during
> "make ARCH=xen":
>
> arch/xen/drivers/blkif/drv.o(.text+0x35e0): In function
> `blkif_connect':
> : undefined reference to `direct_remap_area_pages'
> arch/xen/drivers/netif/drv.o(.text+0x1a95): In function
> `netif_connect':
> : undefined reference to `direct_remap_area_pages'
> arch/xen/drivers/netif/drv.o(.text+0x1ad4): In function
> `netif_connect':
> : undefined reference to `direct_remap_area_pages'
>
> When I disable the option compiling finishes without any problem.
Compare your config for 2.4.29 against that of the 2.4.29 xen0 config.
It is able to build and host native drivers just fine.
It's likely the config dependencies need tweaking to prevent you
slecting an illegal combination of some sort.
Best,
Ian
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: compile error on kernel 2.4.29-xenU
2005-04-11 11:17 compile error on kernel 2.4.29-xenU Ian Pratt
@ 2005-04-11 12:19 ` Marco Genise
0 siblings, 0 replies; 5+ messages in thread
From: Marco Genise @ 2005-04-11 12:19 UTC (permalink / raw)
To: Xen-devel
Ian Pratt schrieb:
>>when I try to compile a custom kernel 2.4.29 with option
>>"Device driver domain" enabled, I get following error during
>>"make ARCH=xen":
>>
>>arch/xen/drivers/blkif/drv.o(.text+0x35e0): In function
>>`blkif_connect':
>>: undefined reference to `direct_remap_area_pages'
>>arch/xen/drivers/netif/drv.o(.text+0x1a95): In function
>>`netif_connect':
>>: undefined reference to `direct_remap_area_pages'
>>arch/xen/drivers/netif/drv.o(.text+0x1ad4): In function
>>`netif_connect':
>>: undefined reference to `direct_remap_area_pages'
>>
>>When I disable the option compiling finishes without any problem.
>
>
> Compare your config for 2.4.29 against that of the 2.4.29 xen0 config.
> It is able to build and host native drivers just fine.
>
> It's likely the config dependencies need tweaking to prevent you
> slecting an illegal combination of some sort.
>
> Best,
> Ian
Ok, that was the problem. Seems I had some illegal combinations in my
config. Now it works, thank you.
Marco.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: compile error on kernel 2.4.29-xenU
2005-04-11 11:13 Marco Genise
@ 2005-04-11 12:20 ` Mark Williamson
0 siblings, 0 replies; 5+ messages in thread
From: Mark Williamson @ 2005-04-11 12:20 UTC (permalink / raw)
To: xen-devel, marco
This will happen if you don't enable the privileged domain option as well as
physical device access.
Cheers,
Mark
On Monday 11 April 2005 12:13, Marco Genise wrote:
> Hi,
>
> when I try to compile a custom kernel 2.4.29 with option "Device driver
> domain" enabled, I get following error during "make ARCH=xen":
>
> arch/xen/drivers/blkif/drv.o(.text+0x35e0): In function `blkif_connect':
> : undefined reference to `direct_remap_area_pages'
>
> arch/xen/drivers/netif/drv.o(.text+0x1a95): In function `netif_connect':
> : undefined reference to `direct_remap_area_pages'
>
> arch/xen/drivers/netif/drv.o(.text+0x1ad4): In function `netif_connect':
> : undefined reference to `direct_remap_area_pages'
>
> When I disable the option compiling finishes without any problem.
>
> My domain0 kernel is version 2.6.11, other domains run with 2.6.11-xenU
> without any privileged access. Current Xen version used is
> xen-2.0-testing. Same error occured with xen-2.0.5-stable. Didn't test
> with xen-unstable right now.
>
> Anyone got a hint what the problem might be?
>
> Thanks in advance,
>
> Marco.
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: compile error on kernel 2.4.29-xenU
@ 2005-04-11 12:50 Ian Pratt
0 siblings, 0 replies; 5+ messages in thread
From: Ian Pratt @ 2005-04-11 12:50 UTC (permalink / raw)
To: Mark Williamson, xen-devel, marco
> This will happen if you don't enable the privileged domain
> option as well as physical device access.
It would be good to add this as a dependency. Patches welcome :-)
Thanks,
Ian
> On Monday 11 April 2005 12:13, Marco Genise wrote:
> > Hi,
> >
> > when I try to compile a custom kernel 2.4.29 with option "Device
> > driver domain" enabled, I get following error during "make
> ARCH=xen":
> >
> > arch/xen/drivers/blkif/drv.o(.text+0x35e0): In function
> `blkif_connect':
> > : undefined reference to `direct_remap_area_pages'
> >
> > arch/xen/drivers/netif/drv.o(.text+0x1a95): In function
> `netif_connect':
> > : undefined reference to `direct_remap_area_pages'
> >
> > arch/xen/drivers/netif/drv.o(.text+0x1ad4): In function
> `netif_connect':
> > : undefined reference to `direct_remap_area_pages'
> >
> > When I disable the option compiling finishes without any problem.
> >
> > My domain0 kernel is version 2.6.11, other domains run with
> > 2.6.11-xenU without any privileged access. Current Xen
> version used is
> > xen-2.0-testing. Same error occured with xen-2.0.5-stable.
> Didn't test
> > with xen-unstable right now.
> >
> > Anyone got a hint what the problem might be?
> >
> > Thanks in advance,
> >
> > Marco.
> >
> >
> > _______________________________________________
> > Xen-devel mailing list
> > Xen-devel@lists.xensource.com
> > http://lists.xensource.com/xen-devel
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-04-11 12:50 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-11 11:17 compile error on kernel 2.4.29-xenU Ian Pratt
2005-04-11 12:19 ` Marco Genise
-- strict thread matches above, loose matches on Subject: below --
2005-04-11 12:50 Ian Pratt
2005-04-11 11:13 Marco Genise
2005-04-11 12:20 ` Mark Williamson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.