Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-05 Thread Avi Kivity
Carlo Marcelo Arenas Belon wrote: #ifdef is okay for this. Actually we can probably remove abi 10 support since the F7 kernel now supports the modern ABI (I don't think anybody else uses abi 10, which is pre 2.6.22 when we announced ABI compatibility. ubuntu feisty uses kernel

Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-04 Thread Avi Kivity
Zhang, Xiantao wrote: Jeremy Katz wrote: On Sat, 2007-12-01 at 12:10 +0200, Avi Kivity wrote: Zhang, Xiantao wrote: I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can see

Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-04 Thread Carlo Marcelo Arenas Belon
On Sat, Dec 01, 2007 at 12:10:16PM +0200, Avi Kivity wrote: Zhang, Xiantao wrote: Hi, Avi I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can see that many abi-specific code in it. How to

Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-04 Thread Zhang, Xiantao
Avi Kivity wrote: Zhang, Xiantao wrote: Jeremy Katz wrote: On Sat, 2007-12-01 at 12:10 +0200, Avi Kivity wrote: Zhang, Xiantao wrote: I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can

Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-03 Thread Zhang, Xiantao
Jeremy Katz wrote: On Sat, 2007-12-01 at 12:10 +0200, Avi Kivity wrote: Zhang, Xiantao wrote: I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can see that many abi-specific code in it. How

Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-03 Thread Jeremy Katz
On Sat, 2007-12-01 at 12:10 +0200, Avi Kivity wrote: Zhang, Xiantao wrote: I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can see that many abi-specific code in it. How to handle it ?

Re: [kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-12-01 Thread Avi Kivity
Zhang, Xiantao wrote: Hi, Avi I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can see that many abi-specific code in it. How to handle it ? Can we use __x86__ macro to make it sightless

[kvm-devel] How to handle kvm-abi-10 case for other archs.

2007-11-30 Thread Zhang, Xiantao
Hi, Avi I think new archs for kvm doesn't need to care about kvm-abi case in their code, since current abi is bigger than 10. But in current libkvm.c, we can see that many abi-specific code in it. How to handle it ? Can we use __x86__ macro to make it sightless for other archs or other