|
@@ -942,21 +942,17 @@ static int device_dma_allocations(struct device *dev, struct dma_debug_entry **o
|
|
unsigned long flags;
|
|
unsigned long flags;
|
|
int count = 0, i;
|
|
int count = 0, i;
|
|
|
|
|
|
- local_irq_save(flags);
|
|
|
|
-
|
|
|
|
for (i = 0; i < HASH_SIZE; ++i) {
|
|
for (i = 0; i < HASH_SIZE; ++i) {
|
|
- spin_lock(&dma_entry_hash[i].lock);
|
|
|
|
|
|
+ spin_lock_irqsave(&dma_entry_hash[i].lock, flags);
|
|
list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
|
|
list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
|
|
if (entry->dev == dev) {
|
|
if (entry->dev == dev) {
|
|
count += 1;
|
|
count += 1;
|
|
*out_entry = entry;
|
|
*out_entry = entry;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- spin_unlock(&dma_entry_hash[i].lock);
|
|
|
|
|
|
+ spin_unlock_irqrestore(&dma_entry_hash[i].lock, flags);
|
|
}
|
|
}
|
|
|
|
|
|
- local_irq_restore(flags);
|
|
|
|
-
|
|
|
|
return count;
|
|
return count;
|
|
}
|
|
}
|
|
|
|
|