mirror of
https://github.com/adulau/aha.git
synced 2025-01-03 22:53:18 +00:00
AMD IOMMU: add domain id free function
Impact: add code to release a domain id Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
86db2e5d47
commit
a2acfb7579
1 changed files with 12 additions and 0 deletions
|
@ -571,6 +571,18 @@ static u16 domain_id_alloc(void)
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_IOMMU_API
|
||||||
|
static void domain_id_free(int id)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
|
||||||
|
write_lock_irqsave(&amd_iommu_devtable_lock, flags);
|
||||||
|
if (id > 0 && id < MAX_DOMAIN_ID)
|
||||||
|
__clear_bit(id, amd_iommu_pd_alloc_bitmap);
|
||||||
|
write_unlock_irqrestore(&amd_iommu_devtable_lock, flags);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Used to reserve address ranges in the aperture (e.g. for exclusion
|
* Used to reserve address ranges in the aperture (e.g. for exclusion
|
||||||
* ranges.
|
* ranges.
|
||||||
|
|
Loading…
Reference in a new issue