Eliminate an unused macro.

This commit is contained in:
Alan Cox 2012-09-07 01:33:25 +00:00
parent 2a9f83af64
commit b95d8becdb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240181

View File

@ -124,13 +124,6 @@ struct md_page {
TAILQ_HEAD(,pv_entry) pv_list;
};
#define VM_MDPAGE_INIT(pg) \
do { \
TAILQ_INIT(&pg->pv_list); \
mtx_init(&(pg)->md_page.pvh_mtx, "MDPAGE Mutex", NULL, MTX_DEV);\
(pg)->mdpage.pvh_attrs = 0; \
} while (/*CONSTCOND*/0)
struct l1_ttable;
struct l2_dtable;