Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190879
b: refs/heads/master
c: b5a07fa
h: refs/heads/master
i:
  190877: 39a98b8
  190875: d2da6b3
  190871: 6cc4959
  190863: 2069509
  190847: 782c7d7
v: v3
  • Loading branch information
Catalin Marinas authored and Russell King committed May 8, 2010
1 parent d431435 commit 24d2ca6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b1a9ceb2e003aab7b96e30d990c1092453a0ea44
refs/heads/master: b5a07faadeb4e0cfd6dcee359e501d4755cab875
9 changes: 9 additions & 0 deletions trunk/arch/arm/mm/nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ void flush_dcache_page(struct page *page)
}
EXPORT_SYMBOL(flush_dcache_page);

void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
unsigned long uaddr, void *dst, const void *src,
unsigned long len)
{
memcpy(dst, src, len);
if (vma->vm_flags & VM_EXEC)
__cpuc_coherent_user_range(uaddr, uaddr + len);
}

void __iomem *__arm_ioremap_pfn(unsigned long pfn, unsigned long offset,
size_t size, unsigned int mtype)
{
Expand Down

0 comments on commit 24d2ca6

Please sign in to comment.