linux-hyperv.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Drivers: hv: vmbus: Fix virt_to_hvpfn() for X86_PAE
@ 2019-05-07  7:46 Dexuan Cui
  2019-05-07 12:51 ` Michael Kelley
  0 siblings, 1 reply; 5+ messages in thread
From: Dexuan Cui @ 2019-05-07  7:46 UTC (permalink / raw)
  To: linux-hyperv@vger.kernel.org, gregkh@linuxfoundation.org,
	Stephen Hemminger, sashal@kernel.org, Sasha Levin, Haiyang Zhang,
	KY Srinivasan, devel@linuxdriverproject.org, Michael Kelley,
	juliana.rodrigueiro@intra2net.com
  Cc: linux-kernel@vger.kernel.org, marcelo.cerri@canonical.com,
	apw@canonical.com, olaf@aepfle.de, vkuznets, jasowang@redhat.com,
	Dexuan Cui, stable@vger.kernel.org

In the case of X86_PAE, unsigned long is u32, but the physical address type
should be u64. Due to the bug here, the netvsc driver can not load
successfully, and sometimes the VM can panic due to memory corruption (the
hypervisor writes data to the wrong location).

Fixes: 6ba34171bcbd ("Drivers: hv: vmbus: Remove use of slow_virt_to_phys()")
Cc: stable@vger.kernel.org
Cc: Michael Kelley <mikelley@microsoft.com>
Reported-and-tested-by: Juliana Rodrigueiro <juliana.rodrigueiro@intra2net.com>
Signed-off-by: Dexuan Cui <decui@microsoft.com>
---
 drivers/hv/channel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c
index 23381c41d087..aaaee5f93193 100644
--- a/drivers/hv/channel.c
+++ b/drivers/hv/channel.c
@@ -38,7 +38,7 @@
 
 static unsigned long virt_to_hvpfn(void *addr)
 {
-	unsigned long paddr;
+	phys_addr_t paddr;
 
 	if (is_vmalloc_addr(addr))
 		paddr = page_to_phys(vmalloc_to_page(addr)) +
-- 
2.17.1


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

end of thread, other threads:[~2019-08-20 16:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-07  7:46 [PATCH] Drivers: hv: vmbus: Fix virt_to_hvpfn() for X86_PAE Dexuan Cui
2019-05-07 12:51 ` Michael Kelley
2019-05-09  1:06   ` Sasha Levin
2019-08-20 15:51     ` Juliana Rodrigueiro
2019-08-20 16:51       ` Sasha Levin

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).