From 103a7264eaf67cfdb03ffda5e9ca4535df52dd95 Mon Sep 17 00:00:00 2001 From: skrll Date: Sun, 20 Dec 2020 15:50:44 +0000 Subject: [PATCH] Remove VM_MD_TO_PAGE that was accidentally committed in 1.106. It's going to be readded with the code that uses it --- sys/uvm/uvm_page.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sys/uvm/uvm_page.h b/sys/uvm/uvm_page.h index 16715a9919f4..89dd89229d84 100644 --- a/sys/uvm/uvm_page.h +++ b/sys/uvm/uvm_page.h @@ -1,4 +1,4 @@ -/* $NetBSD: uvm_page.h,v 1.107 2020/10/07 17:51:50 chs Exp $ */ +/* $NetBSD: uvm_page.h,v 1.108 2020/12/20 15:50:44 skrll Exp $ */ /* * Copyright (c) 1997 Charles D. Cranor and Washington University. @@ -406,7 +406,6 @@ int uvm_direct_process(struct vm_page **, u_int, voff_t, vsize_t, #ifdef __HAVE_VM_PAGE_MD #define VM_PAGE_TO_MD(pg) (&(pg)->mdpage) -#define VM_MD_TO_PAGE(md) (container_of((md), struct vm_page, mdpage)) #endif /*