summaryrefslogtreecommitdiffstats
path: root/sys/powerpc
diff options
context:
space:
mode:
authormarcel <marcel@FreeBSD.org>2009-04-24 02:55:20 +0000
committermarcel <marcel@FreeBSD.org>2009-04-24 02:55:20 +0000
commitf2a1682c40d65ca1f1dbcf3383ba75506150f0cc (patch)
treec7b815f6bfa4300bfd601759d4ce61245da7c20d /sys/powerpc
parentf0ba161c8113ff37e276f452146a946147447762 (diff)
downloadFreeBSD-src-f2a1682c40d65ca1f1dbcf3383ba75506150f0cc.zip
FreeBSD-src-f2a1682c40d65ca1f1dbcf3383ba75506150f0cc.tar.gz
Remove PTE_FAKE and PTE_ISFAKE().
Diffstat (limited to 'sys/powerpc')
-rw-r--r--sys/powerpc/include/pte.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/powerpc/include/pte.h b/sys/powerpc/include/pte.h
index af8c453..f1e5319 100644
--- a/sys/powerpc/include/pte.h
+++ b/sys/powerpc/include/pte.h
@@ -243,7 +243,6 @@ typedef struct pte pte_t;
#define PTE_MODIFIED 0x40000000 /* Modified */
#define PTE_WIRED 0x20000000 /* Wired */
#define PTE_MANAGED 0x10000000 /* Managed */
-#define PTE_FAKE 0x08000000 /* Ficticious */
#define PTE_REFERENCED 0x04000000 /* Referenced */
/* Macro argument must of pte_t type. */
@@ -251,7 +250,6 @@ typedef struct pte pte_t;
#define PTE_ISVALID(pte) ((pte)->flags & PTE_VALID)
#define PTE_ISWIRED(pte) ((pte)->flags & PTE_WIRED)
#define PTE_ISMANAGED(pte) ((pte)->flags & PTE_MANAGED)
-#define PTE_ISFAKE(pte) ((pte)->flags & PTE_FAKE)
#define PTE_ISMODIFIED(pte) ((pte)->flags & PTE_MODIFIED)
#define PTE_ISREFERENCED(pte) ((pte)->flags & PTE_REFERENCED)
OpenPOWER on IntegriCloud