diff options
-rw-r--r-- | drivers/virtio/virtio_pci.c | 4 | ||||
-rw-r--r-- | include/linux/virtio_pci.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/drivers/virtio/virtio_pci.c b/drivers/virtio/virtio_pci.c index c2cd69ba0a8c..f28643f3a4e8 100644 --- a/drivers/virtio/virtio_pci.c +++ b/drivers/virtio/virtio_pci.c | |||
@@ -237,7 +237,7 @@ static struct virtqueue *vp_find_vq(struct virtio_device *vdev, unsigned index, | |||
237 | info->queue_index = index; | 237 | info->queue_index = index; |
238 | info->num = num; | 238 | info->num = num; |
239 | 239 | ||
240 | size = PAGE_ALIGN(vring_size(num, PAGE_SIZE)); | 240 | size = PAGE_ALIGN(vring_size(num, VIRTIO_PCI_VRING_ALIGN)); |
241 | info->queue = alloc_pages_exact(size, GFP_KERNEL|__GFP_ZERO); | 241 | info->queue = alloc_pages_exact(size, GFP_KERNEL|__GFP_ZERO); |
242 | if (info->queue == NULL) { | 242 | if (info->queue == NULL) { |
243 | err = -ENOMEM; | 243 | err = -ENOMEM; |
@@ -290,7 +290,7 @@ static void vp_del_vq(struct virtqueue *vq) | |||
290 | iowrite16(info->queue_index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_SEL); | 290 | iowrite16(info->queue_index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_SEL); |
291 | iowrite32(0, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN); | 291 | iowrite32(0, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN); |
292 | 292 | ||
293 | size = PAGE_ALIGN(vring_size(info->num, PAGE_SIZE)); | 293 | size = PAGE_ALIGN(vring_size(info->num, VIRTIO_PCI_VRING_ALIGN)); |
294 | free_pages_exact(info->queue, size); | 294 | free_pages_exact(info->queue, size); |
295 | kfree(info); | 295 | kfree(info); |
296 | } | 296 | } |
diff --git a/include/linux/virtio_pci.h b/include/linux/virtio_pci.h index e13d7ebcf576..cd0fd5d181a6 100644 --- a/include/linux/virtio_pci.h +++ b/include/linux/virtio_pci.h | |||
@@ -57,4 +57,8 @@ | |||
57 | /* How many bits to shift physical queue address written to QUEUE_PFN. | 57 | /* How many bits to shift physical queue address written to QUEUE_PFN. |
58 | * 12 is historical, and due to x86 page size. */ | 58 | * 12 is historical, and due to x86 page size. */ |
59 | #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12 | 59 | #define VIRTIO_PCI_QUEUE_ADDR_SHIFT 12 |
60 | |||
61 | /* The alignment to use between consumer and producer parts of vring. | ||
62 | * x86 pagesize again. */ | ||
63 | #define VIRTIO_PCI_VRING_ALIGN 4096 | ||
60 | #endif | 64 | #endif |