xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* Xen Hypervisor start fail when system memory more than 64GB
@ 2010-08-12  6:39 benian
  0 siblings, 0 replies; 4+ messages in thread
From: benian @ 2010-08-12  6:39 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 571 bytes --]

Hi everyone,



My environment is xen-4.0.0 + pvops2.6.32 kernel + fedora12

I can run xen hypervisor smoothly when system memory below 64G

But if I plug 4GB more memory to my server, XEN hypervisor start fail then
crash and restart automatically.

The final screen is some message about memory address which will not be
displayed in normal process



I read from XEN 4.0.0 features that Xen support 1 TB of RAM per host, so I
am not sure what ‘s wrong with this situation.



Any idea is appreciated and welcome



Thanks very much



Ben

[-- Attachment #1.2: Type: text/html, Size: 2656 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Xen Hypervisor start fail when system memory more than 64GB
@ 2010-08-12  7:08 benian
  2010-08-12 11:36 ` Pasi Kärkkäinen
  0 siblings, 1 reply; 4+ messages in thread
From: benian @ 2010-08-12  7:08 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 551 bytes --]

My environment is xen-4.0.0 + pvops2.6.32 kernel + fedora12

I can run xen hypervisor smoothly when system memory below 64G

But if I plug 4GB more memory to my server, XEN hypervisor start fail then
crash and restart automatically.

The final screen is some message about memory address which will not be
displayed in normal process



I read from XEN 4.0.0 features that Xen support 1 TB of RAM per host, so I
am not sure what ‘s wrong with this situation.



Any idea is appreciated and welcome



Thanks very much



Ben

[-- Attachment #1.2: Type: text/html, Size: 2819 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Xen Hypervisor start fail when system memory more than 64GB
  2010-08-12  7:08 benian
@ 2010-08-12 11:36 ` Pasi Kärkkäinen
  2010-08-16  9:46   ` benian
  0 siblings, 1 reply; 4+ messages in thread
From: Pasi Kärkkäinen @ 2010-08-12 11:36 UTC (permalink / raw)
  To: benian; +Cc: xen-devel

On Thu, Aug 12, 2010 at 03:08:25PM +0800, benian wrote:
> 
> 
>    My environment is xen-4.0.0 + pvops2.6.32 kernel + fedora12
> 
>    I can run xen hypervisor smoothly when system memory below 64G
> 
>    But if I plug 4GB more memory to my server, XEN hypervisor start fail then
>    crash and restart automatically.
> 
>    The final screen is some message about memory address which will not be
>    displayed in normal process
> 
> 
> 
>    I read from XEN 4.0.0 features that Xen support 1 TB of RAM per host, so I
>    am not sure what *s wrong with this situation.
> 
> 
> 
>    Any idea is appreciated and welcome
> 
> 

How much memory does your dom0 have? ie. what's your dom0_mem= option for xen.gz in grub.conf.
Have you tried different values? ie. 2GB, 4GB, 8GB? 

Also setup a serial console so you can figure out if it's the Xen hypervisor or dom0 kernel crashing:
http://wiki.xensource.com/xenwiki/XenSerialConsole

and more info about troubleshooting pvops dom0 kernels (also an example about serial console with pvops dom0):
http://wiki.xensource.com/xenwiki/XenParavirtOps

Those should help.

-- Pasi

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Xen Hypervisor start fail when system memory more than 64GB
  2010-08-12 11:36 ` Pasi Kärkkäinen
@ 2010-08-16  9:46   ` benian
  0 siblings, 0 replies; 4+ messages in thread
From: benian @ 2010-08-16  9:46 UTC (permalink / raw)
  To: Pasi Kärkkäinen; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 2061 bytes --]

Hi Pasi
I finally boot up successfully by simply modified  the kernel config
 item CONFIG_XEN_MAX_DOMAIN_MEMORY=32 to CONFIG_XEN_MAX_DOMAIN_MEMORY=128
(just choose a random value >72 ),

then rebuild the kernel-2.6.32 , and everything is ok.

By the way, i 've done many test and i finally found that

if unallocated memory(total - dom0 ) >32GB, boot up would be failed in my
environment.

for example, after I modified the kernel config, hypervisor boot normally
and dom0 get 72GB.

If i add dom0_mem= 32G(unallocated 40G) to grub option, hypervisor boot fail
again,
and if dom0_mem= 41G(unallocated 31G), hypervisor boot normally again.

So , might it be a problem of xen-4.0 that unable to handle unallocated
memory >32GB?


Regards,
Ben








2010/8/12 Pasi Kärkkäinen <pasik@iki.fi>

> On Thu, Aug 12, 2010 at 03:08:25PM +0800, benian wrote:
> >
> >
> >    My environment is xen-4.0.0 + pvops2.6.32 kernel + fedora12
> >
> >    I can run xen hypervisor smoothly when system memory below 64G
> >
> >    But if I plug 4GB more memory to my server, XEN hypervisor start fail
> then
> >    crash and restart automatically.
> >
> >    The final screen is some message about memory address which will not
> be
> >    displayed in normal process
> >
> >
> >
> >    I read from XEN 4.0.0 features that Xen support 1 TB of RAM per host,
> so I
> >    am not sure what *s wrong with this situation.
> >
> >
> >
> >    Any idea is appreciated and welcome
> >
> >
>
> How much memory does your dom0 have? ie. what's your dom0_mem= option for
> xen.gz in grub.conf.
> Have you tried different values? ie. 2GB, 4GB, 8GB?
>
> Also setup a serial console so you can figure out if it's the Xen
> hypervisor or dom0 kernel crashing:
> http://wiki.xensource.com/xenwiki/XenSerialConsole
>
> and more info about troubleshooting pvops dom0 kernels (also an example
> about serial console with pvops dom0):
> http://wiki.xensource.com/xenwiki/XenParavirtOps
>
> Those should help.
>
> -- Pasi
>
>

[-- Attachment #1.2: Type: text/html, Size: 2960 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-08-16  9:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-12  6:39 Xen Hypervisor start fail when system memory more than 64GB benian
  -- strict thread matches above, loose matches on Subject: below --
2010-08-12  7:08 benian
2010-08-12 11:36 ` Pasi Kärkkäinen
2010-08-16  9:46   ` benian

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).