From 79a9ecf44e9d010c431c73f0ad41e3409cd33074 Mon Sep 17 00:00:00 2001 From: Bjorn Helgaas Date: Tue, 29 May 2012 15:06:29 -0700 Subject: [PATCH] --- yaml --- r: 308849 b: refs/heads/master c: 3af684c7c5b3dddf7c5d83b8ad431380cdc6f164 h: refs/heads/master i: 308847: 822ab45ccaece55c127b5b3fc9a212de157c0a4a v: v3 --- [refs] | 2 +- trunk/lib/swiotlb.c | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index 6c084dfdb053..12a5013d4637 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 365811d6f9bd98543bedc02b72d94f0f0faf3670 +refs/heads/master: 3af684c7c5b3dddf7c5d83b8ad431380cdc6f164 diff --git a/trunk/lib/swiotlb.c b/trunk/lib/swiotlb.c index 414f46ed1dcd..45bc1f83a5ad 100644 --- a/trunk/lib/swiotlb.c +++ b/trunk/lib/swiotlb.c @@ -130,11 +130,9 @@ void swiotlb_print_info(void) pstart = virt_to_phys(io_tlb_start); pend = virt_to_phys(io_tlb_end); - printk(KERN_INFO "Placing %luMB software IO TLB between %p - %p\n", - bytes >> 20, io_tlb_start, io_tlb_end); - printk(KERN_INFO "software IO TLB at phys %#llx - %#llx\n", - (unsigned long long)pstart, - (unsigned long long)pend); + printk(KERN_INFO "software IO TLB [mem %#010llx-%#010llx] (%luMB) mapped at [%p-%p]\n", + (unsigned long long)pstart, (unsigned long long)pend - 1, + bytes >> 20, io_tlb_start, io_tlb_end - 1); } void __init swiotlb_init_with_tbl(char *tlb, unsigned long nslabs, int verbose)