Re: [XenPPC] [PATCH] fix allocation bug in xen console

2006-09-08 Thread Orran Y Krieger
Note, the bug is both in xen/arch/powerpc/of_handler/xencomm.c  and in the xencomm.c in the linux drivers directory [EMAIL PROTECTED] wrote on 09/08/2006 10:57:45 AM: > On Fri, 2006-09-08 at 09:36 -0400, Maria Butrico wrote: > > summary:  fixes allocation error for xen console area > > > > deta

Re: [XenPPC] 128 meg domU???

2006-09-01 Thread Orran Y Krieger
Thanks for teh response. [EMAIL PROTECTED] wrote on 09/01/2006 03:07:03 PM: > > I got a series of hypervisor calls, but console output no longer > > worked.  My assumption was that start_info was moved, but as far as I > > can tell the memory location is hardcoded in the domain builder. > > It'

[XenPPC] 128 meg domU???

2006-08-31 Thread Orran Y Krieger
Been trying to increase the memory used for our library OS to 128Meg, In ppc970.c switched the rma size to 128 meg:   unsigned int cpu_default_rma_order_pages(void)  { -    return rma_orders[0].order - PAGE_SHIFT; +    return rma_orders[1].order - PAGE_SHIFT;  } Also, modified the configuraito

Re: [PATCH] Re: [XenPPC] current crash

2006-08-25 Thread Orran Y Krieger
worked, thanks!!! Jimi Xenidis <[EMAIL PROTECTED]> wrote on 08/25/2006 08:22:27 AM: > > > Orran || Maria, please test and ack the following patch. > BTW: Thanks to Jonathan Wildstrom for pointing the H_READ_4 error in > the rhype code. > > -- > diff -r d87d602408d5 xen/arch/powerpc/papr/xlate.c >

Re: [XenPPC] current crash

2006-08-25 Thread Orran Y Krieger
;msr & MSR_RI)); Jimi Xenidis <[EMAIL PROTECTED] .com> To Orran Y Krieger/

[XenPPC] current crash

2006-08-24 Thread Orran Y Krieger
Been doing a binary search to find at least one of the things causing a crash.   What I have now is that the following call from libOS reliably crashes xen. the call is:                 rc = hcall_read(ret, flags, idx + i); In the library OS , with parameters: flags - 0, idx = 0 ret = 240948 Tha

[XenPPC] problem with console

2006-08-24 Thread Orran Y Krieger
Yesterday (from a week old version of the tools/linx/xen) we could repeatedly:     start test domain     xenconsole to it     xm destroy it Today, after updating everything, we have to stop and then restart xend in order to get xenconsole to work in each iteration.  Any ideas?

[XenPPC] stupid learning questions

2006-08-16 Thread Orran Y Krieger
spent a while on a wrong track, basically because a #endif didn't say wha tit was an endif for. (in xen/smp.h).  I did a quick grep and half the endifs in .h files have a comment that says what #ifdef they correspond to, and the other half do not.  Do we have a style for this?_

[XenPPC] updates on making xen...

2006-08-14 Thread Orran Y Krieger
Building xen, cross compiled from an x86 box.  Couple of things led me astray on web page: At lest on my box, you needed CROSS_COMPILE=powerpc64-linux- CROSS_COMPILE32=powerpc-linux- So, CROSS32_COMPILE should be CROSS_COMPILE32 I think. Also, where you say: XEN_TARGET_ARCH=powerp64 it shoul