All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] swiotlb: use swiotlb_alloc_boot to allocate emergency pool
@ 2009-03-31  0:51 Jeremy Fitzhardinge
  2009-03-31  8:26 ` FUJITA Tomonori
  0 siblings, 1 reply; 3+ messages in thread
From: Jeremy Fitzhardinge @ 2009-03-31  0:51 UTC (permalink / raw)
  To: FUJITA Tomonori; +Cc: Linux Kernel Mailing List, the arch/x86 maintainers

Impact: bugfix

Also fix xen_swiotlb_fixup() to deal with sub-slab-sized allocations.

Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>

diff --git a/lib/swiotlb.c b/lib/swiotlb.c
index 0de836d..e8df499 100644
--- a/lib/swiotlb.c
+++ b/lib/swiotlb.c
@@ -202,7 +202,8 @@ swiotlb_init_with_default_size(size_t default_size)
 	/*
 	 * Get the overflow emergency buffer
 	 */
-	io_tlb_overflow_buffer = alloc_bootmem_low(io_tlb_overflow);
+	io_tlb_overflow_buffer = swiotlb_alloc_boot(io_tlb_overflow,
+						    io_tlb_overflow >> IO_TLB_SHIFT);
 	if (!io_tlb_overflow_buffer)
 		panic("Cannot allocate SWIOTLB overflow buffer!\n");
 
diff --git a/drivers/pci/xen-iommu.c b/drivers/pci/xen-iommu.c
index 9ce1599..5775691 100644
--- a/drivers/pci/xen-iommu.c
+++ b/drivers/pci/xen-iommu.c
@@ -47,16 +47,22 @@ void xen_swiotlb_fixup(void *buf, size_t size, unsigned long nslabs)
 		buf, size);
 
 	dma_bits = get_order(IO_TLB_SEGSIZE << IO_TLB_SHIFT) + PAGE_SHIFT;
-	for (i = 0; i < nslabs; i += IO_TLB_SEGSIZE) {
+
+	i = 0;
+	do {
+		int slabs = min(nslabs - i, (unsigned long)IO_TLB_SEGSIZE);
+
 		do {
 			rc = xen_create_contiguous_region(
 				(unsigned long)buf + (i << IO_TLB_SHIFT),
-				get_order(IO_TLB_SEGSIZE << IO_TLB_SHIFT),
+				get_order(slabs << IO_TLB_SHIFT),
 				dma_bits);
 		} while (rc && dma_bits++ < max_dma_bits);
 		if (rc)
 			panic(KERN_ERR "xen_create_contiguous_region failed\n");
-	}
+
+		i += slabs;
+	} while(i < nslabs);
 }
 
 int xen_wants_swiotlb(void)



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] swiotlb: use swiotlb_alloc_boot to allocate emergency pool
  2009-03-31  0:51 [PATCH] swiotlb: use swiotlb_alloc_boot to allocate emergency pool Jeremy Fitzhardinge
@ 2009-03-31  8:26 ` FUJITA Tomonori
  2009-03-31 14:24   ` Jeremy Fitzhardinge
  0 siblings, 1 reply; 3+ messages in thread
From: FUJITA Tomonori @ 2009-03-31  8:26 UTC (permalink / raw)
  To: jeremy; +Cc: fujita.tomonori, linux-kernel, x86

On Mon, 30 Mar 2009 17:51:34 -0700
Jeremy Fitzhardinge <jeremy@goop.org> wrote:

> Impact: bugfix
> 
> Also fix xen_swiotlb_fixup() to deal with sub-slab-sized allocations.
> 
> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
> 
> diff --git a/lib/swiotlb.c b/lib/swiotlb.c
> index 0de836d..e8df499 100644
> --- a/lib/swiotlb.c
> +++ b/lib/swiotlb.c
> @@ -202,7 +202,8 @@ swiotlb_init_with_default_size(size_t default_size)
>  	/*
>  	 * Get the overflow emergency buffer
>  	 */
> -	io_tlb_overflow_buffer = alloc_bootmem_low(io_tlb_overflow);
> +	io_tlb_overflow_buffer = swiotlb_alloc_boot(io_tlb_overflow,
> +						    io_tlb_overflow >> IO_TLB_SHIFT);
>  	if (!io_tlb_overflow_buffer)
>  		panic("Cannot allocate SWIOTLB overflow buffer!\n");
>  
> diff --git a/drivers/pci/xen-iommu.c b/drivers/pci/xen-iommu.c
> index 9ce1599..5775691 100644
> --- a/drivers/pci/xen-iommu.c
> +++ b/drivers/pci/xen-iommu.c
> @@ -47,16 +47,22 @@ void xen_swiotlb_fixup(void *buf, size_t size, unsigned long nslabs)
>  		buf, size);
>  
>  	dma_bits = get_order(IO_TLB_SEGSIZE << IO_TLB_SHIFT) + PAGE_SHIFT;
> -	for (i = 0; i < nslabs; i += IO_TLB_SEGSIZE) {
> +
> +	i = 0;
> +	do {
> +		int slabs = min(nslabs - i, (unsigned long)IO_TLB_SEGSIZE);
> +
>  		do {
>  			rc = xen_create_contiguous_region(
>  				(unsigned long)buf + (i << IO_TLB_SHIFT),
> -				get_order(IO_TLB_SEGSIZE << IO_TLB_SHIFT),
> +				get_order(slabs << IO_TLB_SHIFT),
>  				dma_bits);
>  		} while (rc && dma_bits++ < max_dma_bits);
>  		if (rc)
>  			panic(KERN_ERR "xen_create_contiguous_region failed\n");
> -	}
> +
> +		i += slabs;
> +	} while(i < nslabs);
>  }
>  
>  int xen_wants_swiotlb(void)

This is a patch for a tree for dom0? I have no idea what xen-iommu.c
is doing (I don't know if dom0 support will be merged into mainline or
not). But the change to lib/swiotlb.c is fine by me.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] swiotlb: use swiotlb_alloc_boot to allocate emergency pool
  2009-03-31  8:26 ` FUJITA Tomonori
@ 2009-03-31 14:24   ` Jeremy Fitzhardinge
  0 siblings, 0 replies; 3+ messages in thread
From: Jeremy Fitzhardinge @ 2009-03-31 14:24 UTC (permalink / raw)
  To: FUJITA Tomonori; +Cc: linux-kernel, x86

FUJITA Tomonori wrote:
> This is a patch for a tree for dom0? I have no idea what xen-iommu.c
> is doing (I don't know if dom0 support will be merged into mainline or
> not). But the change to lib/swiotlb.c is fine by me.
>   

Yes, sorry, I was just asking about the lib/swiotlb.c change.

Thanks,
    J

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-03-31 14:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-03-31  0:51 [PATCH] swiotlb: use swiotlb_alloc_boot to allocate emergency pool Jeremy Fitzhardinge
2009-03-31  8:26 ` FUJITA Tomonori
2009-03-31 14:24   ` Jeremy Fitzhardinge

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.