Author: scottph
Date: Mon Sep 21 22:20:37 2020
New Revision: 365977
URL: https://svnweb.freebsd.org/changeset/base/365977

Log:
  Move vm_page_dump bitset array definition to MI code
  
  These definitions were repeated by all architectures, with small
  variations. Consolidate the common definitons in machine
  independent code and use bitset(9) macros for manipulation. Many
  opportunities for deduplication remain in the machine dependent
  minidump logic. The only intended functional change is increasing
  the bit index type to vm_pindex_t, allowing the indexing of pages
  with address of 8 TiB and greater.
  
  Reviewed by:  kib, markj
  Approved by:  scottl (implicit)
  MFC after:    1 week
  Sponsored by: Ampere Computing, Inc.
  Differential Revision:        https://reviews.freebsd.org/D26129

Modified:
  head/.clang-format
  head/sys/amd64/amd64/minidump_machdep.c
  head/sys/amd64/include/md_var.h
  head/sys/amd64/include/vmparam.h
  head/sys/arm/arm/minidump_machdep.c
  head/sys/arm/include/md_var.h
  head/sys/arm/include/vmparam.h
  head/sys/arm64/arm64/minidump_machdep.c
  head/sys/arm64/include/md_var.h
  head/sys/arm64/include/vmparam.h
  head/sys/i386/i386/minidump_machdep.c
  head/sys/i386/i386/minidump_machdep_base.c
  head/sys/i386/include/md_var.h
  head/sys/i386/include/vmparam.h
  head/sys/mips/include/md_var.h
  head/sys/mips/include/vmparam.h
  head/sys/mips/mips/minidump_machdep.c
  head/sys/powerpc/include/md_var.h
  head/sys/powerpc/include/vmparam.h
  head/sys/powerpc/powerpc/minidump_machdep.c
  head/sys/riscv/include/md_var.h
  head/sys/riscv/include/vmparam.h
  head/sys/riscv/riscv/minidump_machdep.c
  head/sys/vm/vm_page.c
  head/sys/vm/vm_page.h
  head/sys/x86/include/x86_var.h

Modified: head/.clang-format
==============================================================================
--- head/.clang-format  Mon Sep 21 22:19:21 2020        (r365976)
+++ head/.clang-format  Mon Sep 21 22:20:37 2020        (r365977)
@@ -76,6 +76,7 @@ ForEachMacros:
   - TAILQ_FOREACH_REVERSE_SAFE
   - TAILQ_FOREACH_SAFE
   - VM_MAP_ENTRY_FOREACH
+  - VM_PAGE_DUMP_FOREACH
 IndentCaseLabels: false
 IndentPPDirectives: None
 Language: Cpp

Modified: head/sys/amd64/amd64/minidump_machdep.c
==============================================================================
--- head/sys/amd64/amd64/minidump_machdep.c     Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/amd64/amd64/minidump_machdep.c     Mon Sep 21 22:20:37 2020        
(r365977)
@@ -54,9 +54,6 @@ __FBSDID("$FreeBSD$");
 
 CTASSERT(sizeof(struct kerneldumpheader) == 512);
 
-uint64_t *vm_page_dump;
-int vm_page_dump_size;
-
 static struct kerneldumpheader kdh;
 
 /* Handle chunked writes. */
@@ -64,7 +61,6 @@ static size_t fragsz;
 static void *dump_va;
 static size_t counter, progress, dumpsize, wdog_next;
 
-CTASSERT(sizeof(*vm_page_dump) == 8);
 static int dump_retry_count = 5;
 SYSCTL_INT(_machdep, OID_AUTO, dump_retry_count, CTLFLAG_RWTUN,
     &dump_retry_count, 0, "Number of times dump has to retry before bailing 
out");
@@ -223,9 +219,8 @@ minidumpsys(struct dumperinfo *di)
        uint32_t pmapsize;
        vm_offset_t va;
        int error;
-       uint64_t bits;
        uint64_t *pml4, *pdp, *pd, *pt, pa;
-       int i, ii, j, k, n, bit;
+       int i, ii, j, k, n;
        int retry_count;
        struct minidumphdr mdhdr;
 
@@ -304,19 +299,13 @@ minidumpsys(struct dumperinfo *di)
        /* Calculate dump size. */
        dumpsize = pmapsize;
        dumpsize += round_page(msgbufp->msg_size);
-       dumpsize += round_page(vm_page_dump_size);
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = bsfq(bits);
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) + 
bit) * PAGE_SIZE;
-                       /* Clear out undumpable pages now if needed */
-                       if (is_dumpable(pa)) {
-                               dumpsize += PAGE_SIZE;
-                       } else {
-                               dump_drop_page(pa);
-                       }
-                       bits &= ~(1ul << bit);
+       dumpsize += round_page(BITSET_SIZE(vm_page_dump_pages));
+       VM_PAGE_DUMP_FOREACH(pa) {
+               /* Clear out undumpable pages now if needed */
+               if (is_dumpable(pa)) {
+                       dumpsize += PAGE_SIZE;
+               } else {
+                       dump_drop_page(pa);
                }
        }
        dumpsize += PAGE_SIZE;
@@ -328,7 +317,7 @@ minidumpsys(struct dumperinfo *di)
        strcpy(mdhdr.magic, MINIDUMP_MAGIC);
        mdhdr.version = MINIDUMP_VERSION;
        mdhdr.msgbufsize = msgbufp->msg_size;
-       mdhdr.bitmapsize = vm_page_dump_size;
+       mdhdr.bitmapsize = round_page(BITSET_SIZE(vm_page_dump_pages));
        mdhdr.pmapsize = pmapsize;
        mdhdr.kernbase = VM_MIN_KERNEL_ADDRESS;
        mdhdr.dmapbase = DMAP_MIN_ADDRESS;
@@ -357,7 +346,8 @@ minidumpsys(struct dumperinfo *di)
                goto fail;
 
        /* Dump bitmap */
-       error = blk_write(di, (char *)vm_page_dump, 0, 
round_page(vm_page_dump_size));
+       error = blk_write(di, (char *)vm_page_dump, 0,
+           round_page(BITSET_SIZE(vm_page_dump_pages)));
        if (error)
                goto fail;
 
@@ -409,16 +399,10 @@ minidumpsys(struct dumperinfo *di)
        }
 
        /* Dump memory chunks */
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = bsfq(bits);
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) + 
bit) * PAGE_SIZE;
-                       error = blk_write(di, 0, pa, PAGE_SIZE);
-                       if (error)
-                               goto fail;
-                       bits &= ~(1ul << bit);
-               }
+       VM_PAGE_DUMP_FOREACH(pa) {
+               error = blk_write(di, 0, pa, PAGE_SIZE);
+               if (error)
+                       goto fail;
        }
 
        error = blk_flush(di);
@@ -453,26 +437,4 @@ minidumpsys(struct dumperinfo *di)
        } else
                printf("** DUMP FAILED (ERROR %d) **\n", error);
        return (error);
-}
-
-void
-dump_add_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 6;          /* 2^6 = 64 */
-       bit = pa & 63;
-       atomic_set_long(&vm_page_dump[idx], 1ul << bit);
-}
-
-void
-dump_drop_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 6;          /* 2^6 = 64 */
-       bit = pa & 63;
-       atomic_clear_long(&vm_page_dump[idx], 1ul << bit);
 }

Modified: head/sys/amd64/include/md_var.h
==============================================================================
--- head/sys/amd64/include/md_var.h     Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/amd64/include/md_var.h     Mon Sep 21 22:20:37 2020        
(r365977)
@@ -36,7 +36,6 @@
 
 #include <x86/x86_var.h>
 
-extern uint64_t        *vm_page_dump;
 extern int     hw_lower_amd64_sharedpage;
 extern int     hw_ibrs_disable;
 extern int     hw_ssb_disable;

Modified: head/sys/amd64/include/vmparam.h
==============================================================================
--- head/sys/amd64/include/vmparam.h    Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/amd64/include/vmparam.h    Mon Sep 21 22:20:37 2020        
(r365977)
@@ -253,4 +253,9 @@
  */
 #define        VM_BATCHQUEUE_SIZE      31
 
+/*
+ * Need a page dump array for minidump.
+ */
+#define MINIDUMP_PAGE_TRACKING 1
+
 #endif /* _MACHINE_VMPARAM_H_ */

Modified: head/sys/arm/arm/minidump_machdep.c
==============================================================================
--- head/sys/arm/arm/minidump_machdep.c Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/arm/arm/minidump_machdep.c Mon Sep 21 22:20:37 2020        
(r365977)
@@ -57,9 +57,6 @@ __FBSDID("$FreeBSD$");
 
 CTASSERT(sizeof(struct kerneldumpheader) == 512);
 
-uint32_t *vm_page_dump;
-int vm_page_dump_size;
-
 static struct kerneldumpheader kdh;
 
 /* Handle chunked writes. */
@@ -67,8 +64,6 @@ static size_t fragsz;
 static void *dump_va;
 static uint64_t counter, progress;
 
-CTASSERT(sizeof(*vm_page_dump) == 4);
-
 static int
 is_dumpable(vm_paddr_t pa)
 {
@@ -182,10 +177,9 @@ minidumpsys(struct dumperinfo *di)
        struct minidumphdr mdhdr;
        uint64_t dumpsize;
        uint32_t ptesize;
-       uint32_t bits;
        uint32_t pa, prev_pa = 0, count = 0;
        vm_offset_t va;
-       int i, bit, error;
+       int error;
        char *addr;
 
        /*
@@ -212,20 +206,13 @@ minidumpsys(struct dumperinfo *di)
        /* Calculate dump size. */
        dumpsize = ptesize;
        dumpsize += round_page(msgbufp->msg_size);
-       dumpsize += round_page(vm_page_dump_size);
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = ffs(bits) - 1;
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) +
-                           bit) * PAGE_SIZE;
-                       /* Clear out undumpable pages now if needed */
-                       if (is_dumpable(pa))
-                               dumpsize += PAGE_SIZE;
-                       else
-                               dump_drop_page(pa);
-                       bits &= ~(1ul << bit);
-               }
+       dumpsize += round_page(BITSET_SIZE(vm_page_dump_pages));
+       VM_PAGE_DUMP_FOREACH(pa) {
+               /* Clear out undumpable pages now if needed */
+               if (is_dumpable(pa))
+                       dumpsize += PAGE_SIZE;
+               else
+                       dump_drop_page(pa);
        }
        dumpsize += PAGE_SIZE;
 
@@ -236,7 +223,7 @@ minidumpsys(struct dumperinfo *di)
        strcpy(mdhdr.magic, MINIDUMP_MAGIC);
        mdhdr.version = MINIDUMP_VERSION;
        mdhdr.msgbufsize = msgbufp->msg_size;
-       mdhdr.bitmapsize = vm_page_dump_size;
+       mdhdr.bitmapsize = round_page(BITSET_SIZE(vm_page_dump_pages));
        mdhdr.ptesize = ptesize;
        mdhdr.kernbase = KERNBASE;
        mdhdr.arch = __ARM_ARCH;
@@ -270,7 +257,7 @@ minidumpsys(struct dumperinfo *di)
 
        /* Dump bitmap */
        error = blk_write(di, (char *)vm_page_dump, 0,
-           round_page(vm_page_dump_size));
+           round_page(BITSET_SIZE(vm_page_dump_pages)));
        if (error)
                goto fail;
 
@@ -293,28 +280,21 @@ minidumpsys(struct dumperinfo *di)
        }
 
        /* Dump memory chunks */
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = ffs(bits) - 1;
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) +
-                           bit) * PAGE_SIZE;
-                       if (!count) {
-                               prev_pa = pa;
+       VM_PAGE_DUMP_FOREACH(pa) {
+               if (!count) {
+                       prev_pa = pa;
+                       count++;
+               } else {
+                       if (pa == (prev_pa + count * PAGE_SIZE))
                                count++;
-                       } else {
-                               if (pa == (prev_pa + count * PAGE_SIZE))
-                                       count++;
-                               else {
-                                       error = blk_write(di, NULL, prev_pa,
-                                           count * PAGE_SIZE);
-                                       if (error)
-                                               goto fail;
-                                       count = 1;
-                                       prev_pa = pa;
-                               }
+                       else {
+                               error = blk_write(di, NULL, prev_pa,
+                                   count * PAGE_SIZE);
+                               if (error)
+                                       goto fail;
+                               count = 1;
+                               prev_pa = pa;
                        }
-                       bits &= ~(1ul << bit);
                }
        }
        if (count) {
@@ -348,26 +328,4 @@ fail:
        } else
                printf("\n** DUMP FAILED (ERROR %d) **\n", error);
        return (error);
-}
-
-void
-dump_add_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 5;          /* 2^5 = 32 */
-       bit = pa & 31;
-       atomic_set_int(&vm_page_dump[idx], 1ul << bit);
-}
-
-void
-dump_drop_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 5;          /* 2^5 = 32 */
-       bit = pa & 31;
-       atomic_clear_int(&vm_page_dump[idx], 1ul << bit);
 }

Modified: head/sys/arm/include/md_var.h
==============================================================================
--- head/sys/arm/include/md_var.h       Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/arm/include/md_var.h       Mon Sep 21 22:20:37 2020        
(r365977)
@@ -38,8 +38,6 @@
 extern long Maxmem;
 extern char sigcode[];
 extern int szsigcode;
-extern uint32_t *vm_page_dump;
-extern int vm_page_dump_size;
 extern u_long elf_hwcap;
 extern u_long elf_hwcap2;
 extern vm_paddr_t arm_physmem_kernaddr;
@@ -72,8 +70,6 @@ extern enum cpu_class cpu_class;
 struct dumperinfo;
 extern int busdma_swi_pending;
 void busdma_swi(void);
-void dump_add_page(vm_paddr_t);
-void dump_drop_page(vm_paddr_t);
 int minidumpsys(struct dumperinfo *);
 
 extern uint32_t initial_fpscr;

Modified: head/sys/arm/include/vmparam.h
==============================================================================
--- head/sys/arm/include/vmparam.h      Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/arm/include/vmparam.h      Mon Sep 21 22:20:37 2020        
(r365977)
@@ -193,4 +193,9 @@ extern vm_offset_t vm_max_kernel_address;
 
 #define        DEVMAP_MAX_VADDR        ARM_VECTORS_HIGH
 
+/*
+ * Need a page dump array for minidump.
+ */
+#define MINIDUMP_PAGE_TRACKING 1
+
 #endif /* _MACHINE_VMPARAM_H_ */

Modified: head/sys/arm64/arm64/minidump_machdep.c
==============================================================================
--- head/sys/arm64/arm64/minidump_machdep.c     Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/arm64/arm64/minidump_machdep.c     Mon Sep 21 22:20:37 2020        
(r365977)
@@ -56,9 +56,6 @@ __FBSDID("$FreeBSD$");
 
 CTASSERT(sizeof(struct kerneldumpheader) == 512);
 
-uint64_t *vm_page_dump;
-int vm_page_dump_size;
-
 static struct kerneldumpheader kdh;
 
 /* Handle chunked writes. */
@@ -68,8 +65,6 @@ static size_t counter, progress, dumpsize;
 
 static uint64_t tmpbuffer[Ln_ENTRIES];
 
-CTASSERT(sizeof(*vm_page_dump) == 8);
-
 static int
 is_dumpable(vm_paddr_t pa)
 {
@@ -213,9 +208,8 @@ minidumpsys(struct dumperinfo *di)
        pt_entry_t *l3;
        vm_offset_t va;
        vm_paddr_t pa;
-       uint64_t bits;
        uint32_t pmapsize;
-       int bit, error, i, j, retry_count;
+       int error, i, j, retry_count;
 
        retry_count = 0;
  retry:
@@ -255,20 +249,12 @@ minidumpsys(struct dumperinfo *di)
        /* Calculate dump size. */
        dumpsize = pmapsize;
        dumpsize += round_page(msgbufp->msg_size);
-       dumpsize += round_page(vm_page_dump_size);
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = ffsl(bits) - 1;
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) +
-                           bit) * PAGE_SIZE;
-                       /* Clear out undumpable pages now if needed */
-                       if (is_dumpable(pa))
-                               dumpsize += PAGE_SIZE;
-                       else
-                               dump_drop_page(pa);
-                       bits &= ~(1ul << bit);
-               }
+       dumpsize += round_page(BITSET_SIZE(vm_page_dump_pages));
+       VM_PAGE_DUMP_FOREACH(pa) {
+               if (is_dumpable(pa))
+                       dumpsize += PAGE_SIZE;
+               else
+                       dump_drop_page(pa);
        }
        dumpsize += PAGE_SIZE;
 
@@ -279,7 +265,7 @@ minidumpsys(struct dumperinfo *di)
        strcpy(mdhdr.magic, MINIDUMP_MAGIC);
        mdhdr.version = MINIDUMP_VERSION;
        mdhdr.msgbufsize = msgbufp->msg_size;
-       mdhdr.bitmapsize = vm_page_dump_size;
+       mdhdr.bitmapsize = round_page(BITSET_SIZE(vm_page_dump_pages));
        mdhdr.pmapsize = pmapsize;
        mdhdr.kernbase = VM_MIN_KERNEL_ADDRESS;
        mdhdr.dmapphys = DMAP_MIN_PHYSADDR;
@@ -311,7 +297,7 @@ minidumpsys(struct dumperinfo *di)
 
        /* Dump bitmap */
        error = blk_write(di, (char *)vm_page_dump, 0,
-           round_page(vm_page_dump_size));
+           round_page(BITSET_SIZE(vm_page_dump_pages)));
        if (error)
                goto fail;
 
@@ -378,17 +364,10 @@ minidumpsys(struct dumperinfo *di)
        }
 
        /* Dump memory chunks */
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = ffsl(bits) - 1;
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) +
-                           bit) * PAGE_SIZE;
-                       error = blk_write(di, 0, pa, PAGE_SIZE);
-                       if (error)
-                               goto fail;
-                       bits &= ~(1ul << bit);
-               }
+       VM_PAGE_DUMP_FOREACH(pa) {
+               error = blk_write(di, 0, pa, PAGE_SIZE);
+               if (error)
+                       goto fail;
        }
 
        error = blk_flush(di);
@@ -423,26 +402,4 @@ fail:
        } else
                printf("** DUMP FAILED (ERROR %d) **\n", error);
        return (error);
-}
-
-void
-dump_add_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 6;          /* 2^6 = 64 */
-       bit = pa & 63;
-       atomic_set_long(&vm_page_dump[idx], 1ul << bit);
-}
-
-void
-dump_drop_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 6;          /* 2^6 = 64 */
-       bit = pa & 63;
-       atomic_clear_long(&vm_page_dump[idx], 1ul << bit);
 }

Modified: head/sys/arm64/include/md_var.h
==============================================================================
--- head/sys/arm64/include/md_var.h     Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/arm64/include/md_var.h     Mon Sep 21 22:20:37 2020        
(r365977)
@@ -36,8 +36,6 @@
 extern long Maxmem;
 extern char sigcode[];
 extern int szsigcode;
-extern uint64_t *vm_page_dump;
-extern int vm_page_dump_size;
 extern u_long elf_hwcap;
 extern u_long elf_hwcap2;
 
@@ -45,8 +43,6 @@ struct dumperinfo;
 
 extern int busdma_swi_pending;
 void busdma_swi(void);
-void dump_add_page(vm_paddr_t);
-void dump_drop_page(vm_paddr_t);
 int minidumpsys(struct dumperinfo *);
 void generic_bs_fault(void) __asm(__STRING(generic_bs_fault));
 void generic_bs_peek_1(void) __asm(__STRING(generic_bs_peek_1));

Modified: head/sys/arm64/include/vmparam.h
==============================================================================
--- head/sys/arm64/include/vmparam.h    Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/arm64/include/vmparam.h    Mon Sep 21 22:20:37 2020        
(r365977)
@@ -243,4 +243,9 @@ extern vm_offset_t init_pt_va;
 
 #define        DEVMAP_MAX_VADDR        VM_MAX_KERNEL_ADDRESS
 
+/*
+ * Need a page dump array for minidump.
+ */
+#define MINIDUMP_PAGE_TRACKING 1
+
 #endif /* !_MACHINE_VMPARAM_H_ */

Modified: head/sys/i386/i386/minidump_machdep.c
==============================================================================
--- head/sys/i386/i386/minidump_machdep.c       Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/i386/i386/minidump_machdep.c       Mon Sep 21 22:20:37 2020        
(r365977)
@@ -49,33 +49,6 @@ __FBSDID("$FreeBSD$");
 
 CTASSERT(sizeof(struct kerneldumpheader) == 512);
 
-uint32_t *vm_page_dump;
-int vm_page_dump_size;
-
-CTASSERT(sizeof(*vm_page_dump) == 4);
-
-void
-dump_add_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 5;          /* 2^5 = 32 */
-       bit = pa & 31;
-       atomic_set_int(&vm_page_dump[idx], 1ul << bit);
-}
-
-void
-dump_drop_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 5;          /* 2^5 = 32 */
-       bit = pa & 31;
-       atomic_clear_int(&vm_page_dump[idx], 1ul << bit);
-}
-
 int
 minidumpsys(struct dumperinfo *di)
 {

Modified: head/sys/i386/i386/minidump_machdep_base.c
==============================================================================
--- head/sys/i386/i386/minidump_machdep_base.c  Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/i386/i386/minidump_machdep_base.c  Mon Sep 21 22:20:37 2020        
(r365977)
@@ -62,8 +62,6 @@ static size_t fragsz;
 static void *dump_va;
 static uint64_t counter, progress;
 
-CTASSERT(sizeof(*vm_page_dump) == 4);
-
 static int
 is_dumpable(vm_paddr_t pa)
 {
@@ -181,11 +179,10 @@ minidumpsys(struct dumperinfo *di)
        uint32_t ptesize;
        vm_offset_t va;
        int error;
-       uint32_t bits;
        uint64_t pa;
        pd_entry_t *pd;
        pt_entry_t *pt;
-       int i, j, k, bit;
+       int j, k;
        struct minidumphdr mdhdr;
 
        counter = 0;
@@ -227,19 +224,13 @@ minidumpsys(struct dumperinfo *di)
        /* Calculate dump size. */
        dumpsize = ptesize;
        dumpsize += round_page(msgbufp->msg_size);
-       dumpsize += round_page(vm_page_dump_size);
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = bsfl(bits);
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) + 
bit) * PAGE_SIZE;
-                       /* Clear out undumpable pages now if needed */
-                       if (is_dumpable(pa)) {
-                               dumpsize += PAGE_SIZE;
-                       } else {
-                               dump_drop_page(pa);
-                       }
-                       bits &= ~(1ul << bit);
+       dumpsize += round_page(BITSET_SIZE(vm_page_dump_pages));
+       VM_PAGE_DUMP_FOREACH(pa) {
+               /* Clear out undumpable pages now if needed */
+               if (is_dumpable(pa)) {
+                       dumpsize += PAGE_SIZE;
+               } else {
+                       dump_drop_page(pa);
                }
        }
        dumpsize += PAGE_SIZE;
@@ -251,7 +242,7 @@ minidumpsys(struct dumperinfo *di)
        strcpy(mdhdr.magic, MINIDUMP_MAGIC);
        mdhdr.version = MINIDUMP_VERSION;
        mdhdr.msgbufsize = msgbufp->msg_size;
-       mdhdr.bitmapsize = vm_page_dump_size;
+       mdhdr.bitmapsize = round_page(BITSET_SIZE(vm_page_dump_pages));
        mdhdr.ptesize = ptesize;
        mdhdr.kernbase = KERNBASE;
        mdhdr.paemode = pae_mode;
@@ -279,7 +270,8 @@ minidumpsys(struct dumperinfo *di)
                goto fail;
 
        /* Dump bitmap */
-       error = blk_write(di, (char *)vm_page_dump, 0, 
round_page(vm_page_dump_size));
+       error = blk_write(di, (char *)vm_page_dump, 0,
+           round_page(BITSET_SIZE(vm_page_dump_pages)));
        if (error)
                goto fail;
 
@@ -321,16 +313,10 @@ minidumpsys(struct dumperinfo *di)
        }
 
        /* Dump memory chunks */
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = bsfl(bits);
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) + 
bit) * PAGE_SIZE;
-                       error = blk_write(di, 0, pa, PAGE_SIZE);
-                       if (error)
-                               goto fail;
-                       bits &= ~(1ul << bit);
-               }
+       VM_PAGE_DUMP_FOREACH(pa) {
+               error = blk_write(di, 0, pa, PAGE_SIZE);
+               if (error)
+                       goto fail;
        }
 
        error = blk_flush(di);

Modified: head/sys/i386/include/md_var.h
==============================================================================
--- head/sys/i386/include/md_var.h      Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/i386/include/md_var.h      Mon Sep 21 22:20:37 2020        
(r365977)
@@ -47,7 +47,6 @@ extern        int     szfreebsd4_sigcode;
 extern int     szosigcode;
 extern int     sz_lcall_tramp;
 #endif
-extern uint32_t *vm_page_dump;
 extern  vm_offset_t proc0kstack;
 extern uintptr_t setidt_disp;
 

Modified: head/sys/i386/include/vmparam.h
==============================================================================
--- head/sys/i386/include/vmparam.h     Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/i386/include/vmparam.h     Mon Sep 21 22:20:37 2020        
(r365977)
@@ -240,4 +240,9 @@
 #define        PHYS_TO_DMAP(x) ({ panic("No direct map exists"); 0; })
 #define        DMAP_TO_PHYS(x) ({ panic("No direct map exists"); 0; })
 
+/*
+ * Need a page dump array for minidump.
+ */
+#define MINIDUMP_PAGE_TRACKING 1
+
 #endif /* _MACHINE_VMPARAM_H_ */

Modified: head/sys/mips/include/md_var.h
==============================================================================
--- head/sys/mips/include/md_var.h      Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/mips/include/md_var.h      Mon Sep 21 22:20:37 2020        
(r365977)
@@ -50,8 +50,6 @@ extern        int     szsigcode;
 extern char    sigcode32[];
 extern int     szsigcode32;
 #endif
-extern uint32_t *vm_page_dump;
-extern int vm_page_dump_size;
 
 extern vm_offset_t kstack0;
 extern vm_offset_t kernel_kseg0_end;
@@ -84,8 +82,6 @@ extern int busdma_swi_pending;
 void   busdma_swi(void);
 
 struct dumperinfo;
-void   dump_add_page(vm_paddr_t);
-void   dump_drop_page(vm_paddr_t);
 int    minidumpsys(struct dumperinfo *);
 
 #endif /* !_MACHINE_MD_VAR_H_ */

Modified: head/sys/mips/include/vmparam.h
==============================================================================
--- head/sys/mips/include/vmparam.h     Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/mips/include/vmparam.h     Mon Sep 21 22:20:37 2020        
(r365977)
@@ -197,4 +197,9 @@
 #define        PHYS_TO_DMAP(x) MIPS_PHYS_TO_DIRECT(x)
 #define        DMAP_TO_PHYS(x) MIPS_DIRECT_TO_PHYS(x)
 
+/*
+ * Need a page dump array for minidump.
+ */
+#define MINIDUMP_PAGE_TRACKING 1
+
 #endif /* !_MACHINE_VMPARAM_H_ */

Modified: head/sys/mips/mips/minidump_machdep.c
==============================================================================
--- head/sys/mips/mips/minidump_machdep.c       Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/mips/mips/minidump_machdep.c       Mon Sep 21 22:20:37 2020        
(r365977)
@@ -54,9 +54,6 @@ __FBSDID("$FreeBSD$");
 
 CTASSERT(sizeof(struct kerneldumpheader) == 512);
 
-uint32_t *vm_page_dump;
-int vm_page_dump_size;
-
 static struct kerneldumpheader kdh;
 
 /* Handle chunked writes. */
@@ -66,8 +63,6 @@ static char tmpbuffer[PAGE_SIZE];
 
 extern pd_entry_t *kernel_segmap;
 
-CTASSERT(sizeof(*vm_page_dump) == 4);
-
 static int
 is_dumpable(vm_paddr_t pa)
 {
@@ -83,28 +78,6 @@ is_dumpable(vm_paddr_t pa)
        return (0);
 }
 
-void
-dump_add_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 5;          /* 2^5 = 32 */
-       bit = pa & 31;
-       atomic_set_int(&vm_page_dump[idx], 1ul << bit);
-}
-
-void
-dump_drop_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 5;          /* 2^5 = 32 */
-       bit = pa & 31;
-       atomic_clear_int(&vm_page_dump[idx], 1ul << bit);
-}
-
 static struct {
        int min_per;
        int max_per;
@@ -192,13 +165,12 @@ minidumpsys(struct dumperinfo *di)
 {
        struct minidumphdr mdhdr;
        uint32_t ptesize;
-       uint32_t bits;
        vm_paddr_t pa;
        vm_offset_t prev_pte = 0;
        uint32_t count = 0;
        vm_offset_t va;
        pt_entry_t *pte;
-       int i, bit, error;
+       int i, error;
        void *dump_va;
 
        /* Flush cache */
@@ -233,20 +205,13 @@ minidumpsys(struct dumperinfo *di)
        /* Calculate dump size. */
        dumpsize = ptesize;
        dumpsize += round_page(msgbufp->msg_size);
-       dumpsize += round_page(vm_page_dump_size);
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = ffs(bits) - 1;
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) +
-                           bit) * PAGE_SIZE;
-                       /* Clear out undumpable pages now if needed */
-                       if (is_dumpable(pa))
-                               dumpsize += PAGE_SIZE;
-                       else
-                               dump_drop_page(pa);
-                       bits &= ~(1ul << bit);
-               }
+       dumpsize += round_page(BITSET_SIZE(vm_page_dump_pages));
+       VM_PAGE_DUMP_FOREACH(pa) {
+               /* Clear out undumpable pages now if needed */
+               if (is_dumpable(pa))
+                       dumpsize += PAGE_SIZE;
+               else
+                       dump_drop_page(pa);
        }
        dumpsize += PAGE_SIZE;
 
@@ -257,7 +222,7 @@ minidumpsys(struct dumperinfo *di)
        strcpy(mdhdr.magic, MINIDUMP_MAGIC);
        mdhdr.version = MINIDUMP_VERSION;
        mdhdr.msgbufsize = msgbufp->msg_size;
-       mdhdr.bitmapsize = vm_page_dump_size;
+       mdhdr.bitmapsize = round_page(BITSET_SIZE(vm_page_dump_pages));
        mdhdr.ptesize = ptesize;
        mdhdr.kernbase = VM_MIN_KERNEL_ADDRESS;
 
@@ -286,7 +251,7 @@ minidumpsys(struct dumperinfo *di)
 
        /* Dump bitmap */
        error = write_buffer(di, (char *)vm_page_dump,
-           round_page(vm_page_dump_size));
+           round_page(BITSET_SIZE(vm_page_dump_pages)));
        if (error)
                goto fail;
 
@@ -320,19 +285,12 @@ minidumpsys(struct dumperinfo *di)
        }
 
        /* Dump memory chunks  page by page*/
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               while (bits) {
-                       bit = ffs(bits) - 1;
-                       pa = (((uint64_t)i * sizeof(*vm_page_dump) * NBBY) +
-                           bit) * PAGE_SIZE;
-                       dump_va = pmap_kenter_temporary(pa, 0);
-                       error = write_buffer(di, dump_va, PAGE_SIZE);
-                       if (error)
-                               goto fail;
-                       pmap_kenter_temporary_free(pa);
-                       bits &= ~(1ul << bit);
-               }
+       VM_PAGE_DUMP_FOREACH(pa) {
+               dump_va = pmap_kenter_temporary(pa, 0);
+               error = write_buffer(di, dump_va, PAGE_SIZE);
+               if (error)
+                       goto fail;
+               pmap_kenter_temporary_free(pa);
        }
 
        error = dump_finish(di, &kdh);

Modified: head/sys/powerpc/include/md_var.h
==============================================================================
--- head/sys/powerpc/include/md_var.h   Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/powerpc/include/md_var.h   Mon Sep 21 22:20:37 2020        
(r365977)
@@ -42,14 +42,9 @@ extern       int     szsigcode32;
 extern char    sigcode64[], sigcode64_elfv2[];
 extern int     szsigcode64, szsigcode64_elfv2;
 
-extern uint64_t        *vm_page_dump;
-extern int     vm_page_dump_size;
-
 struct dumperinfo;
 int    minidumpsys(struct dumperinfo *);
 int    is_dumpable(vm_paddr_t);
-void   dump_add_page(vm_paddr_t);
-void   dump_drop_page(vm_paddr_t);
 #endif
 
 extern long    Maxmem;

Modified: head/sys/powerpc/include/vmparam.h
==============================================================================
--- head/sys/powerpc/include/vmparam.h  Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/powerpc/include/vmparam.h  Mon Sep 21 22:20:37 2020        
(r365977)
@@ -307,6 +307,18 @@ struct pmap_physseg {
 #define        PMAP_HAS_PAGE_ARRAY     1
 #endif
 
+#if defined(__powerpc64__)
+/*
+ * Need a page dump array for minidump.
+ */
+#define MINIDUMP_PAGE_TRACKING 1
+#else
+/*
+ * No minidump with 32-bit powerpc.
+ */
+#define MINIDUMP_PAGE_TRACKING 0
+#endif
+
 #define        PMAP_HAS_DMAP   (hw_direct_map)
 #define PHYS_TO_DMAP(x) ({                                             \
        KASSERT(hw_direct_map, ("Direct map not provided by PMAP"));    \

Modified: head/sys/powerpc/powerpc/minidump_machdep.c
==============================================================================
--- head/sys/powerpc/powerpc/minidump_machdep.c Mon Sep 21 22:19:21 2020        
(r365976)
+++ head/sys/powerpc/powerpc/minidump_machdep.c Mon Sep 21 22:20:37 2020        
(r365977)
@@ -45,16 +45,6 @@
 #include <machine/md_var.h>
 #include <machine/minidump.h>
 
-/*
- * bit to physical address
- *
- * bm - bitmap
- * i - bitmap entry index
- * bit - bit number
- */
-#define BTOP(bm, i, bit) \
-       (((uint64_t)(i) * sizeof(*(bm)) * NBBY + (bit)) * PAGE_SIZE)
-
 /* Debugging stuff */
 #define        MINIDUMP_DEBUG  0
 #if    MINIDUMP_DEBUG
@@ -70,9 +60,6 @@ static void dump_total(const char *id, size_t sz);
 
 extern vm_offset_t __startkernel, __endkernel;
 
-int vm_page_dump_size;
-uint64_t *vm_page_dump;
-
 static int dump_retry_count = 5;
 SYSCTL_INT(_machdep, OID_AUTO, dump_retry_count, CTLFLAG_RWTUN,
     &dump_retry_count, 0,
@@ -103,28 +90,6 @@ static size_t counter, dumpsize, progress;
 /* Handle chunked writes. */
 static size_t fragsz;
 
-void
-dump_add_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 6;          /* 2^6 = 64 */
-       bit = pa & 63;
-       atomic_set_long(&vm_page_dump[idx], 1ul << bit);
-}
-
-void
-dump_drop_page(vm_paddr_t pa)
-{
-       int idx, bit;
-
-       pa >>= PAGE_SHIFT;
-       idx = pa >> 6;          /* 2^6 = 64 */
-       bit = pa & 63;
-       atomic_clear_long(&vm_page_dump[idx], 1ul << bit);
-}
-
 int
 is_dumpable(vm_paddr_t pa)
 {
@@ -280,9 +245,8 @@ int
 minidumpsys(struct dumperinfo *di)
 {
        vm_paddr_t pa;
-       int bit, error, i, retry_count;
+       int error, i, retry_count;
        uint32_t pmapsize;
-       uint64_t bits;
        struct minidumphdr mdhdr;
 
        retry_count = 0;
@@ -306,24 +270,14 @@ retry:
        /* Calculate dump size */
        dumpsize = PAGE_SIZE;                           /* header */
        dumpsize += round_page(msgbufp->msg_size);
-       dumpsize += round_page(vm_page_dump_size);
+       dumpsize += round_page(BITSET_SIZE(vm_page_dump_pages));
        dumpsize += pmapsize;
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               /* TODO optimize with bit manipulation instructions */
-               if (bits == 0)
-                       continue;
-               for (bit = 0; bit < 64; bit++) {
-                       if ((bits & (1ul<<bit)) == 0)
-                               continue;
-
-                       pa = BTOP(vm_page_dump, i, bit);
-                       /* Clear out undumpable pages now if needed */
-                       if (is_dumpable(pa))
-                               dumpsize += PAGE_SIZE;
-                       else
-                               dump_drop_page(pa);
-               }
+       VM_PAGE_DUMP_FOREACH(pa) {
+               /* Clear out undumpable pages now if needed */
+               if (is_dumpable(pa))
+                       dumpsize += PAGE_SIZE;
+               else
+                       dump_drop_page(pa);
        }
        progress = dumpsize;
 
@@ -333,7 +287,7 @@ retry:
        strncpy(mdhdr.mmu_name, pmap_mmu_name(), sizeof(mdhdr.mmu_name) - 1);
        mdhdr.version = MINIDUMP_VERSION;
        mdhdr.msgbufsize = msgbufp->msg_size;
-       mdhdr.bitmapsize = vm_page_dump_size;
+       mdhdr.bitmapsize = round_page(BITSET_SIZE(vm_page_dump_pages));
        mdhdr.pmapsize = pmapsize;
        mdhdr.kernbase = VM_MIN_KERNEL_ADDRESS;
        mdhdr.kernend = VM_MAX_SAFE_KERNEL_ADDRESS;
@@ -368,10 +322,10 @@ retry:
 
        /* Dump bitmap */
        error = blk_write(di, (char *)vm_page_dump, 0,
-           round_page(vm_page_dump_size));
+           round_page(BITSET_SIZE(vm_page_dump_pages)));
        if (error)
                goto fail;
-       dump_total("bitmap", round_page(vm_page_dump_size));
+       dump_total("bitmap", round_page(BITSET_SIZE(vm_page_dump_pages)));
 
        /* Dump kernel page directory pages */
        error = dump_pmap(di);
@@ -380,20 +334,10 @@ retry:
        dump_total("pmap", pmapsize);
 
        /* Dump memory chunks */
-       for (i = 0; i < vm_page_dump_size / sizeof(*vm_page_dump); i++) {
-               bits = vm_page_dump[i];
-               /* TODO optimize with bit manipulation instructions */
-               if (bits == 0)
-                       continue;
-               for (bit = 0; bit < 64; bit++) {
-                       if ((bits & (1ul<<bit)) == 0)
-                               continue;
-
-                       pa = BTOP(vm_page_dump, i, bit);
-                       error = blk_write(di, 0, pa, PAGE_SIZE);
-                       if (error)
-                               goto fail;
-               }
+       VM_PAGE_DUMP_FOREACH(pa) {
+               error = blk_write(di, 0, pa, PAGE_SIZE);
+               if (error)
+                       goto fail;
        }
 
        error = blk_flush(di);

Modified: head/sys/riscv/include/md_var.h
==============================================================================
--- head/sys/riscv/include/md_var.h     Mon Sep 21 22:19:21 2020        
(r365976)

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to