summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorKanoj Sarcar <kanoj@engr.sgi.com>2000-09-07 18:49:36 +0000
committerKanoj Sarcar <kanoj@engr.sgi.com>2000-09-07 18:49:36 +0000
commitff3529cb1ff747a8d3694a3f86eb7de66d498fae (patch)
treea6066127a524df8d79a45bd3d2c5fbaf42892c34 /include
parent1148a796fd1311ae65f87ab7215ebe472f2a24db (diff)
Delete usage of PG_skip flag from mips64-DISCONTIG code. It was only
being used to flag mem_map entries corresponding to holes for counting and reporting during boot time. The current code reports more accurate figures, based on what is found at szmem() time (the old code was reporting more total memory than szmem() had probed).
Diffstat (limited to 'include')
-rw-r--r--include/asm-mips64/pgtable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips64/pgtable.h b/include/asm-mips64/pgtable.h
index da34c9ac1..d74d04737 100644
--- a/include/asm-mips64/pgtable.h
+++ b/include/asm-mips64/pgtable.h
@@ -529,7 +529,7 @@ extern inline pte_t mk_swap_pte(unsigned long type, unsigned long offset)
#define module_unmap vfree
/* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
-#define PageSkip(page) test_bit(PG_skip, &(page)->flags)
+#define PageSkip(page) (0)
#ifndef CONFIG_DISCONTIGMEM
#define kern_addr_valid(addr) (1)
#endif