Re: FreeBSD Alpha5 amd64 - Citrix Xen 6.2 problem

2013-10-14 Thread Outback Dingo
On Mon, Oct 14, 2013 at 11:17 AM, Mark Felder  wrote:

> On Mon, Oct 14, 2013, at 9:29, Roger Pau Monné wrote:
> > On 14/10/13 15:57, Mark Felder wrote:
> > > Patching 9-STABLE with this applies cleanly, but I'm guessing the work
> > > done with the restructuring so it fits in GENERIC is not permitting it
> > > to build.
> > >
> > >
> > > /usr/src/sys/dev/xen/blkfront/blkfront.c: In function 'blkfront_probe':
> > > /usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: implicit
> > > declaration of function 'xen_hvm_domain'
> > > /usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: nested extern
> > > declaration of 'xen_hvm_domain' [-Wnested-externs]
> > > *** [blkfront.o] Error code 1
> > >
> > > Stop in /usr/obj/usr/src/sys/XENHVM.
> > > *** [buildkernel] Error code 1
> > >
> > > Stop in /usr/src.
> > > *** [buildkernel] Error code 1
> > >
> > > Stop in /usr/src.
> >
> > Yes, the xen_hvm_domain function is not available in 9-STABLE, you
> > should be able to replace the 'if' gate with a '#ifdef XENHVM .. #endif'
> > (not pretty, but should do it's job).
> >
>
> I have just tested that patched on FreeBSD 9.1-p7 and it works
> perfectly. I am able to boot the OS with no issues and mounting CDROMs
> works fine as well. One thing to note is that it does change the disk
> from /dev/adX to /dev/adaX which is something that was happening between
> FreeBSD 9 and FreeBSD 10 anyway. Anyone who applies this patch should
> update their fstab before rebooting.
>
> https://feld.me/freebsd/freebsd9-xen-cdrom-fix.patch
>
> Thanks again Roger and Justin -- you've just made a huge impact in
> FreeBSD usability on XenServer.
>

Congrats, finally we have some parity with XEN and Cloud for FreeBSD


> ___
> freebsd-xen@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-xen
> To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"
>
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Re: FreeBSD Alpha5 amd64 - Citrix Xen 6.2 problem

2013-10-14 Thread Mark Felder
On Mon, Oct 14, 2013, at 9:29, Roger Pau Monné wrote:
> On 14/10/13 15:57, Mark Felder wrote:
> > Patching 9-STABLE with this applies cleanly, but I'm guessing the work
> > done with the restructuring so it fits in GENERIC is not permitting it
> > to build.
> > 
> > 
> > /usr/src/sys/dev/xen/blkfront/blkfront.c: In function 'blkfront_probe':
> > /usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: implicit
> > declaration of function 'xen_hvm_domain'
> > /usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: nested extern
> > declaration of 'xen_hvm_domain' [-Wnested-externs]
> > *** [blkfront.o] Error code 1
> > 
> > Stop in /usr/obj/usr/src/sys/XENHVM.
> > *** [buildkernel] Error code 1
> > 
> > Stop in /usr/src.
> > *** [buildkernel] Error code 1
> > 
> > Stop in /usr/src.
> 
> Yes, the xen_hvm_domain function is not available in 9-STABLE, you
> should be able to replace the 'if' gate with a '#ifdef XENHVM .. #endif'
> (not pretty, but should do it's job).
> 

I have just tested that patched on FreeBSD 9.1-p7 and it works
perfectly. I am able to boot the OS with no issues and mounting CDROMs
works fine as well. One thing to note is that it does change the disk
from /dev/adX to /dev/adaX which is something that was happening between
FreeBSD 9 and FreeBSD 10 anyway. Anyone who applies this patch should
update their fstab before rebooting.

https://feld.me/freebsd/freebsd9-xen-cdrom-fix.patch

Thanks again Roger and Justin -- you've just made a huge impact in
FreeBSD usability on XenServer.
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Re: FreeBSD Alpha5 amd64 - Citrix Xen 6.2 problem

2013-10-14 Thread Roger Pau Monné
On 14/10/13 15:57, Mark Felder wrote:
> Patching 9-STABLE with this applies cleanly, but I'm guessing the work
> done with the restructuring so it fits in GENERIC is not permitting it
> to build.
> 
> 
> /usr/src/sys/dev/xen/blkfront/blkfront.c: In function 'blkfront_probe':
> /usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: implicit
> declaration of function 'xen_hvm_domain'
> /usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: nested extern
> declaration of 'xen_hvm_domain' [-Wnested-externs]
> *** [blkfront.o] Error code 1
> 
> Stop in /usr/obj/usr/src/sys/XENHVM.
> *** [buildkernel] Error code 1
> 
> Stop in /usr/src.
> *** [buildkernel] Error code 1
> 
> Stop in /usr/src.

Yes, the xen_hvm_domain function is not available in 9-STABLE, you
should be able to replace the 'if' gate with a '#ifdef XENHVM .. #endif'
(not pretty, but should do it's job).

Roger.

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Re: FreeBSD Alpha5 amd64 - Citrix Xen 6.2 problem

2013-10-14 Thread Mark Felder
Patching 9-STABLE with this applies cleanly, but I'm guessing the work
done with the restructuring so it fits in GENERIC is not permitting it
to build.


/usr/src/sys/dev/xen/blkfront/blkfront.c: In function 'blkfront_probe':
/usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: implicit
declaration of function 'xen_hvm_domain'
/usr/src/sys/dev/xen/blkfront/blkfront.c:405: warning: nested extern
declaration of 'xen_hvm_domain' [-Wnested-externs]
*** [blkfront.o] Error code 1

Stop in /usr/obj/usr/src/sys/XENHVM.
*** [buildkernel] Error code 1

Stop in /usr/src.
*** [buildkernel] Error code 1

Stop in /usr/src.
___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"


Current problem reports assigned to freebsd-xen@FreeBSD.org

2013-10-14 Thread FreeBSD bugmaster
Note: to view an individual PR, use:
  http://www.freebsd.org/cgi/query-pr.cgi?pr=(number).

The following is a listing of current problems submitted by FreeBSD users.
These represent problem reports covering all versions including
experimental development code and obsolete releases.


S Tracker  Resp.  Description

o kern/180788  xen[xen] [panic] XEN PV kernel 9.2-BETA1 panics on boot
o kern/180403  xen[xen] Problems with GENERIC and XENHVM kernels with Xe
o kern/180402  xen[xen] XEN kernel does not load in XenClient 4.5.5
o kern/179814  xen[xen] mountroot fails with error=19 under Xen on 9-STA
o kern/176471  xen[xen] xn driver crash on detach
o kern/176053  xen[xen] [patch] i386: Correct wrong usage of vsnprintf()
o kern/175954  xen[xen] XENHVM xn network driver extreme packet loss dur
o kern/175822  xen[xen] FreeBSD 9.1 does not work with Xen 4.0
o kern/175757  xen[xen] [patch] xen pvhvm looses keyboard input from VNC
o kern/171873  xen[xen] xn network device floods warning in dmesg
o kern/171118  xen[xen] FreeBSD XENHVM guest doesn't shutdown cleanly
o kern/166174  xen[xen] Problems ROOT MOUNT ERROR 
o kern/165418  xen[xen] Problems mounting root filesystem from XENHVM
o kern/164630  xen[xen] XEN HVM kernel: run_interrupt_driven_hooks: stil
o kern/164450  xen[xen] Failed to install FreeeBSD 9.0-RELEASE from CD i
o kern/162677  xen[xen] FreeBSD not compatible with "Current Stable Xen"
o kern/161318  xen[xen] sysinstall crashes with floating point exception
o kern/155468  xen[xen] Xen PV i386 multi-kernel CPU system is not worki
o kern/155353  xen[xen] [patch] put "nudging TOD" message under boot_ver
o kern/154833  xen[xen]: xen 4.0 - DomU freebsd8.2RC3 i386, XEN kernel. 
o kern/154473  xen[xen] xen 4.0 - DomU freebsd8.1 i386, XEN kernel. Not 
o kern/154472  xen[xen] xen 4.0 - DomU freebsd8.1 i386 xen kernel reboot
o kern/154428  xen[xen] xn0 network interface and PF - Massive performan
o kern/153674  xen[xen] i386/XEN idle thread shows wrong percentages
o kern/153672  xen[xen] [panic] i386/XEN panics under heavy fork load
o kern/153620  xen[xen] Xen guest system clock drifts in AWS EC2 (FreeBS
o kern/153477  xen[xen] XEN pmap code abuses vm page queue lock
o kern/153150  xen[xen] xen/ec2: disable checksum offloading on interfac
o kern/152228  xen[xen] [panic] Xen/PV panic with machdep.idle_mwait=1
o kern/144629  xen[xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor
o kern/143398  xen[xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor
o kern/143340  xen[xen] FreeBSD 8-RELEASE XEN pvm networking doesn't wor
f kern/143069  xen[xen] [panic] Xen Kernel Panic - Memory modified after
f kern/135667  xenufs filesystem corruption on XEN DomU system
f kern/135421  xen[xen] FreeBSD Xen PVM DomU network failure - netfronc.
f kern/135178  xen[xen] Xen domU outgoing data transfer stall when TSO i
p kern/135069  xen[xen] FreeBSD-current/Xen SMP doesn't function at all 
f i386/124516  xen[xen] FreeBSD-CURRENT Xen Kernel Segfaults when config
o kern/118734  xen[xen] FreeBSD 6.3-RC1 and FreeBSD 7.0-BETA 4 fail to b

39 problems total.

___
freebsd-xen@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-xen
To unsubscribe, send any mail to "freebsd-xen-unsubscr...@freebsd.org"