diff options
author | Shmulik Ladkani <shmulik.ladkani@ravellosystems.com> | 2015-12-24 09:17:40 +0200 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2016-01-11 11:01:35 +0800 |
commit | 7d6d347d0602997a7fcb33b7edd20f8d8515b48b (patch) | |
tree | 4b16195c300e58dec2f2719723477ccb160968d7 /include | |
parent | 3509866ab36972043d6757a03c48097c7b5ae22b (diff) |
vmxnet3: Introduce 'x-disable-pcie' back-compat property
Following the previous patch which changed vmxnet3 to be a pci express
device, this patch introduces a boolean property 'x-disable-pcie' whose
default is false.
Setting 'x-disable-pcie' to 'on' preserves the old 'pci device' (non
express) behavior. This allows migration to older versions.
Signed-off-by: Shmulik Ladkani <shmulik.ladkani@ravellosystems.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/compat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hw/compat.h b/include/hw/compat.h index fd20d0e00f..98df0dd7b5 100644 --- a/include/hw/compat.h +++ b/include/hw/compat.h @@ -6,6 +6,10 @@ .driver = "vmxnet3",\ .property = "x-old-msi-offsets",\ .value = "on",\ + },{\ + .driver = "vmxnet3",\ + .property = "x-disable-pcie",\ + .value = "on",\ }, #define HW_COMPAT_2_4 \ |