Skip to content

Commit

Permalink
VT-d: adapt domain init and destroy functions for IOMMU API
Browse files Browse the repository at this point in the history
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
  • Loading branch information
Joerg Roedel committed Jan 3, 2009
1 parent 19de40a commit 5d45080
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
33 changes: 18 additions & 15 deletions drivers/pci/intel-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
#include <linux/mempool.h>
#include <linux/timer.h>
#include <linux/iova.h>
#include <linux/iommu.h>
#include <linux/intel-iommu.h>
#include <asm/cacheflush.h>
#include <asm/iommu.h>
Expand Down Expand Up @@ -2962,32 +2963,34 @@ static void vm_domain_exit(struct dmar_domain *domain)
free_domain_mem(domain);
}

struct dmar_domain *intel_iommu_alloc_domain(void)
static int intel_iommu_domain_init(struct iommu_domain *domain)
{
struct dmar_domain *domain;
struct dmar_domain *dmar_domain;

domain = iommu_alloc_vm_domain();
if (!domain) {
dmar_domain = iommu_alloc_vm_domain();
if (!dmar_domain) {
printk(KERN_ERR
"intel_iommu_domain_alloc: domain == NULL\n");
return NULL;
"intel_iommu_domain_init: dmar_domain == NULL\n");
return -ENOMEM;
}
if (vm_domain_init(domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
if (vm_domain_init(dmar_domain, DEFAULT_DOMAIN_ADDRESS_WIDTH)) {
printk(KERN_ERR
"intel_iommu_domain_alloc: domain_init() failed\n");
vm_domain_exit(domain);
return NULL;
"intel_iommu_domain_init() failed\n");
vm_domain_exit(dmar_domain);
return -ENOMEM;
}
domain->priv = dmar_domain;

return domain;
return 0;
}
EXPORT_SYMBOL_GPL(intel_iommu_alloc_domain);

void intel_iommu_free_domain(struct dmar_domain *domain)
static void intel_iommu_domain_destroy(struct iommu_domain *domain)
{
vm_domain_exit(domain);
struct dmar_domain *dmar_domain = domain->priv;

domain->priv = NULL;
vm_domain_exit(dmar_domain);
}
EXPORT_SYMBOL_GPL(intel_iommu_free_domain);

int intel_iommu_attach_device(struct dmar_domain *domain,
struct pci_dev *pdev)
Expand Down
2 changes: 0 additions & 2 deletions include/linux/intel-iommu.h
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,6 @@ extern int qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,

extern void qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu);

struct dmar_domain *intel_iommu_alloc_domain(void);
void intel_iommu_free_domain(struct dmar_domain *domain);
int intel_iommu_attach_device(struct dmar_domain *domain,
struct pci_dev *pdev);
void intel_iommu_detach_device(struct dmar_domain *domain,
Expand Down

0 comments on commit 5d45080

Please sign in to comment.