Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 361674
b: refs/heads/master
c: 96e7d7a
h: refs/heads/master
v: v3
  • Loading branch information
Alexander Duyck authored and Linus Torvalds committed Mar 22, 2013
1 parent 6a6dfbc commit f5ad14f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8d640a51ec9e9cdefa680b67ad55f933eefc5923
refs/heads/master: 96e7d7a1e0fc7780b4c1981c787e42473aa91a95
24 changes: 19 additions & 5 deletions trunk/lib/dma-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -1085,13 +1085,27 @@ void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
ref.dev = dev;
ref.dev_addr = dma_addr;
bucket = get_hash_bucket(&ref, &flags);
entry = bucket_find_exact(bucket, &ref);

if (!entry)
goto out;
list_for_each_entry(entry, &bucket->list, list) {
if (!exact_match(&ref, entry))
continue;

/*
* The same physical address can be mapped multiple
* times. Without a hardware IOMMU this results in the
* same device addresses being put into the dma-debug
* hash multiple times too. This can result in false
* positives being reported. Therefore we implement a
* best-fit algorithm here which updates the first entry
* from the hash which fits the reference value and is
* not currently listed as being checked.
*/
if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
entry->map_err_type = MAP_ERR_CHECKED;
break;
}
}

entry->map_err_type = MAP_ERR_CHECKED;
out:
put_hash_bucket(bucket, &flags);
}
EXPORT_SYMBOL(debug_dma_mapping_error);
Expand Down

0 comments on commit f5ad14f

Please sign in to comment.