Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 145914
b: refs/heads/master
c: 11b8388
h: refs/heads/master
v: v3
  • Loading branch information
Joerg Roedel committed May 28, 2009
1 parent c414289 commit a77ae63
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 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: 00cd122ae5e5e7c60cce2af3c35b190d4c3f2d0d
refs/heads/master: 11b83888ae729457b5cfb936dbd498481f6408df
20 changes: 18 additions & 2 deletions trunk/arch/x86/kernel/amd_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1403,10 +1403,26 @@ static dma_addr_t __map_single(struct device *dev,
if (align)
align_mask = (1UL << get_order(size)) - 1;

retry:
address = dma_ops_alloc_addresses(dev, dma_dom, pages, align_mask,
dma_mask);
if (unlikely(address == bad_dma_address))
goto out;
if (unlikely(address == bad_dma_address)) {
/*
* setting next_address here will let the address
* allocator only scan the new allocated range in the
* first run. This is a small optimization.
*/
dma_dom->next_address = dma_dom->aperture_size;

if (alloc_new_range(iommu, dma_dom, false, GFP_ATOMIC))
goto out;

/*
* aperture was sucessfully enlarged by 128 MB, try
* allocation again
*/
goto retry;
}

start = address;
for (i = 0; i < pages; ++i) {
Expand Down

0 comments on commit a77ae63

Please sign in to comment.