Christophe Fergeau 626dd5180e Fix /domain/features setting in qemuParseCommandLine
Commit 5e6ce1 moved down detection of the ACPI feature in
qemuParseCommandLine. However, when ACPI is detected, it clears
all feature flags in def->features to only set ACPI. This used to
be fine because this was the first place were def->features was set,
but after the move this is no longer necessarily true because this
block comes before the ACPI check:

if (strstr(def->emulator, "kvm")) {
    def->virtType = VIR_DOMAIN_VIRT_KVM;
    def->features |= (1 << VIR_DOMAIN_FEATURE_PAE);
}

Since def is allocated in qemuParseCommandLine using VIR_ALLOC, we
can always use |= when modifying def->features
2012-07-11 09:10:21 +02:00
..
2012-05-16 10:23:06 -06:00
2012-04-02 09:33:54 -06:00
2011-12-01 13:49:20 -07:00
2011-04-29 10:21:20 -06:00
2011-06-30 18:04:02 +01:00
2012-05-16 10:23:06 -06:00
2011-06-24 08:01:10 -06:00
2012-06-21 16:33:00 +02:00
2011-07-11 09:21:37 -06:00
2012-05-24 21:09:03 -06:00
2011-12-01 14:12:59 -07:00
2011-12-01 14:12:59 -07:00
2012-04-05 22:07:41 -06:00