]> git.baikalelectronics.ru Git - kernel.git/commit
Drivers: hv: vmbus: Fix virt_to_hvpfn() for X86_PAE
authorDexuan Cui <decui@microsoft.com>
Tue, 7 May 2019 07:46:55 +0000 (07:46 +0000)
committerSasha Levin <sashal@kernel.org>
Tue, 20 Aug 2019 16:49:57 +0000 (12:49 -0400)
commit08c2e45a0886b5d0a9441cfb30c86045bdd89ebd
tree306ef60e4cfe64f9a058dba56de7f402fc12dcf9
parent936cf420d3dd37876d11a2ada5df5003b5c10ad5
Drivers: hv: vmbus: Fix virt_to_hvpfn() for X86_PAE

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: 02c5208179da ("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>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/hv/channel.c