Commit f1dd0a8b authored by Joerg Roedel's avatar Joerg Roedel

iommu/amd: Don't disable IRQs in __detach_device

This function is already called with IRQs disabled already.
So no need to disable them again.
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent 150952f9
...@@ -2189,18 +2189,17 @@ static int attach_device(struct device *dev, ...@@ -2189,18 +2189,17 @@ static int attach_device(struct device *dev,
static void __detach_device(struct iommu_dev_data *dev_data) static void __detach_device(struct iommu_dev_data *dev_data)
{ {
struct protection_domain *domain; struct protection_domain *domain;
unsigned long flags;
if (WARN_ON(!dev_data->domain)) if (WARN_ON(!dev_data->domain))
return; return;
domain = dev_data->domain; domain = dev_data->domain;
spin_lock_irqsave(&domain->lock, flags); spin_lock(&domain->lock);
do_detach(dev_data); do_detach(dev_data);
spin_unlock_irqrestore(&domain->lock, flags); spin_unlock(&domain->lock);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment