mirror of https://github.com/xemu-project/xemu.git
vfio/spapr: Only compile sPAPR IOMMU support when needed
sPAPR IOMMU support is only needed for pseries machines. Compile out support when CONFIG_PSERIES is not set. This saves ~7K of text. Reviewed-by: Zhenzhong Duan <zhenzhong.duan@intel.com> Tested-by: Eric Farman <farman@linux.ibm.com> Signed-off-by: Cédric Le Goater <clg@redhat.com>
This commit is contained in:
parent
ce5f6d49f5
commit
10164df6ed
|
@ -4,9 +4,9 @@ vfio_ss.add(files(
|
||||||
'common.c',
|
'common.c',
|
||||||
'container-base.c',
|
'container-base.c',
|
||||||
'container.c',
|
'container.c',
|
||||||
'spapr.c',
|
|
||||||
'migration.c',
|
'migration.c',
|
||||||
))
|
))
|
||||||
|
vfio_ss.add(when: 'CONFIG_PSERIES', if_true: files('spapr.c'))
|
||||||
vfio_ss.add(when: 'CONFIG_IOMMUFD', if_true: files(
|
vfio_ss.add(when: 'CONFIG_IOMMUFD', if_true: files(
|
||||||
'iommufd.c',
|
'iommufd.c',
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in New Issue