diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-11 19:57:52 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-11 19:57:52 -0800 |
commit | 7fc7e2eeecb599ba719c4c4503100fc8cd6a6920 (patch) | |
tree | 389b63cf2cbdf27fceef52a450b4b05367fe4425 /include/linux | |
parent | fb155c1619f056ae9765eed272cd6aba6e1a7399 (diff) | |
download | op-kernel-dev-7fc7e2eeecb599ba719c4c4503100fc8cd6a6920.zip op-kernel-dev-7fc7e2eeecb599ba719c4c4503100fc8cd6a6920.tar.gz |
Remove (at least temporarily) the "incomplete PFN mapping" support
With the previous commit, we can handle arbitrary shared re-mappings
even without this complexity, and since the only known private mappings
are for strange users of /dev/mem (which never create an incomplete one),
there seems to be no reason to support it.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 29f02d8..e5677f4 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -163,7 +163,6 @@ extern unsigned int kobjsize(const void *objp); #define VM_HUGETLB 0x00400000 /* Huge TLB Page VM */ #define VM_NONLINEAR 0x00800000 /* Is non-linear (remap_file_pages) */ #define VM_MAPPED_COPY 0x01000000 /* T if mapped copy of data (nommu mmap) */ -#define VM_INCOMPLETE 0x02000000 /* Strange partial PFN mapping marker */ #ifndef VM_STACK_DEFAULT_FLAGS /* arch can override this */ #define VM_STACK_DEFAULT_FLAGS VM_DATA_DEFAULT_FLAGS |