Skip to content

Commit

Permalink
parisc: fix compile breakage caused by inlining maybe_mkwrite
Browse files Browse the repository at this point in the history
on Parisc, we have an include of linux/mm.h inside our asm/pgtable.h, so
this patch

commit 14fd403
Author: Andrea Arcangeli <aarcange@redhat.com>
Date:   Thu Jan 13 15:46:37 2011 -0800

    thp: export maybe_mkwrite

Causes us an unsatisfiable use of pte_mkwrite in linux/mm.h

The fix is obviously not to include linux/mm.h in our pgtable.h, which
unbreaks the build.

Signed-off-by: James Bottomley <James.Bottomley@suse.de>
  • Loading branch information
James Bottomley authored and James Bottomley committed Jan 15, 2011
1 parent fbea668 commit 84cd845
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion arch/parisc/include/asm/pgtable.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
* we simulate an x86-style page table for the linux mm code
*/

#include <linux/mm.h> /* for vm_area_struct */
#include <linux/bitops.h>
#include <linux/spinlock.h>
#include <asm/processor.h>
#include <asm/cache.h>

struct vm_area_struct;

/*
* kern_addr_valid(ADDR) tests if ADDR is pointing to valid kernel
* memory. For the return value to be meaningful, ADDR must be >=
Expand Down

0 comments on commit 84cd845

Please sign in to comment.