From mboxrd@z Thu Jan 1 00:00:00 1970 From: George Shuklin Subject: start_info content for linux Date: Wed, 26 Sep 2012 12:32:40 +0400 Message-ID: <5062BDA8.5@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel List-Id: xen-devel@lists.xenproject.org Good day. I've digging in some strange memory/balloon related bug and I've really like to see start_info content on linux. I saw in source code #ifdef CONFIG_X86_32 mov %esi,xen_start_info mov $init_thread_union+THREAD_SIZE,%esp #else mov %rsi,xen_start_info mov $init_thread_union+THREAD_SIZE,%rsp #endif jmp xen_start_kernel Pointer to start_info stored in linux global variable xen_start_info, but I can't find way to access it. Is any way to get it from linux kernel? (well, except writing your own module). Thanks.