vhost: fix guest physical address to host physical address mapping

Message ID 20220117162027.927041-1-yuanx.wang@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Maxime Coquelin
Headers
Series vhost: fix guest physical address to host physical address mapping |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/github-robot: build success github build: passed
ci/Intel-compilation success Compilation OK
ci/intel-Testing success Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-broadcom-Functional success Functional Testing PASS
ci/iol-intel-Functional success Functional Testing PASS
ci/iol-broadcom-Performance success Performance Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-aarch64-unit-testing success Testing PASS
ci/iol-x86_64-unit-testing success Testing PASS
ci/iol-x86_64-compile-testing success Testing PASS
ci/iol-abi-testing success Testing PASS
ci/iol-aarch64-compile-testing success Testing PASS

Commit Message

Wang, YuanX Jan. 17, 2022, 4:20 p.m. UTC
  Async copy fails when looking up hpa in the gpa to hpa mapping table.
This happens because the gpa is matched exactly in the merged
mapping table, and the merge loses the mapping entries.
A new range comparison method is introduced to solve this issue.

Fixes: 6563cf92380 ("vhost: fix async copy on multi-page buffers")

Signed-off-by: Yuan Wang <yuanx.wang@intel.com>
---
 lib/vhost/vhost.h | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)
  

Comments

Maxime Coquelin Feb. 1, 2022, 8:23 a.m. UTC | #1
Hi Yuan,

On 1/17/22 17:20, Yuan Wang wrote:
> Async copy fails when looking up hpa in the gpa to hpa mapping table.
> This happens because the gpa is matched exactly in the merged
> mapping table, and the merge loses the mapping entries.
> A new range comparison method is introduced to solve this issue.
> 
> Fixes: 6563cf92380 ("vhost: fix async copy on multi-page buffers")
> 
> Signed-off-by: Yuan Wang <yuanx.wang@intel.com>
> ---
>   lib/vhost/vhost.h | 18 ++++++++++++++++--
>   1 file changed, 16 insertions(+), 2 deletions(-)
> 

Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>

Thanks,
Maxime
  
Maxime Coquelin Feb. 8, 2022, 11:11 a.m. UTC | #2
On 1/17/22 17:20, Yuan Wang wrote:
> Async copy fails when looking up hpa in the gpa to hpa mapping table.
> This happens because the gpa is matched exactly in the merged
> mapping table, and the merge loses the mapping entries.
> A new range comparison method is introduced to solve this issue.
> 
> Fixes: 6563cf92380 ("vhost: fix async copy on multi-page buffers")
> 
> Signed-off-by: Yuan Wang <yuanx.wang@intel.com>
> ---
>   lib/vhost/vhost.h | 18 ++++++++++++++++--
>   1 file changed, 16 insertions(+), 2 deletions(-)
> 

Applied to dpdk-next-virtio/main.

Thanks,
Maxime
  
Ferruh Yigit Feb. 8, 2022, 7:57 p.m. UTC | #3
On 2/8/2022 11:11 AM, Maxime Coquelin wrote:
> 
> 
> On 1/17/22 17:20, Yuan Wang wrote:
>> Async copy fails when looking up hpa in the gpa to hpa mapping table.
>> This happens because the gpa is matched exactly in the merged
>> mapping table, and the merge loses the mapping entries.
>> A new range comparison method is introduced to solve this issue.
>>
>> Fixes: 6563cf92380 ("vhost: fix async copy on multi-page buffers")
>>
>> Signed-off-by: Yuan Wang <yuanx.wang@intel.com>
>> ---
>>   lib/vhost/vhost.h | 18 ++++++++++++++++--
>>   1 file changed, 16 insertions(+), 2 deletions(-)
>>
> 
> Applied to dpdk-next-virtio/main.
> 

Is it candidate for Cc: stable@dpdk.org backport?

adding stable tag in the next-net, please comment if it shouldn't.
  

Patch

diff --git a/lib/vhost/vhost.h b/lib/vhost/vhost.h
index 9521ae56da..d4586f3341 100644
--- a/lib/vhost/vhost.h
+++ b/lib/vhost/vhost.h
@@ -588,6 +588,20 @@  static __rte_always_inline int guest_page_addrcmp(const void *p1,
 	return 0;
 }
 
+static __rte_always_inline int guest_page_rangecmp(const void *p1, const void *p2)
+{
+	const struct guest_page *page1 = (const struct guest_page *)p1;
+	const struct guest_page *page2 = (const struct guest_page *)p2;
+
+	if (page1->guest_phys_addr >= page2->guest_phys_addr) {
+		if (page1->guest_phys_addr < page2->guest_phys_addr + page2->size)
+			return 0;
+		else
+			return 1;
+	} else
+		return -1;
+}
+
 static __rte_always_inline rte_iova_t
 gpa_to_first_hpa(struct virtio_net *dev, uint64_t gpa,
 	uint64_t gpa_size, uint64_t *hpa_size)
@@ -598,9 +612,9 @@  gpa_to_first_hpa(struct virtio_net *dev, uint64_t gpa,
 
 	*hpa_size = gpa_size;
 	if (dev->nr_guest_pages >= VHOST_BINARY_SEARCH_THRESH) {
-		key.guest_phys_addr = gpa & ~(dev->guest_pages[0].size - 1);
+		key.guest_phys_addr = gpa;
 		page = bsearch(&key, dev->guest_pages, dev->nr_guest_pages,
-			       sizeof(struct guest_page), guest_page_addrcmp);
+			       sizeof(struct guest_page), guest_page_rangecmp);
 		if (page) {
 			if (gpa + gpa_size <=
 					page->guest_phys_addr + page->size) {