Displaying 20 results from an estimated 200 matches similar to: "[PATCH] tools top level makefile cleanup"
2005 May 16
6
x86_64 build broken?
I am not able to build the latest x86_64 xen-unstable on SLES9 SP1
x86_64. Here is the build output. Am I doing anything wrong here?
Aravindh
gcc -DPIC -m64 -Wall -Werror -O3 -fno-strict-aliasing -I
../../tools/libxutil -I. -Wp,-MD,.xc_ptrace.opic.d -fPIC -c -o
xc_ptrace.opic xc_ptrace.c
In file included from /usr/include/asm/sigcontext.h:4,
from
2005 Oct 27
2
[PATCH] Enable xenstat to use xenstore & fix bugzilla #311
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
--
Jerone Young
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2005 May 12
1
Xen debugging question (x86-64)
Hey guys,
I have the x86-64 domU building code for libxc just about ready. It
totally gets through the library and creates the domain. But once it
does it reboots the machine (and no output to show what happened via the
serial console). What techniques would you guys use find out (excluding
excessive printks ....I''m doing that right now) what is going on in xen
and tracing back to the
2005 Feb 14
5
hdX: lost interrupt?
I successfully installed Xen 2.0.4 from source on a Slackware 10 system. I installed grub, got that working and all. But when I boot the dom0 kernel, I get:
cmd 0x5a timed out
hdc: lost interrupt
My hdc is my dvd burner... when I applied a kernel option of "hdc=ide-scsi" it seemed to have skipped over it but recieved the same error on hdd ... I''ve tried recompiling with
2005 Aug 11
7
code question?
Doing some janitorial (you cleaning the flooded toilets and such) work
today. I have come across this line of code that really I''m not sure
what the intent was..in xen/include/sched.h
#define hypercall_preempt_check() (unlikely( \
softirq_pending(smp_processor_id()) | \
(!!current->vcpu_info->evtchn_upcall_pending & \
2005 May 28
2
[PATCH] Makefile uninstall not to remove libxutil
libxutil is not build and installed by default, so "Makefile
uninstall" will not try to remove it. This patch is against -unstable,
ChangeSet@1.1575
Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com>
===== Makefile 1.94 vs edited =====
--- 1.94/Makefile 2005-05-25 03:54:03 +09:00
+++ edited/Makefile 2005-05-28 02:09:46 +09:00
@@ -160,7 +160,7 @@
uninstall:
[ -d
2005 Aug 16
20
domU can''t start, Non-priv warnings
Can''t seem to fully boot a domU on either EM64T or Opteron with x86_64
xen-unstable. Both systems'' report this from xen:
(XEN) (file=traps.c, line=872) Non-priv domain attempted
WRMSR(00000000c0000100.
(XEN) (file=traps.c, line=872) Non-priv domain attempted
WRMSR(00000000c0000102.
(XEN) (file=traps.c, line=880) Non-priv domain attempted
RDMSR(00000000c0000080.
They boot
2005 Jun 09
1
[PATCH] more xenstore makefile fixes
This allows tools in the python directory to properly link to
libxenstore.a on x86-64.
--- tools/xenstore/Makefile.orig 2005-06-09 12:56:34.000000000
-0500
+++ tools/xenstore/Makefile 2005-06-09 13:48:06.000000000 -0500
@@ -20,6 +20,9 @@
BASECFLAGS+= -I.
CFLAGS+=$(BASECFLAGS)
+ifeq ($(XEN_TARGET_ARCH),x86_64)
+CFLAGS += -fPIC
+endif
LDFLAGS=$(PROFILE) -L$(XEN_LIBXC)
2004 Oct 28
3
xm save error
Hi,
I tried to issue: xm save VMID FILE, and got the following error:
Error: Error: [Failure instance: Traceback:
twisted.internet.error.ConnectionRefusedError, Connection was refused
by other side: 111: Connection refused.
xm create works fine, xend is running on domain 0, I can log in the VM
through xm console VMID and ssh without problems. I can also stop and
restart the domain.
2005 Jul 28
10
dma_alloc_coherent issue with tg3 in x86_64 build
During boot of dom0, I get the following. Box is remote, so I''m
now waiting for proxy power button pusher ;-) tg3 init fails doing
dma_alloc_coherent (I assume this is from tg3_init_one -> tg3_test_dma ->
pci_alloc_consistent -> dma_alloc_coherent). Looks like an issue with
the amount of memory in dom0. Is this known?
thanks,
-chris
root (hd0,0)
Filesystem type is ext2fs,
2005 Mar 30
0
[PATCH] libxc xc_ptrace gcc 4 fix
Variable guest_va is declared as a long* . It takes values that are cast
as unsigned long* . GCC 4 picks up on this. This patch changes the
declaration of guest va to be an unsigned long* and fixes the problem.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
--
Jerone Young
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
2005 Jun 24
0
vmx_io signness gcc4 fix
Fixes sign issue with gcc4.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
--- xen/arch/x86/vmx_io.c.old 2005-06-24 14:40:00.000000000 -0500
+++ xen/arch/x86/vmx_io.c 2005-06-24 14:41:54.000000000 -0500
@@ -181,7 +181,7 @@ static void load_cpu_user_regs(struct cp
__vmwrite(GUEST_RIP, regs->rip);
}
-static inline void __set_reg_value(long *reg, int size, long value)
2005 Mar 02
0
[PATCH] libxc fix: fast trap id is only for x86 patch
x86 ( 32bit) is the only architecture that uses Fast trap vector offset
( fast_trap_idx ). This makes sure that x86 is the only architecture to
use this variable.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
Jerone Young
Open Virtualization
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
2005 Jan 27
2
booting erro on FC3
I''m a newbie. :)
I followed the steps written by Jerone Young:
http://sourceforge.net/mailarchive/message.php?msg_id=10562241
but i found an error at the 17th step:
17. mkinitrd /boot/initrd-2.6.10-xen0.img 2.6.10-xen0
it said:"No module ata_piix found for kernel 2.6.10-xen0, aborting."
so I commented the line of "module /boot/initrd-2.6.10-xen0.img" in the
2005 May 22
4
Problem upgrading xen-unstable
I''ve been working on a xen-unstable tree from mid-April. I wanted to upgrade
to the latest version, so here is what I did:
- Clone a fresh copy of xeno-unstable.bk (1.1507)
- "make world"
- Change the .config of linux-2.6.11-xen0 to include my ethernet card
(CONFIG_FORCEDETH=y)
- Add localversion files to linux-2.6.11-xen0 and linux-2.6.11-xenU
- rm -rf the existing dist
2007 Apr 04
0
[PATCH] Remove uses of "packed" attribute from acm.h so PPC Xen will build
The use of "packed" attribute is bad for PPC. PPC Xen build checks for
this and will not build if this is in the code.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2006 Aug 05
5
Is the VNC setting available for non-hvm DomU''s?
I have been scouring this list''s archives and have consumed any and all
how-to guides I could find but am still unsure. All discussion in this
list on this issue is around hvm/vti DomU''s. Has anyone been able to
attach a vnc client to a vanilla (non-hvm) DomU using the VNC console
setting?
On an FC5 (2.6.16-1.2080_FC5xen0) kernel deployed on vanilla (non-hvm)
hardware,
2006 Oct 17
0
[PATCH] Fixes for linking on Solaris
# HG changeset patch
# User john.levon@sun.com
# Date 1161090130 25200
# Node ID afeef751f9dafa771726bcfb00b29a10b0baeabd
# Parent 7147e57f18552bbb8d25155cc1c635315283ee31
On Solaris, GCC is configured to use Sun''s LD. Fix the build to use the correct
flags, and link against libsocket where necessary.
Signed-off-by: John Levon <john.levon@sun.com>
diff --git a/config/Linux.mk
2005 Dec 15
3
VIA sata + Xen 3.0 boot lockup problems
Hello!
I`m trying to boot a via sata machine with xen 3.0
with no sucess. It just freezes at this point:
*********
ACPI: PCI Interrupt 0000:00:0f.0[B] -> Link [LNKB] ->
GSI 10 (level,low) -> IRQ 10
sata_via (0000:00:0f.0): routed to hard irq line 10
ata1: SATA max UDMA/133 cmd 0xEFE0 ctl 0xEFAE bmdma
0xEF90 irq 10
ata2: SATA max UDMA/133 cmd 0xEFA0 ctl 0xEFAA bmdma
0xEF98 irq 10
ata1:
2005 Mar 23
9
[patch] final header fixes
I think this is the last of the header fixes I''ve run across. Though it''s
sometimes difficult to tell, I believe Xen/ia64 has asm/mm.h, flushtlb.h,
page.h, and shadow.h. Please apply.
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
--
Hollis Blanchard
IBM Linux Technology Center