mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
[IA64] don't double >> PAGE_SHIFT pointer for /dev/kmem access
Don't PAGE_SHIFT pointer before handing it to virt_to_page() in xlate_dev_kmem_ptr() as it results in a double shift. Spotted by Bob Montgomery. Signed-off-by: Jes Sorensen <jes@sgi.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
This commit is contained in:
parent
e803915000
commit
f2454a1a4b
@ -389,7 +389,7 @@ xlate_dev_kmem_ptr (char * p)
|
||||
struct page *page;
|
||||
char * ptr;
|
||||
|
||||
page = virt_to_page((unsigned long)p >> PAGE_SHIFT);
|
||||
page = virt_to_page((unsigned long)p);
|
||||
if (PageUncached(page))
|
||||
ptr = (char *)__pa(p) + __IA64_UNCACHED_OFFSET;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user