diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-06 21:31:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-11-06 21:31:36 -0500 |
commit | 06d381484fe8fb1ba2996c22e89595a273e3634c (patch) | |
tree | 0d39c57cb8c501341ab8ed1d740f076b0b8c0bd0 /drivers/xen/xenbus | |
parent | 5d5a8d2d9d6cca979efe4fe1552d787fdc542603 (diff) | |
parent | c9d6369978411f690513994e6e53e2e6410874a4 (diff) |
Merge branch 'stable/vmalloc-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen
* 'stable/vmalloc-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
net: xen-netback: use API provided by xenbus module to map rings
block: xen-blkback: use API provided by xenbus module to map rings
xen: use generic functions instead of xen_{alloc, free}_vm_area()
Diffstat (limited to 'drivers/xen/xenbus')
-rw-r--r-- | drivers/xen/xenbus/xenbus_client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/xen/xenbus/xenbus_client.c b/drivers/xen/xenbus/xenbus_client.c index cdacf923e073..229d3adce85d 100644 --- a/drivers/xen/xenbus/xenbus_client.c +++ b/drivers/xen/xenbus/xenbus_client.c | |||
@@ -443,7 +443,7 @@ int xenbus_map_ring_valloc(struct xenbus_device *dev, int gnt_ref, void **vaddr) | |||
443 | 443 | ||
444 | *vaddr = NULL; | 444 | *vaddr = NULL; |
445 | 445 | ||
446 | area = xen_alloc_vm_area(PAGE_SIZE); | 446 | area = alloc_vm_area(PAGE_SIZE); |
447 | if (!area) | 447 | if (!area) |
448 | return -ENOMEM; | 448 | return -ENOMEM; |
449 | 449 | ||
@@ -453,7 +453,7 @@ int xenbus_map_ring_valloc(struct xenbus_device *dev, int gnt_ref, void **vaddr) | |||
453 | BUG(); | 453 | BUG(); |
454 | 454 | ||
455 | if (op.status != GNTST_okay) { | 455 | if (op.status != GNTST_okay) { |
456 | xen_free_vm_area(area); | 456 | free_vm_area(area); |
457 | xenbus_dev_fatal(dev, op.status, | 457 | xenbus_dev_fatal(dev, op.status, |
458 | "mapping in shared page %d from domain %d", | 458 | "mapping in shared page %d from domain %d", |
459 | gnt_ref, dev->otherend_id); | 459 | gnt_ref, dev->otherend_id); |
@@ -552,7 +552,7 @@ int xenbus_unmap_ring_vfree(struct xenbus_device *dev, void *vaddr) | |||
552 | BUG(); | 552 | BUG(); |
553 | 553 | ||
554 | if (op.status == GNTST_okay) | 554 | if (op.status == GNTST_okay) |
555 | xen_free_vm_area(area); | 555 | free_vm_area(area); |
556 | else | 556 | else |
557 | xenbus_dev_error(dev, op.status, | 557 | xenbus_dev_error(dev, op.status, |
558 | "unmapping page at handle %d error %d", | 558 | "unmapping page at handle %d error %d", |