diff options
| -rw-r--r-- | lib/swiotlb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/swiotlb.c b/lib/swiotlb.c index e4399fa65ad6..4634ac9cdb38 100644 --- a/lib/swiotlb.c +++ b/lib/swiotlb.c | |||
| @@ -505,7 +505,8 @@ phys_addr_t swiotlb_tbl_map_single(struct device *hwdev, | |||
| 505 | 505 | ||
| 506 | not_found: | 506 | not_found: |
| 507 | spin_unlock_irqrestore(&io_tlb_lock, flags); | 507 | spin_unlock_irqrestore(&io_tlb_lock, flags); |
| 508 | dev_warn(hwdev, "swiotlb buffer is full\n"); | 508 | if (printk_ratelimit()) |
| 509 | dev_warn(hwdev, "swiotlb buffer is full (sz: %zd bytes)\n", size); | ||
| 509 | return SWIOTLB_MAP_ERROR; | 510 | return SWIOTLB_MAP_ERROR; |
| 510 | found: | 511 | found: |
| 511 | spin_unlock_irqrestore(&io_tlb_lock, flags); | 512 | spin_unlock_irqrestore(&io_tlb_lock, flags); |
