# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID e8700131597849db2fc37321356b11e689a1717d
# Parent 878ba6d3954ee783549c2014c997116ff1e1194f
dma_map_single can't sleep since it may be called with locks held, or
interrupts off, etc. Thus it shouldn't make sleeping allocations.
Signed-off-by: Chris Wright <chrisw@xxxxxxxx>
diff -r 878ba6d3954e -r e87001315978
linux-2.6-xen-sparse/arch/xen/i386/kernel/pci-dma.c
--- a/linux-2.6-xen-sparse/arch/xen/i386/kernel/pci-dma.c Wed Aug 10
09:45:06 2005
+++ b/linux-2.6-xen-sparse/arch/xen/i386/kernel/pci-dma.c Wed Aug 10
09:50:05 2005
@@ -182,8 +182,8 @@
if ((((unsigned int)ptr & ~PAGE_MASK) + size) <= PAGE_SIZE) {
dma = virt_to_bus(ptr);
} else {
- BUG_ON((bnc = dma_alloc_coherent(dev, size, &dma, 0)) == NULL);
- BUG_ON((ent = kmalloc(sizeof(*ent), GFP_KERNEL)) == NULL);
+ BUG_ON((bnc = dma_alloc_coherent(dev, size, &dma, GFP_ATOMIC))
== NULL);
+ BUG_ON((ent = kmalloc(sizeof(*ent), GFP_ATOMIC)) == NULL);
if (direction != DMA_FROM_DEVICE)
memcpy(bnc, ptr, size);
ent->dma = dma;
diff -r 878ba6d3954e -r e87001315978
linux-2.6-xen-sparse/arch/xen/x86_64/kernel/pci-dma.c
--- a/linux-2.6-xen-sparse/arch/xen/x86_64/kernel/pci-dma.c Wed Aug 10
09:45:06 2005
+++ b/linux-2.6-xen-sparse/arch/xen/x86_64/kernel/pci-dma.c Wed Aug 10
09:50:05 2005
@@ -234,8 +234,8 @@
if (((((unsigned long)ptr) & ~PAGE_MASK) + size) <= PAGE_SIZE) {
dma = virt_to_bus(ptr);
} else {
- BUG_ON((bnc = dma_alloc_coherent(dev, size, &dma, 0)) == NULL);
- BUG_ON((ent = kmalloc(sizeof(*ent), GFP_KERNEL)) == NULL);
+ BUG_ON((bnc = dma_alloc_coherent(dev, size, &dma, GFP_ATOMIC))
== NULL);
+ BUG_ON((ent = kmalloc(sizeof(*ent), GFP_ATOMIC)) == NULL);
if (direction != DMA_FROM_DEVICE)
memcpy(bnc, ptr, size);
ent->dma = dma;
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|