[XenPPC] Blade center SOL trick

2006-11-02 Thread Jimi Xenidis
Telnet/SOL timeouts driving you crazy? Web management parameters not working? Here is how to do it: $ telnet into the MM system> env -T system:mm[1] # or whatever you MM is called system:mm[1]> telnetcfg -t 0 system:mm[1]> env -T system and your telnet/CLI session will never timeout. -JX

[XenPPC][Patch 3/3] xen patches for xm save/restore

2006-11-02 Thread geyi
diff -r 9148f7816d00 xen/include/asm-powerpc/domain.h --- a/xen/include/asm-powerpc/domain.hTue Oct 24 19:11:00 2006 -0400 +++ b/xen/include/asm-powerpc/domain.hWed Nov 01 10:24:30 2006 -0500 @@ -48,10 +48,6 @@ struct arch_domain { uint large_page_order[4]; } __cacheline_aligned; -s

[XenPPC][Patch 2/3] xen patches for xm save/restore

2006-11-02 Thread geyi
diff -r 9148f7816d00 xen/arch/powerpc/domain.c --- a/xen/arch/powerpc/domain.cTue Oct 24 19:11:00 2006 -0400 +++ b/xen/arch/powerpc/domain.cWed Nov 01 10:15:32 2006 -0500 @@ -143,7 +143,32 @@ void free_vcpu_struct(struct vcpu *v) int arch_set_info_guest(struct vcpu *v, vcpu_guest_context

[XenPPC][Patch 1/3] xen patches for xm save/restore

2006-11-02 Thread geyi
diff -r 9148f7816d00 config/powerpc64.mk --- a/config/powerpc64.mkTue Oct 24 19:11:00 2006 -0400 +++ b/config/powerpc64.mkWed Nov 01 10:05:21 2006 -0500 @@ -3,3 +3,4 @@ CONFIG_POWERPC_$(XEN_OS) := y CFLAGS += -DELFSIZE=64 LIBDIR := lib +CONFIG_XCUTILS :=y diff -r 9148f7816d00 tools/libx

Re: [XenPPC][Patch 2/3] xen patches for xm save/restore

2006-11-02 Thread Hollis Blanchard
On Thu, 2006-11-02 at 11:49 -0500, geyi wrote: > +case XEN_DOMCTL_getshadowlist: > +{ > + struct domain *d = find_domain_by_id(domctl->domain); > + uint num_ptes; > + > + printk(" XEN_DOMCTL_getshadowlist: \n"); > + > + ret = -EINVAL; > + if ( d != NULL) > +

Re: [XenPPC][Patch 1/3] xen patches for xm save/restore

2006-11-02 Thread Hollis Blanchard
Hi Yi, a few general comments about submitting patches: 1. As I told you before, do not use Thunderbird. It corrupts the whitespace so your patches do not apply. 2. You should include a "patch 0" with a description of what this patchset accomplishes. The description shou

Re: [XenPPC][Patch 2/3] xen patches for xm save/restore

2006-11-02 Thread geyi
Hollis Blanchard wrote: On Thu, 2006-11-02 at 11:49 -0500, geyi wrote: +case XEN_DOMCTL_getshadowlist: +{ + struct domain *d = find_domain_by_id(domctl->domain); + uint num_ptes; + + printk(" XEN_DOMCTL_getshadowlist: \n"); + + ret = -EINVAL; + if ( d != NUL

Re: [XenPPC][Patch 1/3] xen patches for xm save/restore

2006-11-02 Thread geyi
Hi Hollis, Thanks for your comments. I rebuild the patches for xm save/restore and attach them below. I think that should work for you. The code has been tested for the basic function of guest domain save and restore. -- Yi Ge <[EMAIL PROTECTED]> # HG changeset patch # User [EMAIL PROTECTED]