diff options
author | 2009-06-22 10:24:43 +0200 | |
---|---|---|
committer | 2009-06-22 10:24:43 +0200 | |
commit | b7f797cb600fa88de04903be4df3c8a6cb1cb35c (patch) | |
tree | fb34c6081f4184cf336d3df2bd0d1c5de98916c1 /include | |
parent | x86: Set cpu_llc_id on AMD CPUs (diff) | |
parent | x86: ensure percpu lpage doesn't consume too much vmalloc space (diff) | |
download | wireguard-linux-b7f797cb600fa88de04903be4df3c8a6cb1cb35c.tar.xz wireguard-linux-b7f797cb600fa88de04903be4df3c8a6cb1cb35c.zip |
Merge branch 'for-tip' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu into x86/urgent
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index cf260d848eb9..d006e93d5c93 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -810,11 +810,11 @@ extern int vmtruncate_range(struct inode * inode, loff_t offset, loff_t end); #ifdef CONFIG_MMU extern int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, - unsigned long address, int write_access); + unsigned long address, unsigned int flags); #else static inline int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma, unsigned long address, - int write_access) + unsigned int flags) { /* should never happen if there's no MMU */ BUG(); |