mirror of https://gitee.com/openkylin/linux.git
axonram: Fix bug in direct_access
The 'pfn' returned by axonram was completely bogus, and has been since 2008. Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com> Reviewed-by: Jan Kara <jack@suse.cz> Reviewed-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: stable@vger.kernel.org Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
parent
78e367a360
commit
91117a2024
|
@ -156,7 +156,7 @@ axon_ram_direct_access(struct block_device *device, sector_t sector,
|
||||||
}
|
}
|
||||||
|
|
||||||
*kaddr = (void *)(bank->ph_addr + offset);
|
*kaddr = (void *)(bank->ph_addr + offset);
|
||||||
*pfn = virt_to_phys(kaddr) >> PAGE_SHIFT;
|
*pfn = virt_to_phys(*kaddr) >> PAGE_SHIFT;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue