aboutsummaryrefslogtreecommitdiff
path: root/mm/memory.c
diff options
context:
space:
mode:
authorJan Engelmohr <jan.engelmohr@mailbox.tu-dresden.de>2016-07-26 18:10:21 +0200
committerMoyster <oysterized@gmail.com>2016-08-26 15:59:49 +0200
commitd7f59ace74662a703f7b079e61f9cdbc1dcb9ab3 (patch)
tree25d1162c247110a10b9f667d4dbb531e620d2d1c /mm/memory.c
parentd2ee3e254ee0939806c103c145035ddac9fe5953 (diff)
3.10.71 -> 3.10.72
Diffstat (limited to 'mm/memory.c')
-rw-r--r--mm/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c
index 4762671f9..ffe756832 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -4128,7 +4128,7 @@ int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
if (follow_phys(vma, addr, write, &prot, &phys_addr))
return -EINVAL;
- maddr = ioremap_prot(phys_addr, PAGE_SIZE, prot);
+ maddr = ioremap_prot(phys_addr, PAGE_ALIGN(len + offset), prot);
if (write)
memcpy_toio(maddr + offset, buf, len);
else