bus/vmbus: fix ring buffer mapping
authorLong Li <longli@microsoft.com>
Fri, 12 Jun 2020 00:48:25 +0000 (17:48 -0700)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 24 Jun 2020 23:04:17 +0000 (01:04 +0200)
vmbus_map_addr is used as the next start virtual address for mapping ring
buffer. However it's updated based on ring_buf, which is a pointer to an
address on the stack. The next ring buffer may be mapped to an unexpected
address.

Fix this by calculating vmbus_map_addr based on returned virtual address.

Fixes: 3f9277031a2e ("bus/vmbus: fix check for mmap failure")
Cc: stable@dpdk.org
Signed-off-by: Long Li <longli@microsoft.com>
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
drivers/bus/vmbus/linux/vmbus_uio.c

index 5451bfd..5dc0c47 100644 (file)
@@ -242,7 +242,7 @@ static int vmbus_uio_map_subchan(const struct rte_vmbus_device *dev,
        *ring_size = file_size / 2;
        *ring_buf = mapaddr;
 
-       vmbus_map_addr = RTE_PTR_ADD(ring_buf, file_size);
+       vmbus_map_addr = RTE_PTR_ADD(mapaddr, file_size);
        return 0;
 }