Module Name: src Committed By: ad Date: Mon Jan 13 00:26:52 UTC 2020
Modified Files: src/sys/arch/amd64/include: proc.h src/sys/arch/i386/include: proc.h Log Message: Remove now unused mdlwp fields md_gc_pmap and md_gc_ptp. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/arch/amd64/include/proc.h cvs rdiff -u -r1.46 -r1.47 src/sys/arch/i386/include/proc.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/amd64/include/proc.h diff -u src/sys/arch/amd64/include/proc.h:1.23 src/sys/arch/amd64/include/proc.h:1.24 --- src/sys/arch/amd64/include/proc.h:1.23 Sat Oct 12 06:31:03 2019 +++ src/sys/arch/amd64/include/proc.h Mon Jan 13 00:26:52 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: proc.h,v 1.23 2019/10/12 06:31:03 maxv Exp $ */ +/* $NetBSD: proc.h,v 1.24 2020/01/13 00:26:52 ad Exp $ */ /* * Copyright (c) 1991 Regents of the University of California. @@ -47,8 +47,6 @@ struct vm_page; struct mdlwp { struct trapframe *md_regs; /* registers on current frame */ - struct pmap *md_gc_pmap; /* pmap being garbage collected */ - struct vm_page *md_gc_ptp; /* pages from pmap g/c */ int md_flags; /* machine-dependent flags */ volatile int md_astpending; }; Index: src/sys/arch/i386/include/proc.h diff -u src/sys/arch/i386/include/proc.h:1.46 src/sys/arch/i386/include/proc.h:1.47 --- src/sys/arch/i386/include/proc.h:1.46 Sat Oct 12 06:31:03 2019 +++ src/sys/arch/i386/include/proc.h Mon Jan 13 00:26:52 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: proc.h,v 1.46 2019/10/12 06:31:03 maxv Exp $ */ +/* $NetBSD: proc.h,v 1.47 2020/01/13 00:26:52 ad Exp $ */ /* * Copyright (c) 1991 Regents of the University of California. @@ -49,8 +49,6 @@ struct mdlwp { struct trapframe *md_regs; /* registers on current frame */ int md_flags; /* machine-dependent flags */ volatile int md_astpending; /* AST pending for this process */ - struct pmap *md_gc_pmap; /* pmap being garbage collected */ - struct vm_page *md_gc_ptp; /* pages from pmap g/c */ }; /* md_flags */