On 25/08/2018 06:56, Maxime Villard wrote:
Module Name:    src
Committed By:   maxv
Date:           Sat Aug 25 05:56:25 UTC 2018

Modified Files:
        src/sys/kern: subr_pool.c

Log Message:
Disable POOL_REDZONE until we figure out what's wrong. There must be a dumb
problem, that is not triggerable on amd64.


Reversed align and align_offset arguments to pool_cache_bootstrap appear to be the problem.

Nick

Index: sys/arch/arm/arm32/pmap.c
===================================================================
RCS file: /cvsroot/src/sys/arch/arm/arm32/pmap.c,v
retrieving revision 1.366
diff -u -p -r1.366 pmap.c
--- sys/arch/arm/arm32/pmap.c   31 Jul 2018 07:00:48 -0000      1.366
+++ sys/arch/arm/arm32/pmap.c   25 Aug 2018 09:47:30 -0000
@@ -6359,8 +6359,8 @@ pmap_bootstrap(vaddr_t vstart, vaddr_t v
        /*
         * Initialise the L2 descriptor table pool and cache
         */
-       pool_cache_bootstrap(&pmap_l2ptp_cache, L2_TABLE_SIZE_REAL, 0,
-           L2_TABLE_SIZE_REAL, 0, "l2ptppl", NULL, IPL_NONE,
+       pool_cache_bootstrap(&pmap_l2ptp_cache, L2_TABLE_SIZE_REAL,
+           L2_TABLE_SIZE_REAL, 0, 0, "l2ptppl", NULL, IPL_NONE,
            pmap_l2ptp_ctor, NULL, NULL);
 
        mutex_init(&memlock, MUTEX_DEFAULT, IPL_NONE);

Reply via email to