• Jordan Niethe's avatar
    KVM: PPC: Book3S HV: Fix build failure without IOMMU support · e40542af
    Jordan Niethe authored
    Currently trying to build without IOMMU support will fail:
    
      (.text+0x1380): undefined reference to `kvmppc_h_get_tce'
      (.text+0x1384): undefined reference to `kvmppc_rm_h_put_tce'
      (.text+0x149c): undefined reference to `kvmppc_rm_h_stuff_tce'
      (.text+0x14a0): undefined reference to `kvmppc_rm_h_put_tce_indirect'
    
    This happens because turning off IOMMU support will prevent
    book3s_64_vio_hv.c from being built because it is only built when
    SPAPR_TCE_IOMMU is set, which depends on IOMMU support.
    
    Fix it using ifdefs for the undefined references.
    
    Fixes: 76d837a4 ("KVM: PPC: Book3S PR: Don't include SPAPR TCE code on non-pseries platforms")
    Signed-off-by: default avatarJordan Niethe <jniethe5@gmail.com>
    Signed-off-by: default avatarPaul Mackerras <paulus@ozlabs.org>
    e40542af
book3s_hv_rmhandlers.S 87 KB