DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/gve: fix bug in verify driver compatibility
@ 2023-06-01  3:15 Rushil Gupta
  2023-06-01  4:49 ` Rushil Gupta
  0 siblings, 1 reply; 10+ messages in thread
From: Rushil Gupta @ 2023-06-01  3:15 UTC (permalink / raw)
  To: qi.z.zhang, ferruh.yigit; +Cc: junfeng.guo, dev, Rushil Gupta

gVNIC requires physical address to be passed in the adminq command.
This was initially rightly pointed by ferruh.yigit@.
Fixed by passing 'driver_info_mem->iova'.

Signed-off-by: Rushil Gupta <rushilg@google.com>
---
 drivers/net/gve/gve_ethdev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/gve/gve_ethdev.c b/drivers/net/gve/gve_ethdev.c
index 2c1e73d07a..1c5ce930a4 100644
--- a/drivers/net/gve/gve_ethdev.c
+++ b/drivers/net/gve/gve_ethdev.c
@@ -276,7 +276,8 @@ gve_verify_driver_compatibility(struct gve_priv *priv)
 			(char *)driver_info->os_version_str2);
 
 	err = gve_adminq_verify_driver_compatibility(priv,
-		sizeof(struct gve_driver_info), (dma_addr_t)driver_info);
+		sizeof(struct gve_driver_info),
+                (dma_addr_t)driver_info_mem->iova);
 	/* It's ok if the device doesn't support this */
 	if (err == -EOPNOTSUPP)
 		err = 0;
-- 
2.41.0.rc2.161.g9c6817b8e7-goog


^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2023-06-02 21:44 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-01  3:15 [PATCH] net/gve: fix bug in verify driver compatibility Rushil Gupta
2023-06-01  4:49 ` Rushil Gupta
2023-06-01  6:44   ` Guo, Junfeng
2023-06-01  8:35     ` Ferruh Yigit
2023-06-01  8:58       ` Guo, Junfeng
2023-06-01  8:26   ` Ferruh Yigit
2023-06-01 10:24     ` Ferruh Yigit
2023-06-01 16:32       ` Rushil Gupta
2023-06-02 14:49         ` Ferruh Yigit
2023-06-02 21:44           ` Rushil Gupta

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).