mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-04 23:35:27 +07:00
AMD IOMMU: fix detection of NP capable IOMMUs
This patch changes the code to use IOMMU_CAP_NPCACHE as a shift and not as a mask. Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
1e19b16a30
commit
ae9b940364
@ -50,7 +50,7 @@ static int dma_ops_unity_map(struct dma_ops_domain *dma_dom,
|
|||||||
/* returns !0 if the IOMMU is caching non-present entries in its TLB */
|
/* returns !0 if the IOMMU is caching non-present entries in its TLB */
|
||||||
static int iommu_has_npcache(struct amd_iommu *iommu)
|
static int iommu_has_npcache(struct amd_iommu *iommu)
|
||||||
{
|
{
|
||||||
return iommu->cap & IOMMU_CAP_NPCACHE;
|
return iommu->cap & (1UL << IOMMU_CAP_NPCACHE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
Loading…
Reference in New Issue
Block a user