Re: [libvirt] [PATCH 1/2] Introduce GIC feature

2015-04-30 Thread Michal Privoznik
On 29.04.2015 13:31, John Ferlan wrote: On 04/27/2015 09:07 AM, Michal Privoznik wrote: Some platforms, like aarch64, don't have APIC but GIC. So there's no reason to have apic/ feature turned on. However, we are s/have/have the/ s/turned on/enabled/ still missing gic/ feature. This

Re: [libvirt] [PATCH 1/2] Introduce GIC feature

2015-04-30 Thread John Ferlan
On 04/30/2015 07:53 AM, Michal Privoznik wrote: ... +} +def-features[val] = VIR_TRISTATE_SWITCH_ON; +ctxt-node = node; +break; + /* coverity[dead_error_begin] */ case VIR_DOMAIN_FEATURE_LAST: break; @@

Re: [libvirt] [PATCH 1/2] Introduce GIC feature

2015-04-29 Thread John Ferlan
On 04/27/2015 09:07 AM, Michal Privoznik wrote: Some platforms, like aarch64, don't have APIC but GIC. So there's no reason to have apic/ feature turned on. However, we are s/have/have the/ s/turned on/enabled/ still missing gic/ feature. This commit introduces the feature to XML parser

[libvirt] [PATCH 1/2] Introduce GIC feature

2015-04-27 Thread Michal Privoznik
Some platforms, like aarch64, don't have APIC but GIC. So there's no reason to have apic/ feature turned on. However, we are still missing gic/ feature. This commit introduces the feature to XML parser and formatter, adds documentation and updates RNG schema. Signed-off-by: Michal Privoznik