diff options
author | Dexuan Cui <decui@microsoft.com> | 2019-05-07 07:46:55 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-08-29 08:28:51 +0200 |
commit | a6f236e1bd97d89d80c07dfe0e0b566044473b5a (patch) | |
tree | 8a7d8a6c3721c05e92d392d0a7c23623d93eeb35 /drivers/hv | |
parent | 3783c7ee9920fac998117a9f8ec715693c5ed34b (diff) | |
download | linux-stable-a6f236e1bd97d89d80c07dfe0e0b566044473b5a.tar.gz linux-stable-a6f236e1bd97d89d80c07dfe0e0b566044473b5a.tar.bz2 linux-stable-a6f236e1bd97d89d80c07dfe0e0b566044473b5a.zip |
Drivers: hv: vmbus: Fix virt_to_hvpfn() for X86_PAE
commit a9fc4340aee041dd186d1fb8f1b5d1e9caf28212 upstream.
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>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index 2f164bd74687..fdb0f832fade 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)) + |