Module Name: src
Committed By: skrll
Date: Mon Aug 12 09:18:30 UTC 2019
Modified Files:
src/sys/arch/hppa/include: pmap.h
Log Message:
Use __BIT()
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 src/sys/arch/hppa/include/pmap.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/hppa/include/pmap.h
diff -u src/sys/arch/hppa/include/pmap.h:1.37 src/sys/arch/hppa/include/pmap.h:1.38
--- src/sys/arch/hppa/include/pmap.h:1.37 Mon Jan 7 16:57:28 2013
+++ src/sys/arch/hppa/include/pmap.h Mon Aug 12 09:18:30 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: pmap.h,v 1.37 2013/01/07 16:57:28 chs Exp $ */
+/* $NetBSD: pmap.h,v 1.38 2019/08/12 09:18:30 skrll Exp $ */
/* $OpenBSD: pmap.h,v 1.35 2007/12/14 18:32:23 deraadt Exp $ */
@@ -83,7 +83,7 @@ struct pv_entry { /* locked by its lis
struct pmap *pv_pmap; /* the pmap */
vaddr_t pv_va; /* the virtual address + flags */
#define PV_VAMASK (~(PAGE_SIZE - 1))
-#define PV_KENTER 0x001
+#define PV_KENTER __BIT(0)
struct vm_page *pv_ptp; /* the vm_page of the PTP */
};