All of lore.kernel.org
 help / color / mirror / Atom feed
* RE: makedumpfile: Fix divide by zero in print_report()
       [not found] <20190924194005.GA7666@codemonkey.org.uk>
@ 2019-09-26 18:41 ` Kazuhito Hagio
  2019-09-26 19:32   ` Dave Jones
  0 siblings, 1 reply; 6+ messages in thread
From: Kazuhito Hagio @ 2019-09-26 18:41 UTC (permalink / raw)
  To: Dave Jones; +Cc: kexec

Hi Dave,

> -----Original Message-----
> If info->max_mapnr and pfn_memhole are equal, we divide by zero when
> trying determine the 'shrinking' value.
> 
> On the system I saw this error, we arrived at this function with
> info->max_mapnr:0x0000000001080000 pfn_memhole:0x0000000001080000

Thank you for the patch.
I suppose that you see the error with the -E option, right?

It seems that the -E option has some problems with its statistics,
so I'm checking whether there is a better way to fix this.

Thanks,
Kazu

> 
> Change the code to only print out the shrinking value if it makes sense.
> 
> Signed-off-by: Dave Jones <davej@codemonkey.org.uk>
> 
> diff -wbBdu -urN makedumpfile-1.6.6/makedumpfile.c src/makedumpfile-code/makedumpfile.c
> --- makedumpfile-1.6.6/makedumpfile.c	2019-06-27 08:42:40.000000000 -0400
> +++ makedumpfile-code/makedumpfile.c	2019-09-24 15:28:06.456549495 -0400
> @@ -9778,8 +9778,6 @@
> 
>  	pfn_excluded = pfn_zero + pfn_cache + pfn_cache_private
>  	    + pfn_user + pfn_free + pfn_hwpoison + pfn_offline;
> -	shrinking = (pfn_original - pfn_excluded) * 100;
> -	shrinking = shrinking / pfn_original;
> 
>  	REPORT_MSG("\n");
>  	REPORT_MSG("Original pages  : 0x%016llx\n", pfn_original);
> @@ -9794,8 +9792,13 @@
>  	REPORT_MSG("    Offline pages           : 0x%016llx\n", pfn_offline);
>  	REPORT_MSG("  Remaining pages  : 0x%016llx\n",
>  	    pfn_original - pfn_excluded);
> -	REPORT_MSG("  (The number of pages is reduced to %lld%%.)\n",
> -	    shrinking);
> +
> +	if (pfn_original != 0) {
> +		shrinking = (pfn_original - pfn_excluded) * 100;
> +		shrinking = shrinking / pfn_original;
> +		REPORT_MSG("  (The number of pages is reduced to %lld%%.)\n",
> +		    shrinking);
> +	}
>  	REPORT_MSG("Memory Hole     : 0x%016llx\n", pfn_memhole);
>  	REPORT_MSG("--------------------------------------------------\n");
>  	REPORT_MSG("Total pages     : 0x%016llx\n", info->max_mapnr);



_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: makedumpfile: Fix divide by zero in print_report()
  2019-09-26 18:41 ` makedumpfile: Fix divide by zero in print_report() Kazuhito Hagio
@ 2019-09-26 19:32   ` Dave Jones
  2019-09-27 20:39     ` Kazuhito Hagio
  0 siblings, 1 reply; 6+ messages in thread
From: Dave Jones @ 2019-09-26 19:32 UTC (permalink / raw)
  To: Kazuhito Hagio; +Cc: kexec

On Thu, Sep 26, 2019 at 06:41:48PM +0000, Kazuhito Hagio wrote:

 > > -----Original Message-----
 > > If info->max_mapnr and pfn_memhole are equal, we divide by zero when
 > > trying determine the 'shrinking' value.
 > > 
 > > On the system I saw this error, we arrived at this function with
 > > info->max_mapnr:0x0000000001080000 pfn_memhole:0x0000000001080000
 > 
 > Thank you for the patch.
 > I suppose that you see the error with the -E option, right?
 > 
 > It seems that the -E option has some problems with its statistics,
 > so I'm checking whether there is a better way to fix this.

Yes, we use the -E option.
We manage to get useful info from the generated dump after this fix, so
it seems it only affects the statistics output.

thanks,
	Dave


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: makedumpfile: Fix divide by zero in print_report()
  2019-09-26 19:32   ` Dave Jones
@ 2019-09-27 20:39     ` Kazuhito Hagio
  2019-10-04 17:03       ` Dave Jones
  0 siblings, 1 reply; 6+ messages in thread
From: Kazuhito Hagio @ 2019-09-27 20:39 UTC (permalink / raw)
  To: Dave Jones; +Cc: kexec

> -----Original Message-----
> On Thu, Sep 26, 2019 at 06:41:48PM +0000, Kazuhito Hagio wrote:
> 
>  > > -----Original Message-----
>  > > If info->max_mapnr and pfn_memhole are equal, we divide by zero when
>  > > trying determine the 'shrinking' value.
>  > >
>  > > On the system I saw this error, we arrived at this function with
>  > > info->max_mapnr:0x0000000001080000 pfn_memhole:0x0000000001080000
>  >
>  > Thank you for the patch.
>  > I suppose that you see the error with the -E option, right?
>  >
>  > It seems that the -E option has some problems with its statistics,
>  > so I'm checking whether there is a better way to fix this.
> 
> Yes, we use the -E option.
> We manage to get useful info from the generated dump after this fix, so
> it seems it only affects the statistics output.

OK, the statistics in cyclic mode with the -E option is completely wrong
but a possible fix is likely to affect the whole of cyclic processing, so
I just cover the hole with your patch and leave the statistics problem as
a known issue at this time.  I would revisit it when I have time.

The patch was applied to the devel branch.

Thanks,
Kazu



_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: makedumpfile: Fix divide by zero in print_report()
  2019-09-27 20:39     ` Kazuhito Hagio
@ 2019-10-04 17:03       ` Dave Jones
  2019-10-07 20:13         ` Kazuhito Hagio
  0 siblings, 1 reply; 6+ messages in thread
From: Dave Jones @ 2019-10-04 17:03 UTC (permalink / raw)
  To: Kazuhito Hagio; +Cc: kexec

[-- Attachment #1: Type: text/plain, Size: 3423 bytes --]

On Fri, Sep 27, 2019 at 08:39:04PM +0000, Kazuhito Hagio wrote:
 > > -----Original Message-----
 > > On Thu, Sep 26, 2019 at 06:41:48PM +0000, Kazuhito Hagio wrote:
 > > 
 > >  > > -----Original Message-----
 > >  > > If info->max_mapnr and pfn_memhole are equal, we divide by zero when
 > >  > > trying determine the 'shrinking' value.
 > >  > >
 > >  > > On the system I saw this error, we arrived at this function with
 > >  > > info->max_mapnr:0x0000000001080000 pfn_memhole:0x0000000001080000
 > >  >
 > >  > Thank you for the patch.
 > >  > I suppose that you see the error with the -E option, right?
 > >  >
 > >  > It seems that the -E option has some problems with its statistics,
 > >  > so I'm checking whether there is a better way to fix this.
 > > 
 > > Yes, we use the -E option.
 > > We manage to get useful info from the generated dump after this fix, so
 > > it seems it only affects the statistics output.
 > 
 > OK, the statistics in cyclic mode with the -E option is completely wrong
 > but a possible fix is likely to affect the whole of cyclic processing, so
 > I just cover the hole with your patch and leave the statistics problem as
 > a known issue at this time.  I would revisit it when I have time.
 > 
 > The patch was applied to the devel branch.

While this patch does avoid the divide by zero, some further analysis
shows that there seems to be some deeper problem when we encounter this
'original pages = 0' situation.

Take a look at the attached output from makedumpfile.

Key part in the summary:

[  518.819690] Original pages  : 0x0000000000000000
[  518.828894]   Excluded pages   : 0x0000000003decd15
[  518.838635]     Pages filled with zero  : 0x00000000000210ee
[  518.849920]     Non-private cache pages : 0x000000000000271a
[  518.861218]     Private cache pages     : 0x000000000000da47
[  518.872502]     User process data pages : 0x0000000003d6bdc8
[  518.883786]     Free pages              : 0x000000000004fcfe
[  518.895070]     Hwpoison pages          : 0x0000000000000000
[  518.906356]     Offline pages           : 0x0000000000000000
[  518.917659]   Remaining pages  : 0xfffffffffc2132eb
[  518.927398] Memory Hole     : 0x0000000004080000

In this case, 'remaining pages' has gone negative which looks concerning.

And the crashdump seems corrupt:

'crash' complains:
WARNING: possibly corrupt Elf64_Nhdr: n_namesz: 2079035392 n_descsz: 3 n_type: 1000

vmcore-dmesg complains "Missing the log_buf symbol", even though the makedumpfile log
shows it was present at ffffffff822510a0

Readelf seems to think the notes sections are mangled.

# readelf -n vmcore 

Displaying notes found at file offset 0x00015468 with length 0x0000556c:
  Owner                 Data size       Description
                       0x00000007       Unknown note type: (0x727c79d4)
readelf: vmcore: Warning: Corrupt note: name size is too big: 7beb9000
  (NONE)               0x00000003       Unknown note type: (0x00001000)
readelf: vmcore: Warning: Corrupt note: name size is too big: 55a000
  (NONE)               0x00000000       Unknown note type: (0x00000000)
  (NONE)               0x00000001       Unknown note type: (0x00000007)
readelf: vmcore: Warning: note with invalid namesz and/or descsz found at offset 0x44
readelf: vmcore: Warning:  type: 0xffff8803, namesize: 0x00000000, descsize: 0x7c413000



Any thoughts on where to add additional debugging in makedumpfile ?

	Dave


[-- Attachment #2: makedumpfile.out --]
[-- Type: text/plain, Size: 173512 bytes --]

[   12.604258] sadump: does not have partition header
[   12.613825] sadump: read dump device as unknown format
[   12.624082] sadump: unknown format
[   12.630883]                phys_start         phys_end       virt_start         virt_end
[   12.647032] LOAD[ 0]          1000000          2b12000 ffffffff81000000 ffffffff82b12000
[   12.663186] LOAD[ 1]             1000            60000 ffff880000001000 ffff880000060000
[   12.679340] LOAD[ 2]            68000            a0000 ffff880000068000 ffff8800000a0000
[   12.695495] LOAD[ 3]           100000           800000 ffff880000100000 ffff880000800000
[   12.711648] LOAD[ 4]           b58000         30000000 ffff880000b58000 ffff880030000000
[   12.727802] LOAD[ 5]         38000000         78600000 ffff880038000000 ffff880078600000
[   12.743942] LOAD[ 6]        100000000       4080000000 ffff880100000000 ffff884080000000
[   12.760119] Linux kdump
[   12.765027] VMCOREINFO   :
[   12.770428]   OSRELEASE=4.16.18-197
[   12.783287]   PAGESIZE=4096
[   12.788867] page_size    : 4096
[   12.795141]   SYMBOL(init_uts_ns)=ffffffff8220e280
[   12.804692]   SYMBOL(node_online_map)=ffffffff82353e48
[   12.814934]   SYMBOL(swapper_pg_dir)=ffffffff82209000
[   12.825008]   SYMBOL(_stext)=ffffffff81000000
[   12.833689]   SYMBOL(vmap_area_list)=ffffffff82274930
[   12.843762]   SYMBOL(mem_section)=ffff88407fff6000
[   12.853311]   LENGTH(mem_section)=2048
[   12.860783]   SIZE(mem_section)=16
[   12.867560]   OFFSET(mem_section.section_mem_map)=0
[   12.877284]   SIZE(page)=64
[   12.882846]   SIZE(pglist_data)=10304
[   12.890146]   SIZE(zone)=1664
[   12.896054]   SIZE(free_area)=104
[   12.902658]   SIZE(list_head)=16
[   12.909090]   SIZE(nodemask_t)=8
[   12.915521]   OFFSET(page.flags)=0
[   12.922297]   OFFSET(page._refcount)=28
[   12.929943]   OFFSET(page.mapping)=8
[   12.937066]   OFFSET(page.lru)=32
[   12.943688]   OFFSET(page._mapcount)=24
[   12.951332]   OFFSET(page.private)=48
[   12.958647]   OFFSET(page.compound_dtor)=40
[   12.967001]   OFFSET(page.compound_order)=41
[   12.975512]   OFFSET(page.compound_head)=32
[   12.983848]   OFFSET(pglist_data.node_zones)=0
[   12.992705]   OFFSET(pglist_data.nr_zones)=9632
[   13.001737]   OFFSET(pglist_data.node_start_pfn)=9640
[   13.011807]   OFFSET(pglist_data.node_spanned_pages)=9656
[   13.022570]   OFFSET(pglist_data.node_id)=9664
[   13.031427]   OFFSET(zone.free_area)=192
[   13.039245]   OFFSET(zone.vm_stat)=1472
[   13.046889]   OFFSET(zone.spanned_pages)=112
[   13.055399]   OFFSET(free_area.free_list)=0
[   13.063737]   OFFSET(list_head.next)=0
[   13.071208]   OFFSET(list_head.prev)=8
[   13.078678]   OFFSET(vmap_area.va_start)=0
[   13.086842]   OFFSET(vmap_area.list)=48
[   13.094488]   LENGTH(zone.free_area)=11
[   13.102131]   SYMBOL(log_buf)=ffffffff822510a0
[   13.110988]   SYMBOL(log_buf_len)=ffffffff8225109c
[   13.120538]   SYMBOL(log_first_idx)=ffffffff82a9dd20
[   13.130437]   SYMBOL(clear_idx)=ffffffff82a9dcf4
[   13.139658]   SYMBOL(log_next_idx)=ffffffff82a9dd10
[   13.149382]   SIZE(printk_log)=16
[   13.155986]   OFFSET(printk_log.ts_nsec)=0
[   13.164150]   OFFSET(printk_log.len)=8
[   13.171619]   OFFSET(printk_log.text_len)=10
[   13.180129]   OFFSET(printk_log.dict_len)=12
[   13.188640]   LENGTH(free_area.free_list)=6
[   13.196978]   NUMBER(NR_FREE_PAGES)=0
[   13.204275]   NUMBER(PG_lru)=4
[   13.210358]   NUMBER(PG_private)=13
[   13.217311]   NUMBER(PG_swapcache)=10
[   13.224608]   NUMBER(PG_slab)=9
[   13.230864]   NUMBER(PG_hwpoison)=23
[   13.237989]   NUMBER(PG_head_mask)=65536
[   13.245807]   NUMBER(PAGE_BUDDY_MAPCOUNT_VALUE)=-128
[   13.255703]   NUMBER(HUGETLB_PAGE_DTOR)=2
[   13.263695]   NUMBER(phys_base)=0
[   13.270299]   SYMBOL(init_top_pgt)=ffffffff82209000
[   13.280021]   SYMBOL(node_data)=ffffffff82353280
[   13.289227]   LENGTH(node_data)=8
[   13.295829]   KERNELOFFSET=0
[   13.301568]   NUMBER(KERNEL_IMAGE_SIZE)=536870912
[   13.310944]   CRASHTIME=1570041406
[   13.317724] 
[   13.321038] phys_base    : 0 (vmcoreinfo)
[   13.329040] 
[   13.332022] max_mapnr    : 4080000
[   13.338828] 
[   13.341818] Buffer size for the cyclic mode: 4194304
[   13.351756] page_offset  : ffff880000000000 (pt_load)
[   13.361839] num of NODEs : 2
[   13.367590] Memory type  : SPARSEMEM_EX
[   13.367590] 
[   13.378450]                        mem_map        pfn_start          pfn_end
[   13.392517] mem_map[   0] ffffea0000000000                0             8000
[   13.406591] mem_map[   1] ffffea0000200000             8000            10000
[   13.420648] mem_map[   2] ffffea0000400000            10000            18000
[   13.434706] mem_map[   3] ffffea0000600000            18000            20000
[   13.448761] mem_map[   4] ffffea0000800000            20000            28000
[   13.462819] mem_map[   5] ffffea0000a00000            28000            30000
[   13.476894] mem_map[   6] ffffea0000c00000            30000            38000
[   13.490952] mem_map[   7] ffffea0000e00000            38000            40000
[   13.505007] mem_map[   8] ffffea0001000000            40000            48000
[   13.519066] mem_map[   9] ffffea0001200000            48000            50000
[   13.533124] mem_map[  10] ffffea0001400000            50000            58000
[   13.547179] mem_map[  11] ffffea0001600000            58000            60000
[   13.561237] mem_map[  12] ffffea0001800000            60000            68000
[   13.575295] mem_map[  13] ffffea0001a00000            68000            70000
[   13.589351] mem_map[  14] ffffea0001c00000            70000            78000
[   13.603409] mem_map[  15] ffffea0001e00000            78000            80000
[   13.617467] mem_map[  16]                0            80000            88000
[   13.631524] mem_map[  17]                0            88000            90000
[   13.645582] mem_map[  18]                0            90000            98000
[   13.659639] mem_map[  19]                0            98000            a0000
[   13.673697] mem_map[  20]                0            a0000            a8000
[   13.687752] mem_map[  21]                0            a8000            b0000
[   13.701810] mem_map[  22]                0            b0000            b8000
[   13.715869] mem_map[  23]                0            b8000            c0000
[   13.729925] mem_map[  24]                0            c0000            c8000
[   13.743983] mem_map[  25]                0            c8000            d0000
[   13.758041] mem_map[  26]                0            d0000            d8000
[   13.772096] mem_map[  27]                0            d8000            e0000
[   13.786153] mem_map[  28]                0            e0000            e8000
[   13.800213] mem_map[  29]                0            e8000            f0000
[   13.814268] mem_map[  30]                0            f0000            f8000
[   13.828326] mem_map[  31]                0            f8000           100000
[   13.842384] mem_map[  32] ffffea0004000000           100000           108000
[   13.856440] mem_map[  33] ffffea0004200000           108000           110000
[   13.870499] mem_map[  34] ffffea0004400000           110000           118000
[   13.884573] mem_map[  35] ffffea0004600000           118000           120000
[   13.898647] mem_map[  36] ffffea0004800000           120000           128000
[   13.912706] mem_map[  37] ffffea0004a00000           128000           130000
[   13.926762] mem_map[  38] ffffea0004c00000           130000           138000
[   13.940820] mem_map[  39] ffffea0004e00000           138000           140000
[   13.954876] mem_map[  40] ffffea0005000000           140000           148000
[   13.968933] mem_map[  41] ffffea0005200000           148000           150000
[   13.982992] mem_map[  42] ffffea0005400000           150000           158000
[   13.997064] mem_map[  43] ffffea0005600000           158000           160000
[   14.011124] mem_map[  44] ffffea0005800000           160000           168000
[   14.025181] mem_map[  45] ffffea0005a00000           168000           170000
[   14.039254] mem_map[  46] ffffea0005c00000           170000           178000
[   14.053312] mem_map[  47] ffffea0005e00000           178000           180000
[   14.067386] mem_map[  48] ffffea0006000000           180000           188000
[   14.081462] mem_map[  49] ffffea0006200000           188000           190000
[   14.095519] mem_map[  50] ffffea0006400000           190000           198000
[   14.109577] mem_map[  51] ffffea0006600000           198000           1a0000
[   14.123633] mem_map[  52] ffffea0006800000           1a0000           1a8000
[   14.137691] mem_map[  53] ffffea0006a00000           1a8000           1b0000
[   14.151749] mem_map[  54] ffffea0006c00000           1b0000           1b8000
[   14.165806] mem_map[  55] ffffea0006e00000           1b8000           1c0000
[   14.179862] mem_map[  56] ffffea0007000000           1c0000           1c8000
[   14.193921] mem_map[  57] ffffea0007200000           1c8000           1d0000
[   14.207994] mem_map[  58] ffffea0007400000           1d0000           1d8000
[   14.222069] mem_map[  59] ffffea0007600000           1d8000           1e0000
[   14.236127] mem_map[  60] ffffea0007800000           1e0000           1e8000
[   14.250200] mem_map[  61] ffffea0007a00000           1e8000           1f0000
[   14.264275] mem_map[  62] ffffea0007c00000           1f0000           1f8000
[   14.278333] mem_map[  63] ffffea0007e00000           1f8000           200000
[   14.292391] mem_map[  64] ffffea0008000000           200000           208000
[   14.306447] mem_map[  65] ffffea0008200000           208000           210000
[   14.320505] mem_map[  66] ffffea0008400000           210000           218000
[   14.334562] mem_map[  67] ffffea0008600000           218000           220000
[   14.348619] mem_map[  68] ffffea0008800000           220000           228000
[   14.362677] mem_map[  69] ffffea0008a00000           228000           230000
[   14.376735] mem_map[  70] ffffea0008c00000           230000           238000
[   14.390790] mem_map[  71] ffffea0008e00000           238000           240000
[   14.404848] mem_map[  72] ffffea0009000000           240000           248000
[   14.418906] mem_map[  73] ffffea0009200000           248000           250000
[   14.432964] mem_map[  74] ffffea0009400000           250000           258000
[   14.447021] mem_map[  75] ffffea0009600000           258000           260000
[   14.461076] mem_map[  76] ffffea0009800000           260000           268000
[   14.475134] mem_map[  77] ffffea0009a00000           268000           270000
[   14.489192] mem_map[  78] ffffea0009c00000           270000           278000
[   14.503249] mem_map[  79] ffffea0009e00000           278000           280000
[   14.517308] mem_map[  80] ffffea000a000000           280000           288000
[   14.531363] mem_map[  81] ffffea000a200000           288000           290000
[   14.545422] mem_map[  82] ffffea000a400000           290000           298000
[   14.559477] mem_map[  83] ffffea000a600000           298000           2a0000
[   14.573537] mem_map[  84] ffffea000a800000           2a0000           2a8000
[   14.587592] mem_map[  85] ffffea000aa00000           2a8000           2b0000
[   14.601650] mem_map[  86] ffffea000ac00000           2b0000           2b8000
[   14.615708] mem_map[  87] ffffea000ae00000           2b8000           2c0000
[   14.629766] mem_map[  88] ffffea000b000000           2c0000           2c8000
[   14.643823] mem_map[  89] ffffea000b200000           2c8000           2d0000
[   14.657880] mem_map[  90] ffffea000b400000           2d0000           2d8000
[   14.671938] mem_map[  91] ffffea000b600000           2d8000           2e0000
[   14.685993] mem_map[  92] ffffea000b800000           2e0000           2e8000
[   14.700051] mem_map[  93] ffffea000ba00000           2e8000           2f0000
[   14.714109] mem_map[  94] ffffea000bc00000           2f0000           2f8000
[   14.728167] mem_map[  95] ffffea000be00000           2f8000           300000
[   14.742224] mem_map[  96] ffffea000c000000           300000           308000
[   14.756280] mem_map[  97] ffffea000c200000           308000           310000
[   14.770338] mem_map[  98] ffffea000c400000           310000           318000
[   14.784395] mem_map[  99] ffffea000c600000           318000           320000
[   14.798453] mem_map[ 100] ffffea000c800000           320000           328000
[   14.812509] mem_map[ 101] ffffea000ca00000           328000           330000
[   14.826567] mem_map[ 102] ffffea000cc00000           330000           338000
[   14.840624] mem_map[ 103] ffffea000ce00000           338000           340000
[   14.854682] mem_map[ 104] ffffea000d000000           340000           348000
[   14.868739] mem_map[ 105] ffffea000d200000           348000           350000
[   14.882797] mem_map[ 106] ffffea000d400000           350000           358000
[   14.896852] mem_map[ 107] ffffea000d600000           358000           360000
[   14.910911] mem_map[ 108] ffffea000d800000           360000           368000
[   14.924969] mem_map[ 109] ffffea000da00000           368000           370000
[   14.939026] mem_map[ 110] ffffea000dc00000           370000           378000
[   14.953082] mem_map[ 111] ffffea000de00000           378000           380000
[   14.967140] mem_map[ 112] ffffea000e000000           380000           388000
[   14.981198] mem_map[ 113] ffffea000e200000           388000           390000
[   14.995255] mem_map[ 114] ffffea000e400000           390000           398000
[   15.009313] mem_map[ 115] ffffea000e600000           398000           3a0000
[   15.023387] mem_map[ 116] ffffea000e800000           3a0000           3a8000
[   15.037444] mem_map[ 117] ffffea000ea00000           3a8000           3b0000
[   15.051501] mem_map[ 118] ffffea000ec00000           3b0000           3b8000
[   15.065560] mem_map[ 119] ffffea000ee00000           3b8000           3c0000
[   15.079616] mem_map[ 120] ffffea000f000000           3c0000           3c8000
[   15.093674] mem_map[ 121] ffffea000f200000           3c8000           3d0000
[   15.107729] mem_map[ 122] ffffea000f400000           3d0000           3d8000
[   15.121787] mem_map[ 123] ffffea000f600000           3d8000           3e0000
[   15.135844] mem_map[ 124] ffffea000f800000           3e0000           3e8000
[   15.149903] mem_map[ 125] ffffea000fa00000           3e8000           3f0000
[   15.163958] mem_map[ 126] ffffea000fc00000           3f0000           3f8000
[   15.178016] mem_map[ 127] ffffea000fe00000           3f8000           400000
[   15.192073] mem_map[ 128] ffffea0010000000           400000           408000
[   15.206130] mem_map[ 129] ffffea0010200000           408000           410000
[   15.220188] mem_map[ 130] ffffea0010400000           410000           418000
[   15.234245] mem_map[ 131] ffffea0010600000           418000           420000
[   15.248304] mem_map[ 132] ffffea0010800000           420000           428000
[   15.262360] mem_map[ 133] ffffea0010a00000           428000           430000
[   15.276418] mem_map[ 134] ffffea0010c00000           430000           438000
[   15.290476] mem_map[ 135] ffffea0010e00000           438000           440000
[   15.304531] mem_map[ 136] ffffea0011000000           440000           448000
[   15.318589] mem_map[ 137] ffffea0011200000           448000           450000
[   15.332647] mem_map[ 138] ffffea0011400000           450000           458000
[   15.346704] mem_map[ 139] ffffea0011600000           458000           460000
[   15.360760] mem_map[ 140] ffffea0011800000           460000           468000
[   15.374818] mem_map[ 141] ffffea0011a00000           468000           470000
[   15.388876] mem_map[ 142] ffffea0011c00000           470000           478000
[   15.402934] mem_map[ 143] ffffea0011e00000           478000           480000
[   15.416991] mem_map[ 144] ffffea0012000000           480000           488000
[   15.431049] mem_map[ 145] ffffea0012200000           488000           490000
[   15.445105] mem_map[ 146] ffffea0012400000           490000           498000
[   15.459162] mem_map[ 147] ffffea0012600000           498000           4a0000
[   15.473221] mem_map[ 148] ffffea0012800000           4a0000           4a8000
[   15.487276] mem_map[ 149] ffffea0012a00000           4a8000           4b0000
[   15.501338] mem_map[ 150] ffffea0012c00000           4b0000           4b8000
[   15.515409] mem_map[ 151] ffffea0012e00000           4b8000           4c0000
[   15.529467] mem_map[ 152] ffffea0013000000           4c0000           4c8000
[   15.543522] mem_map[ 153] ffffea0013200000           4c8000           4d0000
[   15.557580] mem_map[ 154] ffffea0013400000           4d0000           4d8000
[   15.571638] mem_map[ 155] ffffea0013600000           4d8000           4e0000
[   15.585696] mem_map[ 156] ffffea0013800000           4e0000           4e8000
[   15.599751] mem_map[ 157] ffffea0013a00000           4e8000           4f0000
[   15.613810] mem_map[ 158] ffffea0013c00000           4f0000           4f8000
[   15.627883] mem_map[ 159] ffffea0013e00000           4f8000           500000
[   15.641942] mem_map[ 160] ffffea0014000000           500000           508000
[   15.655999] mem_map[ 161] ffffea0014200000           508000           510000
[   15.670055] mem_map[ 162] ffffea0014400000           510000           518000
[   15.684113] mem_map[ 163] ffffea0014600000           518000           520000
[   15.698171] mem_map[ 164] ffffea0014800000           520000           528000
[   15.712229] mem_map[ 165] ffffea0014a00000           528000           530000
[   15.726285] mem_map[ 166] ffffea0014c00000           530000           538000
[   15.740343] mem_map[ 167] ffffea0014e00000           538000           540000
[   15.754401] mem_map[ 168] ffffea0015000000           540000           548000
[   15.768456] mem_map[ 169] ffffea0015200000           548000           550000
[   15.782514] mem_map[ 170] ffffea0015400000           550000           558000
[   15.796571] mem_map[ 171] ffffea0015600000           558000           560000
[   15.810629] mem_map[ 172] ffffea0015800000           560000           568000
[   15.824687] mem_map[ 173] ffffea0015a00000           568000           570000
[   15.838745] mem_map[ 174] ffffea0015c00000           570000           578000
[   15.852802] mem_map[ 175] ffffea0015e00000           578000           580000
[   15.866858] mem_map[ 176] ffffea0016000000           580000           588000
[   15.880916] mem_map[ 177] ffffea0016200000           588000           590000
[   15.894974] mem_map[ 178] ffffea0016400000           590000           598000
[   15.909030] mem_map[ 179] ffffea0016600000           598000           5a0000
[   15.923088] mem_map[ 180] ffffea0016800000           5a0000           5a8000
[   15.937144] mem_map[ 181] ffffea0016a00000           5a8000           5b0000
[   15.951202] mem_map[ 182] ffffea0016c00000           5b0000           5b8000
[   15.965259] mem_map[ 183] ffffea0016e00000           5b8000           5c0000
[   15.979316] mem_map[ 184] ffffea0017000000           5c0000           5c8000
[   15.993375] mem_map[ 185] ffffea0017200000           5c8000           5d0000
[   16.007430] mem_map[ 186] ffffea0017400000           5d0000           5d8000
[   16.021488] mem_map[ 187] ffffea0017600000           5d8000           5e0000
[   16.035546] mem_map[ 188] ffffea0017800000           5e0000           5e8000
[   16.049604] mem_map[ 189] ffffea0017a00000           5e8000           5f0000
[   16.063661] mem_map[ 190] ffffea0017c00000           5f0000           5f8000
[   16.077735] mem_map[ 191] ffffea0017e00000           5f8000           600000
[   16.091792] mem_map[ 192] ffffea0018000000           600000           608000
[   16.105850] mem_map[ 193] ffffea0018200000           608000           610000
[   16.119908] mem_map[ 194] ffffea0018400000           610000           618000
[   16.133964] mem_map[ 195] ffffea0018600000           618000           620000
[   16.148021] mem_map[ 196] ffffea0018800000           620000           628000
[   16.162079] mem_map[ 197] ffffea0018a00000           628000           630000
[   16.176137] mem_map[ 198] ffffea0018c00000           630000           638000
[   16.190194] mem_map[ 199] ffffea0018e00000           638000           640000
[   16.204250] mem_map[ 200] ffffea0019000000           640000           648000
[   16.218307] mem_map[ 201] ffffea0019200000           648000           650000
[   16.232364] mem_map[ 202] ffffea0019400000           650000           658000
[   16.246425] mem_map[ 203] ffffea0019600000           658000           660000
[   16.260499] mem_map[ 204] ffffea0019800000           660000           668000
[   16.274554] mem_map[ 205] ffffea0019a00000           668000           670000
[   16.288613] mem_map[ 206] ffffea0019c00000           670000           678000
[   16.302668] mem_map[ 207] ffffea0019e00000           678000           680000
[   16.316726] mem_map[ 208] ffffea001a000000           680000           688000
[   16.330784] mem_map[ 209] ffffea001a200000           688000           690000
[   16.344842] mem_map[ 210] ffffea001a400000           690000           698000
[   16.358897] mem_map[ 211] ffffea001a600000           698000           6a0000
[   16.372954] mem_map[ 212] ffffea001a800000           6a0000           6a8000
[   16.387012] mem_map[ 213] ffffea001aa00000           6a8000           6b0000
[   16.401070] mem_map[ 214] ffffea001ac00000           6b0000           6b8000
[   16.415128] mem_map[ 215] ffffea001ae00000           6b8000           6c0000
[   16.429184] mem_map[ 216] ffffea001b000000           6c0000           6c8000
[   16.443241] mem_map[ 217] ffffea001b200000           6c8000           6d0000
[   16.457300] mem_map[ 218] ffffea001b400000           6d0000           6d8000
[   16.471358] mem_map[ 219] ffffea001b600000           6d8000           6e0000
[   16.485413] mem_map[ 220] ffffea001b800000           6e0000           6e8000
[   16.499472] mem_map[ 221] ffffea001ba00000           6e8000           6f0000
[   16.513530] mem_map[ 222] ffffea001bc00000           6f0000           6f8000
[   16.527602] mem_map[ 223] ffffea001be00000           6f8000           700000
[   16.541661] mem_map[ 224] ffffea001c000000           700000           708000
[   16.555717] mem_map[ 225] ffffea001c200000           708000           710000
[   16.569775] mem_map[ 226] ffffea001c400000           710000           718000
[   16.583833] mem_map[ 227] ffffea001c600000           718000           720000
[   16.597891] mem_map[ 228] ffffea001c800000           720000           728000
[   16.611946] mem_map[ 229] ffffea001ca00000           728000           730000
[   16.626004] mem_map[ 230] ffffea001cc00000           730000           738000
[   16.640061] mem_map[ 231] ffffea001ce00000           738000           740000
[   16.654120] mem_map[ 232] ffffea001d000000           740000           748000
[   16.668176] mem_map[ 233] ffffea001d200000           748000           750000
[   16.682233] mem_map[ 234] ffffea001d400000           750000           758000
[   16.696291] mem_map[ 235] ffffea001d600000           758000           760000
[   16.710347] mem_map[ 236] ffffea001d800000           760000           768000
[   16.724404] mem_map[ 237] ffffea001da00000           768000           770000
[   16.738462] mem_map[ 238] ffffea001dc00000           770000           778000
[   16.752520] mem_map[ 239] ffffea001de00000           778000           780000
[   16.766584] mem_map[ 240] ffffea001e000000           780000           788000
[   16.780652] mem_map[ 241] ffffea001e200000           788000           790000
[   16.794708] mem_map[ 242] ffffea001e400000           790000           798000
[   16.808766] mem_map[ 243] ffffea001e600000           798000           7a0000
[   16.822824] mem_map[ 244] ffffea001e800000           7a0000           7a8000
[   16.836882] mem_map[ 245] ffffea001ea00000           7a8000           7b0000
[   16.850939] mem_map[ 246] ffffea001ec00000           7b0000           7b8000
[   16.864994] mem_map[ 247] ffffea001ee00000           7b8000           7c0000
[   16.879053] mem_map[ 248] ffffea001f000000           7c0000           7c8000
[   16.893111] mem_map[ 249] ffffea001f200000           7c8000           7d0000
[   16.907166] mem_map[ 250] ffffea001f400000           7d0000           7d8000
[   16.921225] mem_map[ 251] ffffea001f600000           7d8000           7e0000
[   16.935283] mem_map[ 252] ffffea001f800000           7e0000           7e8000
[   16.949340] mem_map[ 253] ffffea001fa00000           7e8000           7f0000
[   16.963395] mem_map[ 254] ffffea001fc00000           7f0000           7f8000
[   16.977454] mem_map[ 255] ffffea001fe00000           7f8000           800000
[   16.991512] mem_map[ 256] ffffea0020000000           800000           808000
[   17.005567] mem_map[ 257] ffffea0020200000           808000           810000
[   17.019625] mem_map[ 258] ffffea0020400000           810000           818000
[   17.033699] mem_map[ 259] ffffea0020600000           818000           820000
[   17.047757] mem_map[ 260] ffffea0020800000           820000           828000
[   17.061815] mem_map[ 261] ffffea0020a00000           828000           830000
[   17.075889] mem_map[ 262] ffffea0020c00000           830000           838000
[   17.089947] mem_map[ 263] ffffea0020e00000           838000           840000
[   17.104005] mem_map[ 264] ffffea0021000000           840000           848000
[   17.118060] mem_map[ 265] ffffea0021200000           848000           850000
[   17.132118] mem_map[ 266] ffffea0021400000           850000           858000
[   17.146176] mem_map[ 267] ffffea0021600000           858000           860000
[   17.160234] mem_map[ 268] ffffea0021800000           860000           868000
[   17.174290] mem_map[ 269] ffffea0021a00000           868000           870000
[   17.188348] mem_map[ 270] ffffea0021c00000           870000           878000
[   17.202405] mem_map[ 271] ffffea0021e00000           878000           880000
[   17.216463] mem_map[ 272] ffffea0022000000           880000           888000
[   17.230519] mem_map[ 273] ffffea0022200000           888000           890000
[   17.244578] mem_map[ 274] ffffea0022400000           890000           898000
[   17.258633] mem_map[ 275] ffffea0022600000           898000           8a0000
[   17.272691] mem_map[ 276] ffffea0022800000           8a0000           8a8000
[   17.286750] mem_map[ 277] ffffea0022a00000           8a8000           8b0000
[   17.300807] mem_map[ 278] ffffea0022c00000           8b0000           8b8000
[   17.314863] mem_map[ 279] ffffea0022e00000           8b8000           8c0000
[   17.328921] mem_map[ 280] ffffea0023000000           8c0000           8c8000
[   17.342979] mem_map[ 281] ffffea0023200000           8c8000           8d0000
[   17.357037] mem_map[ 282] ffffea0023400000           8d0000           8d8000
[   17.371094] mem_map[ 283] ffffea0023600000           8d8000           8e0000
[   17.385150] mem_map[ 284] ffffea0023800000           8e0000           8e8000
[   17.399208] mem_map[ 285] ffffea0023a00000           8e8000           8f0000
[   17.413266] mem_map[ 286] ffffea0023c00000           8f0000           8f8000
[   17.427321] mem_map[ 287] ffffea0023e00000           8f8000           900000
[   17.441380] mem_map[ 288] ffffea0024000000           900000           908000
[   17.455435] mem_map[ 289] ffffea0024200000           908000           910000
[   17.469493] mem_map[ 290] ffffea0024400000           910000           918000
[   17.483550] mem_map[ 291] ffffea0024600000           918000           920000
[   17.497607] mem_map[ 292] ffffea0024800000           920000           928000
[   17.511665] mem_map[ 293] ffffea0024a00000           928000           930000
[   17.525722] mem_map[ 294] ffffea0024c00000           930000           938000
[   17.539780] mem_map[ 295] ffffea0024e00000           938000           940000
[   17.553837] mem_map[ 296] ffffea0025000000           940000           948000
[   17.567895] mem_map[ 297] ffffea0025200000           948000           950000
[   17.581953] mem_map[ 298] ffffea0025400000           950000           958000
[   17.596010] mem_map[ 299] ffffea0025600000           958000           960000
[   17.610066] mem_map[ 300] ffffea0025800000           960000           968000
[   17.624124] mem_map[ 301] ffffea0025a00000           968000           970000
[   17.638182] mem_map[ 302] ffffea0025c00000           970000           978000
[   17.652239] mem_map[ 303] ffffea0025e00000           978000           980000
[   17.666297] mem_map[ 304] ffffea0026000000           980000           988000
[   17.680354] mem_map[ 305] ffffea0026200000           988000           990000
[   17.694410] mem_map[ 306] ffffea0026400000           990000           998000
[   17.708467] mem_map[ 307] ffffea0026600000           998000           9a0000
[   17.722525] mem_map[ 308] ffffea0026800000           9a0000           9a8000
[   17.736581] mem_map[ 309] ffffea0026a00000           9a8000           9b0000
[   17.750639] mem_map[ 310] ffffea0026c00000           9b0000           9b8000
[   17.764697] mem_map[ 311] ffffea0026e00000           9b8000           9c0000
[   17.778755] mem_map[ 312] ffffea0027000000           9c0000           9c8000
[   17.792830] mem_map[ 313] ffffea0027200000           9c8000           9d0000
[   17.806905] mem_map[ 314] ffffea0027400000           9d0000           9d8000
[   17.820960] mem_map[ 315] ffffea0027600000           9d8000           9e0000
[   17.835018] mem_map[ 316] ffffea0027800000           9e0000           9e8000
[   17.849076] mem_map[ 317] ffffea0027a00000           9e8000           9f0000
[   17.863132] mem_map[ 318] ffffea0027c00000           9f0000           9f8000
[   17.877189] mem_map[ 319] ffffea0027e00000           9f8000           a00000
[   17.891246] mem_map[ 320] ffffea0028000000           a00000           a08000
[   17.905304] mem_map[ 321] ffffea0028200000           a08000           a10000
[   17.919361] mem_map[ 322] ffffea0028400000           a10000           a18000
[   17.933419] mem_map[ 323] ffffea0028600000           a18000           a20000
[   17.947475] mem_map[ 324] ffffea0028800000           a20000           a28000
[   17.961533] mem_map[ 325] ffffea0028a00000           a28000           a30000
[   17.975590] mem_map[ 326] ffffea0028c00000           a30000           a38000
[   17.989648] mem_map[ 327] ffffea0028e00000           a38000           a40000
[   18.003705] mem_map[ 328] ffffea0029000000           a40000           a48000
[   18.017763] mem_map[ 329] ffffea0029200000           a48000           a50000
[   18.031821] mem_map[ 330] ffffea0029400000           a50000           a58000
[   18.045878] mem_map[ 331] ffffea0029600000           a58000           a60000
[   18.059934] mem_map[ 332] ffffea0029800000           a60000           a68000
[   18.073992] mem_map[ 333] ffffea0029a00000           a68000           a70000
[   18.088050] mem_map[ 334] ffffea0029c00000           a70000           a78000
[   18.102106] mem_map[ 335] ffffea0029e00000           a78000           a80000
[   18.116164] mem_map[ 336] ffffea002a000000           a80000           a88000
[   18.130222] mem_map[ 337] ffffea002a200000           a88000           a90000
[   18.144277] mem_map[ 338] ffffea002a400000           a90000           a98000
[   18.158336] mem_map[ 339] ffffea002a600000           a98000           aa0000
[   18.172394] mem_map[ 340] ffffea002a800000           aa0000           aa8000
[   18.186449] mem_map[ 341] ffffea002aa00000           aa8000           ab0000
[   18.200507] mem_map[ 342] ffffea002ac00000           ab0000           ab8000
[   18.214565] mem_map[ 343] ffffea002ae00000           ab8000           ac0000
[   18.228622] mem_map[ 344] ffffea002b000000           ac0000           ac8000
[   18.242680] mem_map[ 345] ffffea002b200000           ac8000           ad0000
[   18.256736] mem_map[ 346] ffffea002b400000           ad0000           ad8000
[   18.270794] mem_map[ 347] ffffea002b600000           ad8000           ae0000
[   18.284851] mem_map[ 348] ffffea002b800000           ae0000           ae8000
[   18.298907] mem_map[ 349] ffffea002ba00000           ae8000           af0000
[   18.312967] mem_map[ 350] ffffea002bc00000           af0000           af8000
[   18.327022] mem_map[ 351] ffffea002be00000           af8000           b00000
[   18.341080] mem_map[ 352] ffffea002c000000           b00000           b08000
[   18.355138] mem_map[ 353] ffffea002c200000           b08000           b10000
[   18.369196] mem_map[ 354] ffffea002c400000           b10000           b18000
[   18.383269] mem_map[ 355] ffffea002c600000           b18000           b20000
[   18.397328] mem_map[ 356] ffffea002c800000           b20000           b28000
[   18.411384] mem_map[ 357] ffffea002ca00000           b28000           b30000
[   18.425443] mem_map[ 358] ffffea002cc00000           b30000           b38000
[   18.439498] mem_map[ 359] ffffea002ce00000           b38000           b40000
[   18.453556] mem_map[ 360] ffffea002d000000           b40000           b48000
[   18.467614] mem_map[ 361] ffffea002d200000           b48000           b50000
[   18.481670] mem_map[ 362] ffffea002d400000           b50000           b58000
[   18.495728] mem_map[ 363] ffffea002d600000           b58000           b60000
[   18.509803] mem_map[ 364] ffffea002d800000           b60000           b68000
[   18.523861] mem_map[ 365] ffffea002da00000           b68000           b70000
[   18.537918] mem_map[ 366] ffffea002dc00000           b70000           b78000
[   18.551975] mem_map[ 367] ffffea002de00000           b78000           b80000
[   18.566033] mem_map[ 368] ffffea002e000000           b80000           b88000
[   18.580088] mem_map[ 369] ffffea002e200000           b88000           b90000
[   18.594145] mem_map[ 370] ffffea002e400000           b90000           b98000
[   18.608203] mem_map[ 371] ffffea002e600000           b98000           ba0000
[   18.622262] mem_map[ 372] ffffea002e800000           ba0000           ba8000
[   18.636317] mem_map[ 373] ffffea002ea00000           ba8000           bb0000
[   18.650375] mem_map[ 374] ffffea002ec00000           bb0000           bb8000
[   18.664432] mem_map[ 375] ffffea002ee00000           bb8000           bc0000
[   18.678490] mem_map[ 376] ffffea002f000000           bc0000           bc8000
[   18.692547] mem_map[ 377] ffffea002f200000           bc8000           bd0000
[   18.706605] mem_map[ 378] ffffea002f400000           bd0000           bd8000
[   18.720660] mem_map[ 379] ffffea002f600000           bd8000           be0000
[   18.734718] mem_map[ 380] ffffea002f800000           be0000           be8000
[   18.748776] mem_map[ 381] ffffea002fa00000           be8000           bf0000
[   18.762834] mem_map[ 382] ffffea002fc00000           bf0000           bf8000
[   18.776891] mem_map[ 383] ffffea002fe00000           bf8000           c00000
[   18.790949] mem_map[ 384] ffffea0030000000           c00000           c08000
[   18.805005] mem_map[ 385] ffffea0030200000           c08000           c10000
[   18.819063] mem_map[ 386] ffffea0030400000           c10000           c18000
[   18.833120] mem_map[ 387] ffffea0030600000           c18000           c20000
[   18.847178] mem_map[ 388] ffffea0030800000           c20000           c28000
[   18.861252] mem_map[ 389] ffffea0030a00000           c28000           c30000
[   18.875310] mem_map[ 390] ffffea0030c00000           c30000           c38000
[   18.889368] mem_map[ 391] ffffea0030e00000           c38000           c40000
[   18.903425] mem_map[ 392] ffffea0031000000           c40000           c48000
[   18.917481] mem_map[ 393] ffffea0031200000           c48000           c50000
[   18.931539] mem_map[ 394] ffffea0031400000           c50000           c58000
[   18.945595] mem_map[ 395] ffffea0031600000           c58000           c60000
[   18.959653] mem_map[ 396] ffffea0031800000           c60000           c68000
[   18.973711] mem_map[ 397] ffffea0031a00000           c68000           c70000
[   18.987767] mem_map[ 398] ffffea0031c00000           c70000           c78000
[   19.001825] mem_map[ 399] ffffea0031e00000           c78000           c80000
[   19.015883] mem_map[ 400] ffffea0032000000           c80000           c88000
[   19.029939] mem_map[ 401] ffffea0032200000           c88000           c90000
[   19.044014] mem_map[ 402] ffffea0032400000           c90000           c98000
[   19.058072] mem_map[ 403] ffffea0032600000           c98000           ca0000
[   19.072128] mem_map[ 404] ffffea0032800000           ca0000           ca8000
[   19.086185] mem_map[ 405] ffffea0032a00000           ca8000           cb0000
[   19.100244] mem_map[ 406] ffffea0032c00000           cb0000           cb8000
[   19.114302] mem_map[ 407] ffffea0032e00000           cb8000           cc0000
[   19.128357] mem_map[ 408] ffffea0033000000           cc0000           cc8000
[   19.142414] mem_map[ 409] ffffea0033200000           cc8000           cd0000
[   19.156472] mem_map[ 410] ffffea0033400000           cd0000           cd8000
[   19.170531] mem_map[ 411] ffffea0033600000           cd8000           ce0000
[   19.184587] mem_map[ 412] ffffea0033800000           ce0000           ce8000
[   19.198644] mem_map[ 413] ffffea0033a00000           ce8000           cf0000
[   19.212702] mem_map[ 414] ffffea0033c00000           cf0000           cf8000
[   19.226760] mem_map[ 415] ffffea0033e00000           cf8000           d00000
[   19.240817] mem_map[ 416] ffffea0034000000           d00000           d08000
[   19.254875] mem_map[ 417] ffffea0034200000           d08000           d10000
[   19.268930] mem_map[ 418] ffffea0034400000           d10000           d18000
[   19.282987] mem_map[ 419] ffffea0034600000           d18000           d20000
[   19.297045] mem_map[ 420] ffffea0034800000           d20000           d28000
[   19.311104] mem_map[ 421] ffffea0034a00000           d28000           d30000
[   19.325159] mem_map[ 422] ffffea0034c00000           d30000           d38000
[   19.339217] mem_map[ 423] ffffea0034e00000           d38000           d40000
[   19.353275] mem_map[ 424] ffffea0035000000           d40000           d48000
[   19.367333] mem_map[ 425] ffffea0035200000           d48000           d50000
[   19.381390] mem_map[ 426] ffffea0035400000           d50000           d58000
[   19.395445] mem_map[ 427] ffffea0035600000           d58000           d60000
[   19.409504] mem_map[ 428] ffffea0035800000           d60000           d68000
[   19.423562] mem_map[ 429] ffffea0035a00000           d68000           d70000
[   19.437618] mem_map[ 430] ffffea0035c00000           d70000           d78000
[   19.451675] mem_map[ 431] ffffea0035e00000           d78000           d80000
[   19.465733] mem_map[ 432] ffffea0036000000           d80000           d88000
[   19.479808] mem_map[ 433] ffffea0036200000           d88000           d90000
[   19.493884] mem_map[ 434] ffffea0036400000           d90000           d98000
[   19.507957] mem_map[ 435] ffffea0036600000           d98000           da0000
[   19.522016] mem_map[ 436] ffffea0036800000           da0000           da8000
[   19.536088] mem_map[ 437] ffffea0036a00000           da8000           db0000
[   19.550147] mem_map[ 438] ffffea0036c00000           db0000           db8000
[   19.564202] mem_map[ 439] ffffea0036e00000           db8000           dc0000
[   19.578261] mem_map[ 440] ffffea0037000000           dc0000           dc8000
[   19.592318] mem_map[ 441] ffffea0037200000           dc8000           dd0000
[   19.606376] mem_map[ 442] ffffea0037400000           dd0000           dd8000
[   19.620431] mem_map[ 443] ffffea0037600000           dd8000           de0000
[   19.634489] mem_map[ 444] ffffea0037800000           de0000           de8000
[   19.648547] mem_map[ 445] ffffea0037a00000           de8000           df0000
[   19.662604] mem_map[ 446] ffffea0037c00000           df0000           df8000
[   19.676661] mem_map[ 447] ffffea0037e00000           df8000           e00000
[   19.690719] mem_map[ 448] ffffea0038000000           e00000           e08000
[   19.704777] mem_map[ 449] ffffea0038200000           e08000           e10000
[   19.718832] mem_map[ 450] ffffea0038400000           e10000           e18000
[   19.732891] mem_map[ 451] ffffea0038600000           e18000           e20000
[   19.746949] mem_map[ 452] ffffea0038800000           e20000           e28000
[   19.761004] mem_map[ 453] ffffea0038a00000           e28000           e30000
[   19.775062] mem_map[ 454] ffffea0038c00000           e30000           e38000
[   19.789119] mem_map[ 455] ffffea0038e00000           e38000           e40000
[   19.803177] mem_map[ 456] ffffea0039000000           e40000           e48000
[   19.817235] mem_map[ 457] ffffea0039200000           e48000           e50000
[   19.831292] mem_map[ 458] ffffea0039400000           e50000           e58000
[   19.845348] mem_map[ 459] ffffea0039600000           e58000           e60000
[   19.859407] mem_map[ 460] ffffea0039800000           e60000           e68000
[   19.873464] mem_map[ 461] ffffea0039a00000           e68000           e70000
[   19.887522] mem_map[ 462] ffffea0039c00000           e70000           e78000
[   19.901578] mem_map[ 463] ffffea0039e00000           e78000           e80000
[   19.915636] mem_map[ 464] ffffea003a000000           e80000           e88000
[   19.929692] mem_map[ 465] ffffea003a200000           e88000           e90000
[   19.943750] mem_map[ 466] ffffea003a400000           e90000           e98000
[   19.957806] mem_map[ 467] ffffea003a600000           e98000           ea0000
[   19.971865] mem_map[ 468] ffffea003a800000           ea0000           ea8000
[   19.985923] mem_map[ 469] ffffea003aa00000           ea8000           eb0000
[   19.999978] mem_map[ 470] ffffea003ac00000           eb0000           eb8000
[   20.014036] mem_map[ 471] ffffea003ae00000           eb8000           ec0000
[   20.028094] mem_map[ 472] ffffea003b000000           ec0000           ec8000
[   20.042151] mem_map[ 473] ffffea003b200000           ec8000           ed0000
[   20.056209] mem_map[ 474] ffffea003b400000           ed0000           ed8000
[   20.070264] mem_map[ 475] ffffea003b600000           ed8000           ee0000
[   20.084322] mem_map[ 476] ffffea003b800000           ee0000           ee8000
[   20.098381] mem_map[ 477] ffffea003ba00000           ee8000           ef0000
[   20.112437] mem_map[ 478] ffffea003bc00000           ef0000           ef8000
[   20.126495] mem_map[ 479] ffffea003be00000           ef8000           f00000
[   20.140552] mem_map[ 480] ffffea003c000000           f00000           f08000
[   20.154610] mem_map[ 481] ffffea003c200000           f08000           f10000
[   20.168668] mem_map[ 482] ffffea003c400000           f10000           f18000
[   20.182724] mem_map[ 483] ffffea003c600000           f18000           f20000
[   20.196782] mem_map[ 484] ffffea003c800000           f20000           f28000
[   20.210839] mem_map[ 485] ffffea003ca00000           f28000           f30000
[   20.224897] mem_map[ 486] ffffea003cc00000           f30000           f38000
[   20.238954] mem_map[ 487] ffffea003ce00000           f38000           f40000
[   20.253010] mem_map[ 488] ffffea003d000000           f40000           f48000
[   20.267068] mem_map[ 489] ffffea003d200000           f48000           f50000
[   20.281125] mem_map[ 490] ffffea003d400000           f50000           f58000
[   20.295183] mem_map[ 491] ffffea003d600000           f58000           f60000
[   20.309239] mem_map[ 492] ffffea003d800000           f60000           f68000
[   20.323297] mem_map[ 493] ffffea003da00000           f68000           f70000
[   20.337355] mem_map[ 494] ffffea003dc00000           f70000           f78000
[   20.351412] mem_map[ 495] ffffea003de00000           f78000           f80000
[   20.365468] mem_map[ 496] ffffea003e000000           f80000           f88000
[   20.379525] mem_map[ 497] ffffea003e200000           f88000           f90000
[   20.393583] mem_map[ 498] ffffea003e400000           f90000           f98000
[   20.407640] mem_map[ 499] ffffea003e600000           f98000           fa0000
[   20.421699] mem_map[ 500] ffffea003e800000           fa0000           fa8000
[   20.435754] mem_map[ 501] ffffea003ea00000           fa8000           fb0000
[   20.449812] mem_map[ 502] ffffea003ec00000           fb0000           fb8000
[   20.463870] mem_map[ 503] ffffea003ee00000           fb8000           fc0000
[   20.477927] mem_map[ 504] ffffea003f000000           fc0000           fc8000
[   20.491985] mem_map[ 505] ffffea003f200000           fc8000           fd0000
[   20.506042] mem_map[ 506] ffffea003f400000           fd0000           fd8000
[   20.520116] mem_map[ 507] ffffea003f600000           fd8000           fe0000
[   20.534174] mem_map[ 508] ffffea003f800000           fe0000           fe8000
[   20.548231] mem_map[ 509] ffffea003fa00000           fe8000           ff0000
[   20.562289] mem_map[ 510] ffffea003fc00000           ff0000           ff8000
[   20.576345] mem_map[ 511] ffffea003fe00000           ff8000          1000000
[   20.590402] mem_map[ 512] ffffea0040000000          1000000          1008000
[   20.604461] mem_map[ 513] ffffea0040200000          1008000          1010000
[   20.618519] mem_map[ 514] ffffea0040400000          1010000          1018000
[   20.632573] mem_map[ 515] ffffea0040600000          1018000          1020000
[   20.646632] mem_map[ 516] ffffea0040800000          1020000          1028000
[   20.660690] mem_map[ 517] ffffea0040a00000          1028000          1030000
[   20.674746] mem_map[ 518] ffffea0040c00000          1030000          1038000
[   20.688803] mem_map[ 519] ffffea0040e00000          1038000          1040000
[   20.702861] mem_map[ 520] ffffea0041000000          1040000          1048000
[   20.716919] mem_map[ 521] ffffea0041200000          1048000          1050000
[   20.730976] mem_map[ 522] ffffea0041400000          1050000          1058000
[   20.745033] mem_map[ 523] ffffea0041600000          1058000          1060000
[   20.759091] mem_map[ 524] ffffea0041800000          1060000          1068000
[   20.773146] mem_map[ 525] ffffea0041a00000          1068000          1070000
[   20.787204] mem_map[ 526] ffffea0041c00000          1070000          1078000
[   20.801262] mem_map[ 527] ffffea0041e00000          1078000          1080000
[   20.815318] mem_map[ 528] ffffea0042000000          1080000          1088000
[   20.829376] mem_map[ 529] ffffea0042200000          1088000          1090000
[   20.843435] mem_map[ 530] ffffea0042400000          1090000          1098000
[   20.857491] mem_map[ 531] ffffea0042600000          1098000          10a0000
[   20.871548] mem_map[ 532] ffffea0042800000          10a0000          10a8000
[   20.885605] mem_map[ 533] ffffea0042a00000          10a8000          10b0000
[   20.899664] mem_map[ 534] ffffea0042c00000          10b0000          10b8000
[   20.913720] mem_map[ 535] ffffea0042e00000          10b8000          10c0000
[   20.927778] mem_map[ 536] ffffea0043000000          10c0000          10c8000
[   20.941836] mem_map[ 537] ffffea0043200000          10c8000          10d0000
[   20.955893] mem_map[ 538] ffffea0043400000          10d0000          10d8000
[   20.969950] mem_map[ 539] ffffea0043600000          10d8000          10e0000
[   20.984008] mem_map[ 540] ffffea0043800000          10e0000          10e8000
[   20.998063] mem_map[ 541] ffffea0043a00000          10e8000          10f0000
[   21.012121] mem_map[ 542] ffffea0043c00000          10f0000          10f8000
[   21.026178] mem_map[ 543] ffffea0043e00000          10f8000          1100000
[   21.040236] mem_map[ 544] ffffea0044000000          1100000          1108000
[   21.054292] mem_map[ 545] ffffea0044200000          1108000          1110000
[   21.068350] mem_map[ 546] ffffea0044400000          1110000          1118000
[   21.082408] mem_map[ 547] ffffea0044600000          1118000          1120000
[   21.096466] mem_map[ 548] ffffea0044800000          1120000          1128000
[   21.110521] mem_map[ 549] ffffea0044a00000          1128000          1130000
[   21.124579] mem_map[ 550] ffffea0044c00000          1130000          1138000
[   21.138637] mem_map[ 551] ffffea0044e00000          1138000          1140000
[   21.152695] mem_map[ 552] ffffea0045000000          1140000          1148000
[   21.166753] mem_map[ 553] ffffea0045200000          1148000          1150000
[   21.180810] mem_map[ 554] ffffea0045400000          1150000          1158000
[   21.194867] mem_map[ 555] ffffea0045600000          1158000          1160000
[   21.208922] mem_map[ 556] ffffea0045800000          1160000          1168000
[   21.222981] mem_map[ 557] ffffea0045a00000          1168000          1170000
[   21.237039] mem_map[ 558] ffffea0045c00000          1170000          1178000
[   21.251094] mem_map[ 559] ffffea0045e00000          1178000          1180000
[   21.265152] mem_map[ 560] ffffea0046000000          1180000          1188000
[   21.279210] mem_map[ 561] ffffea0046200000          1188000          1190000
[   21.293268] mem_map[ 562] ffffea0046400000          1190000          1198000
[   21.307324] mem_map[ 563] ffffea0046600000          1198000          11a0000
[   21.321381] mem_map[ 564] ffffea0046800000          11a0000          11a8000
[   21.335439] mem_map[ 565] ffffea0046a00000          11a8000          11b0000
[   21.349497] mem_map[ 566] ffffea0046c00000          11b0000          11b8000
[   21.363554] mem_map[ 567] ffffea0046e00000          11b8000          11c0000
[   21.377610] mem_map[ 568] ffffea0047000000          11c0000          11c8000
[   21.391686] mem_map[ 569] ffffea0047200000          11c8000          11d0000
[   21.405743] mem_map[ 570] ffffea0047400000          11d0000          11d8000
[   21.419800] mem_map[ 571] ffffea0047600000          11d8000          11e0000
[   21.433858] mem_map[ 572] ffffea0047800000          11e0000          11e8000
[   21.447915] mem_map[ 573] ffffea0047a00000          11e8000          11f0000
[   21.461973] mem_map[ 574] ffffea0047c00000          11f0000          11f8000
[   21.476028] mem_map[ 575] ffffea0047e00000          11f8000          1200000
[   21.490086] mem_map[ 576] ffffea0048000000          1200000          1208000
[   21.504143] mem_map[ 577] ffffea0048200000          1208000          1210000
[   21.518201] mem_map[ 578] ffffea0048400000          1210000          1218000
[   21.532259] mem_map[ 579] ffffea0048600000          1218000          1220000
[   21.546317] mem_map[ 580] ffffea0048800000          1220000          1228000
[   21.560372] mem_map[ 581] ffffea0048a00000          1228000          1230000
[   21.574430] mem_map[ 582] ffffea0048c00000          1230000          1238000
[   21.588488] mem_map[ 583] ffffea0048e00000          1238000          1240000
[   21.602546] mem_map[ 584] ffffea0049000000          1240000          1248000
[   21.616601] mem_map[ 585] ffffea0049200000          1248000          1250000
[   21.630659] mem_map[ 586] ffffea0049400000          1250000          1258000
[   21.644716] mem_map[ 587] ffffea0049600000          1258000          1260000
[   21.658774] mem_map[ 588] ffffea0049800000          1260000          1268000
[   21.672831] mem_map[ 589] ffffea0049a00000          1268000          1270000
[   21.686890] mem_map[ 590] ffffea0049c00000          1270000          1278000
[   21.700945] mem_map[ 591] ffffea0049e00000          1278000          1280000
[   21.715003] mem_map[ 592] ffffea004a000000          1280000          1288000
[   21.729061] mem_map[ 593] ffffea004a200000          1288000          1290000
[   21.743117] mem_map[ 594] ffffea004a400000          1290000          1298000
[   21.757174] mem_map[ 595] ffffea004a600000          1298000          12a0000
[   21.771232] mem_map[ 596] ffffea004a800000          12a0000          12a8000
[   21.785290] mem_map[ 597] ffffea004aa00000          12a8000          12b0000
[   21.799348] mem_map[ 598] ffffea004ac00000          12b0000          12b8000
[   21.813403] mem_map[ 599] ffffea004ae00000          12b8000          12c0000
[   21.827461] mem_map[ 600] ffffea004b000000          12c0000          12c8000
[   21.841518] mem_map[ 601] ffffea004b200000          12c8000          12d0000
[   21.855577] mem_map[ 602] ffffea004b400000          12d0000          12d8000
[   21.869635] mem_map[ 603] ffffea004b600000          12d8000          12e0000
[   21.883692] mem_map[ 604] ffffea004b800000          12e0000          12e8000
[   21.897766] mem_map[ 605] ffffea004ba00000          12e8000          12f0000
[   21.911824] mem_map[ 606] ffffea004bc00000          12f0000          12f8000
[   21.925879] mem_map[ 607] ffffea004be00000          12f8000          1300000
[   21.939937] mem_map[ 608] ffffea004c000000          1300000          1308000
[   21.953996] mem_map[ 609] ffffea004c200000          1308000          1310000
[   21.968051] mem_map[ 610] ffffea004c400000          1310000          1318000
[   21.982109] mem_map[ 611] ffffea004c600000          1318000          1320000
[   21.996166] mem_map[ 612] ffffea004c800000          1320000          1328000
[   22.010224] mem_map[ 613] ffffea004ca00000          1328000          1330000
[   22.024282] mem_map[ 614] ffffea004cc00000          1330000          1338000
[   22.038339] mem_map[ 615] ffffea004ce00000          1338000          1340000
[   22.052395] mem_map[ 616] ffffea004d000000          1340000          1348000
[   22.066454] mem_map[ 617] ffffea004d200000          1348000          1350000
[   22.080511] mem_map[ 618] ffffea004d400000          1350000          1358000
[   22.094567] mem_map[ 619] ffffea004d600000          1358000          1360000
[   22.108641] mem_map[ 620] ffffea004d800000          1360000          1368000
[   22.122699] mem_map[ 621] ffffea004da00000          1368000          1370000
[   22.136757] mem_map[ 622] ffffea004dc00000          1370000          1378000
[   22.150815] mem_map[ 623] ffffea004de00000          1378000          1380000
[   22.164870] mem_map[ 624] ffffea004e000000          1380000          1388000
[   22.178928] mem_map[ 625] ffffea004e200000          1388000          1390000
[   22.192985] mem_map[ 626] ffffea004e400000          1390000          1398000
[   22.207042] mem_map[ 627] ffffea004e600000          1398000          13a0000
[   22.221100] mem_map[ 628] ffffea004e800000          13a0000          13a8000
[   22.235157] mem_map[ 629] ffffea004ea00000          13a8000          13b0000
[   22.249216] mem_map[ 630] ffffea004ec00000          13b0000          13b8000
[   22.263273] mem_map[ 631] ffffea004ee00000          13b8000          13c0000
[   22.277329] mem_map[ 632] ffffea004f000000          13c0000          13c8000
[   22.291386] mem_map[ 633] ffffea004f200000          13c8000          13d0000
[   22.305445] mem_map[ 634] ffffea004f400000          13d0000          13d8000
[   22.319500] mem_map[ 635] ffffea004f600000          13d8000          13e0000
[   22.333558] mem_map[ 636] ffffea004f800000          13e0000          13e8000
[   22.347616] mem_map[ 637] ffffea004fa00000          13e8000          13f0000
[   22.361673] mem_map[ 638] ffffea004fc00000          13f0000          13f8000
[   22.375731] mem_map[ 639] ffffea004fe00000          13f8000          1400000
[   22.389787] mem_map[ 640] ffffea0050000000          1400000          1408000
[   22.403846] mem_map[ 641] ffffea0050200000          1408000          1410000
[   22.417903] mem_map[ 642] ffffea0050400000          1410000          1418000
[   22.431959] mem_map[ 643] ffffea0050600000          1418000          1420000
[   22.446018] mem_map[ 644] ffffea0050800000          1420000          1428000
[   22.460075] mem_map[ 645] ffffea0050a00000          1428000          1430000
[   22.474131] mem_map[ 646] ffffea0050c00000          1430000          1438000
[   22.488189] mem_map[ 647] ffffea0050e00000          1438000          1440000
[   22.502245] mem_map[ 648] ffffea0051000000          1440000          1448000
[   22.516303] mem_map[ 649] ffffea0051200000          1448000          1450000
[   22.530361] mem_map[ 650] ffffea0051400000          1450000          1458000
[   22.544418] mem_map[ 651] ffffea0051600000          1458000          1460000
[   22.558476] mem_map[ 652] ffffea0051800000          1460000          1468000
[   22.572533] mem_map[ 653] ffffea0051a00000          1468000          1470000
[   22.586590] mem_map[ 654] ffffea0051c00000          1470000          1478000
[   22.600648] mem_map[ 655] ffffea0051e00000          1478000          1480000
[   22.614704] mem_map[ 656] ffffea0052000000          1480000          1488000
[   22.628762] mem_map[ 657] ffffea0052200000          1488000          1490000
[   22.642820] mem_map[ 658] ffffea0052400000          1490000          1498000
[   22.656876] mem_map[ 659] ffffea0052600000          1498000          14a0000
[   22.670933] mem_map[ 660] ffffea0052800000          14a0000          14a8000
[   22.684990] mem_map[ 661] ffffea0052a00000          14a8000          14b0000
[   22.699048] mem_map[ 662] ffffea0052c00000          14b0000          14b8000
[   22.713106] mem_map[ 663] ffffea0052e00000          14b8000          14c0000
[   22.727163] mem_map[ 664] ffffea0053000000          14c0000          14c8000
[   22.741219] mem_map[ 665] ffffea0053200000          14c8000          14d0000
[   22.755278] mem_map[ 666] ffffea0053400000          14d0000          14d8000
[   22.769336] mem_map[ 667] ffffea0053600000          14d8000          14e0000
[   22.783391] mem_map[ 668] ffffea0053800000          14e0000          14e8000
[   22.797450] mem_map[ 669] ffffea0053a00000          14e8000          14f0000
[   22.811508] mem_map[ 670] ffffea0053c00000          14f0000          14f8000
[   22.825563] mem_map[ 671] ffffea0053e00000          14f8000          1500000
[   22.839620] mem_map[ 672] ffffea0054000000          1500000          1508000
[   22.853678] mem_map[ 673] ffffea0054200000          1508000          1510000
[   22.867753] mem_map[ 674] ffffea0054400000          1510000          1518000
[   22.881811] mem_map[ 675] ffffea0054600000          1518000          1520000
[   22.895867] mem_map[ 676] ffffea0054800000          1520000          1528000
[   22.909927] mem_map[ 677] ffffea0054a00000          1528000          1530000
[   22.923982] mem_map[ 678] ffffea0054c00000          1530000          1538000
[   22.938040] mem_map[ 679] ffffea0054e00000          1538000          1540000
[   22.952096] mem_map[ 680] ffffea0055000000          1540000          1548000
[   22.966154] mem_map[ 681] ffffea0055200000          1548000          1550000
[   22.980212] mem_map[ 682] ffffea0055400000          1550000          1558000
[   22.994269] mem_map[ 683] ffffea0055600000          1558000          1560000
[   23.008327] mem_map[ 684] ffffea0055800000          1560000          1568000
[   23.022384] mem_map[ 685] ffffea0055a00000          1568000          1570000
[   23.036442] mem_map[ 686] ffffea0055c00000          1570000          1578000
[   23.050497] mem_map[ 687] ffffea0055e00000          1578000          1580000
[   23.064555] mem_map[ 688] ffffea0056000000          1580000          1588000
[   23.078612] mem_map[ 689] ffffea0056200000          1588000          1590000
[   23.092670] mem_map[ 690] ffffea0056400000          1590000          1598000
[   23.106726] mem_map[ 691] ffffea0056600000          1598000          15a0000
[   23.120784] mem_map[ 692] ffffea0056800000          15a0000          15a8000
[   23.134842] mem_map[ 693] ffffea0056a00000          15a8000          15b0000
[   23.148900] mem_map[ 694] ffffea0056c00000          15b0000          15b8000
[   23.162955] mem_map[ 695] ffffea0056e00000          15b8000          15c0000
[   23.177013] mem_map[ 696] ffffea0057000000          15c0000          15c8000
[   23.191070] mem_map[ 697] ffffea0057200000          15c8000          15d0000
[   23.205128] mem_map[ 698] ffffea0057400000          15d0000          15d8000
[   23.219186] mem_map[ 699] ffffea0057600000          15d8000          15e0000
[   23.233242] mem_map[ 700] ffffea0057800000          15e0000          15e8000
[   23.247300] mem_map[ 701] ffffea0057a00000          15e8000          15f0000
[   23.261357] mem_map[ 702] ffffea0057c00000          15f0000          15f8000
[   23.275415] mem_map[ 703] ffffea0057e00000          15f8000          1600000
[   23.289471] mem_map[ 704] ffffea0058000000          1600000          1608000
[   23.303529] mem_map[ 705] ffffea0058200000          1608000          1610000
[   23.317587] mem_map[ 706] ffffea0058400000          1610000          1618000
[   23.331645] mem_map[ 707] ffffea0058600000          1618000          1620000
[   23.345701] mem_map[ 708] ffffea0058800000          1620000          1628000
[   23.359759] mem_map[ 709] ffffea0058a00000          1628000          1630000
[   23.373816] mem_map[ 710] ffffea0058c00000          1630000          1638000
[   23.387872] mem_map[ 711] ffffea0058e00000          1638000          1640000
[   23.401930] mem_map[ 712] ffffea0059000000          1640000          1648000
[   23.415988] mem_map[ 713] ffffea0059200000          1648000          1650000
[   23.430044] mem_map[ 714] ffffea0059400000          1650000          1658000
[   23.444102] mem_map[ 715] ffffea0059600000          1658000          1660000
[   23.458159] mem_map[ 716] ffffea0059800000          1660000          1668000
[   23.472218] mem_map[ 717] ffffea0059a00000          1668000          1670000
[   23.486273] mem_map[ 718] ffffea0059c00000          1670000          1678000
[   23.500332] mem_map[ 719] ffffea0059e00000          1678000          1680000
[   23.514407] mem_map[ 720] ffffea005a000000          1680000          1688000
[   23.528462] mem_map[ 721] ffffea005a200000          1688000          1690000
[   23.542521] mem_map[ 722] ffffea005a400000          1690000          1698000
[   23.556578] mem_map[ 723] ffffea005a600000          1698000          16a0000
[   23.570653] mem_map[ 724] ffffea005a800000          16a0000          16a8000
[   23.584726] mem_map[ 725] ffffea005aa00000          16a8000          16b0000
[   23.598800] mem_map[ 726] ffffea005ac00000          16b0000          16b8000
[   23.612858] mem_map[ 727] ffffea005ae00000          16b8000          16c0000
[   23.626916] mem_map[ 728] ffffea005b000000          16c0000          16c8000
[   23.640972] mem_map[ 729] ffffea005b200000          16c8000          16d0000
[   23.655030] mem_map[ 730] ffffea005b400000          16d0000          16d8000
[   23.669107] mem_map[ 731] ffffea005b600000          16d8000          16e0000
[   23.683162] mem_map[ 732] ffffea005b800000          16e0000          16e8000
[   23.697219] mem_map[ 733] ffffea005ba00000          16e8000          16f0000
[   23.711277] mem_map[ 734] ffffea005bc00000          16f0000          16f8000
[   23.725336] mem_map[ 735] ffffea005be00000          16f8000          1700000
[   23.739394] mem_map[ 736] ffffea005c000000          1700000          1708000
[   23.753465] mem_map[ 737] ffffea005c200000          1708000          1710000
[   23.767525] mem_map[ 738] ffffea005c400000          1710000          1718000
[   23.781580] mem_map[ 739] ffffea005c600000          1718000          1720000
[   23.795637] mem_map[ 740] ffffea005c800000          1720000          1728000
[   23.809695] mem_map[ 741] ffffea005ca00000          1728000          1730000
[   23.823753] mem_map[ 742] ffffea005cc00000          1730000          1738000
[   23.837811] mem_map[ 743] ffffea005ce00000          1738000          1740000
[   23.851868] mem_map[ 744] ffffea005d000000          1740000          1748000
[   23.865924] mem_map[ 745] ffffea005d200000          1748000          1750000
[   23.879981] mem_map[ 746] ffffea005d400000          1750000          1758000
[   23.894039] mem_map[ 747] ffffea005d600000          1758000          1760000
[   23.908098] mem_map[ 748] ffffea005d800000          1760000          1768000
[   23.922156] mem_map[ 749] ffffea005da00000          1768000          1770000
[   23.936211] mem_map[ 750] ffffea005dc00000          1770000          1778000
[   23.950268] mem_map[ 751] ffffea005de00000          1778000          1780000
[   23.964326] mem_map[ 752] ffffea005e000000          1780000          1788000
[   23.978384] mem_map[ 753] ffffea005e200000          1788000          1790000
[   23.992439] mem_map[ 754] ffffea005e400000          1790000          1798000
[   24.006497] mem_map[ 755] ffffea005e600000          1798000          17a0000
[   24.020555] mem_map[ 756] ffffea005e800000          17a0000          17a8000
[   24.034611] mem_map[ 757] ffffea005ea00000          17a8000          17b0000
[   24.048670] mem_map[ 758] ffffea005ec00000          17b0000          17b8000
[   24.062727] mem_map[ 759] ffffea005ee00000          17b8000          17c0000
[   24.076783] mem_map[ 760] ffffea005f000000          17c0000          17c8000
[   24.090840] mem_map[ 761] ffffea005f200000          17c8000          17d0000
[   24.104897] mem_map[ 762] ffffea005f400000          17d0000          17d8000
[   24.118957] mem_map[ 763] ffffea005f600000          17d8000          17e0000
[   24.133014] mem_map[ 764] ffffea005f800000          17e0000          17e8000
[   24.147070] mem_map[ 765] ffffea005fa00000          17e8000          17f0000
[   24.161128] mem_map[ 766] ffffea005fc00000          17f0000          17f8000
[   24.175185] mem_map[ 767] ffffea005fe00000          17f8000          1800000
[   24.189243] mem_map[ 768] ffffea0060000000          1800000          1808000
[   24.203301] mem_map[ 769] ffffea0060200000          1808000          1810000
[   24.217356] mem_map[ 770] ffffea0060400000          1810000          1818000
[   24.231414] mem_map[ 771] ffffea0060600000          1818000          1820000
[   24.245472] mem_map[ 772] ffffea0060800000          1820000          1828000
[   24.259528] mem_map[ 773] ffffea0060a00000          1828000          1830000
[   24.273585] mem_map[ 774] ffffea0060c00000          1830000          1838000
[   24.287643] mem_map[ 775] ffffea0060e00000          1838000          1840000
[   24.301701] mem_map[ 776] ffffea0061000000          1840000          1848000
[   24.315757] mem_map[ 777] ffffea0061200000          1848000          1850000
[   24.329816] mem_map[ 778] ffffea0061400000          1850000          1858000
[   24.343872] mem_map[ 779] ffffea0061600000          1858000          1860000
[   24.357931] mem_map[ 780] ffffea0061800000          1860000          1868000
[   24.371988] mem_map[ 781] ffffea0061a00000          1868000          1870000
[   24.386043] mem_map[ 782] ffffea0061c00000          1870000          1878000
[   24.400102] mem_map[ 783] ffffea0061e00000          1878000          1880000
[   24.414160] mem_map[ 784] ffffea0062000000          1880000          1888000
[   24.428215] mem_map[ 785] ffffea0062200000          1888000          1890000
[   24.442273] mem_map[ 786] ffffea0062400000          1890000          1898000
[   24.456331] mem_map[ 787] ffffea0062600000          1898000          18a0000
[   24.470389] mem_map[ 788] ffffea0062800000          18a0000          18a8000
[   24.484444] mem_map[ 789] ffffea0062a00000          18a8000          18b0000
[   24.498502] mem_map[ 790] ffffea0062c00000          18b0000          18b8000
[   24.512560] mem_map[ 791] ffffea0062e00000          18b8000          18c0000
[   24.526616] mem_map[ 792] ffffea0063000000          18c0000          18c8000
[   24.540675] mem_map[ 793] ffffea0063200000          18c8000          18d0000
[   24.554732] mem_map[ 794] ffffea0063400000          18d0000          18d8000
[   24.568790] mem_map[ 795] ffffea0063600000          18d8000          18e0000
[   24.582846] mem_map[ 796] ffffea0063800000          18e0000          18e8000
[   24.596903] mem_map[ 797] ffffea0063a00000          18e8000          18f0000
[   24.610961] mem_map[ 798] ffffea0063c00000          18f0000          18f8000
[   24.625019] mem_map[ 799] ffffea0063e00000          18f8000          1900000
[   24.639077] mem_map[ 800] ffffea0064000000          1900000          1908000
[   24.653132] mem_map[ 801] ffffea0064200000          1908000          1910000
[   24.667191] mem_map[ 802] ffffea0064400000          1910000          1918000
[   24.681246] mem_map[ 803] ffffea0064600000          1918000          1920000
[   24.695304] mem_map[ 804] ffffea0064800000          1920000          1928000
[   24.709363] mem_map[ 805] ffffea0064a00000          1928000          1930000
[   24.723420] mem_map[ 806] ffffea0064c00000          1930000          1938000
[   24.737478] mem_map[ 807] ffffea0064e00000          1938000          1940000
[   24.751533] mem_map[ 808] ffffea0065000000          1940000          1948000
[   24.765590] mem_map[ 809] ffffea0065200000          1948000          1950000
[   24.779649] mem_map[ 810] ffffea0065400000          1950000          1958000
[   24.793707] mem_map[ 811] ffffea0065600000          1958000          1960000
[   24.807763] mem_map[ 812] ffffea0065800000          1960000          1968000
[   24.821821] mem_map[ 813] ffffea0065a00000          1968000          1970000
[   24.835877] mem_map[ 814] ffffea0065c00000          1970000          1978000
[   24.849935] mem_map[ 815] ffffea0065e00000          1978000          1980000
[   24.863993] mem_map[ 816] ffffea0066000000          1980000          1988000
[   24.878050] mem_map[ 817] ffffea0066200000          1988000          1990000
[   24.892106] mem_map[ 818] ffffea0066400000          1990000          1998000
[   24.906164] mem_map[ 819] ffffea0066600000          1998000          19a0000
[   24.920223] mem_map[ 820] ffffea0066800000          19a0000          19a8000
[   24.934279] mem_map[ 821] ffffea0066a00000          19a8000          19b0000
[   24.948337] mem_map[ 822] ffffea0066c00000          19b0000          19b8000
[   24.962394] mem_map[ 823] ffffea0066e00000          19b8000          19c0000
[   24.976450] mem_map[ 824] ffffea0067000000          19c0000          19c8000
[   24.990508] mem_map[ 825] ffffea0067200000          19c8000          19d0000
[   25.004566] mem_map[ 826] ffffea0067400000          19d0000          19d8000
[   25.018622] mem_map[ 827] ffffea0067600000          19d8000          19e0000
[   25.032680] mem_map[ 828] ffffea0067800000          19e0000          19e8000
[   25.046738] mem_map[ 829] ffffea0067a00000          19e8000          19f0000
[   25.060793] mem_map[ 830] ffffea0067c00000          19f0000          19f8000
[   25.074851] mem_map[ 831] ffffea0067e00000          19f8000          1a00000
[   25.088908] mem_map[ 832] ffffea0068000000          1a00000          1a08000
[   25.102966] mem_map[ 833] ffffea0068200000          1a08000          1a10000
[   25.117023] mem_map[ 834] ffffea0068400000          1a10000          1a18000
[   25.131081] mem_map[ 835] ffffea0068600000          1a18000          1a20000
[   25.145139] mem_map[ 836] ffffea0068800000          1a20000          1a28000
[   25.159196] mem_map[ 837] ffffea0068a00000          1a28000          1a30000
[   25.173252] mem_map[ 838] ffffea0068c00000          1a30000          1a38000
[   25.187310] mem_map[ 839] ffffea0068e00000          1a38000          1a40000
[   25.201368] mem_map[ 840] ffffea0069000000          1a40000          1a48000
[   25.215425] mem_map[ 841] ffffea0069200000          1a48000          1a50000
[   25.229482] mem_map[ 842] ffffea0069400000          1a50000          1a58000
[   25.243538] mem_map[ 843] ffffea0069600000          1a58000          1a60000
[   25.257598] mem_map[ 844] ffffea0069800000          1a60000          1a68000
[   25.271653] mem_map[ 845] ffffea0069a00000          1a68000          1a70000
[   25.285711] mem_map[ 846] ffffea0069c00000          1a70000          1a78000
[   25.299768] mem_map[ 847] ffffea0069e00000          1a78000          1a80000
[   25.313826] mem_map[ 848] ffffea006a000000          1a80000          1a88000
[   25.327881] mem_map[ 849] ffffea006a200000          1a88000          1a90000
[   25.341939] mem_map[ 850] ffffea006a400000          1a90000          1a98000
[   25.355997] mem_map[ 851] ffffea006a600000          1a98000          1aa0000
[   25.370055] mem_map[ 852] ffffea006a800000          1aa0000          1aa8000
[   25.384111] mem_map[ 853] ffffea006aa00000          1aa8000          1ab0000
[   25.398169] mem_map[ 854] ffffea006ac00000          1ab0000          1ab8000
[   25.412226] mem_map[ 855] ffffea006ae00000          1ab8000          1ac0000
[   25.426285] mem_map[ 856] ffffea006b000000          1ac0000          1ac8000
[   25.440340] mem_map[ 857] ffffea006b200000          1ac8000          1ad0000
[   25.454398] mem_map[ 858] ffffea006b400000          1ad0000          1ad8000
[   25.468455] mem_map[ 859] ffffea006b600000          1ad8000          1ae0000
[   25.482513] mem_map[ 860] ffffea006b800000          1ae0000          1ae8000
[   25.496571] mem_map[ 861] ffffea006ba00000          1ae8000          1af0000
[   25.510629] mem_map[ 862] ffffea006bc00000          1af0000          1af8000
[   25.524685] mem_map[ 863] ffffea006be00000          1af8000          1b00000
[   25.538743] mem_map[ 864] ffffea006c000000          1b00000          1b08000
[   25.552801] mem_map[ 865] ffffea006c200000          1b08000          1b10000
[   25.566857] mem_map[ 866] ffffea006c400000          1b10000          1b18000
[   25.580915] mem_map[ 867] ffffea006c600000          1b18000          1b20000
[   25.594970] mem_map[ 868] ffffea006c800000          1b20000          1b28000
[   25.609028] mem_map[ 869] ffffea006ca00000          1b28000          1b30000
[   25.623087] mem_map[ 870] ffffea006cc00000          1b30000          1b38000
[   25.637142] mem_map[ 871] ffffea006ce00000          1b38000          1b40000
[   25.651199] mem_map[ 872] ffffea006d000000          1b40000          1b48000
[   25.665257] mem_map[ 873] ffffea006d200000          1b48000          1b50000
[   25.679315] mem_map[ 874] ffffea006d400000          1b50000          1b58000
[   25.693373] mem_map[ 875] ffffea006d600000          1b58000          1b60000
[   25.707431] mem_map[ 876] ffffea006d800000          1b60000          1b68000
[   25.721486] mem_map[ 877] ffffea006da00000          1b68000          1b70000
[   25.735544] mem_map[ 878] ffffea006dc00000          1b70000          1b78000
[   25.749601] mem_map[ 879] ffffea006de00000          1b78000          1b80000
[   25.763659] mem_map[ 880] ffffea006e000000          1b80000          1b88000
[   25.777717] mem_map[ 881] ffffea006e200000          1b88000          1b90000
[   25.791774] mem_map[ 882] ffffea006e400000          1b90000          1b98000
[   25.805831] mem_map[ 883] ffffea006e600000          1b98000          1ba0000
[   25.819888] mem_map[ 884] ffffea006e800000          1ba0000          1ba8000
[   25.833963] mem_map[ 885] ffffea006ea00000          1ba8000          1bb0000
[   25.848019] mem_map[ 886] ffffea006ec00000          1bb0000          1bb8000
[   25.862077] mem_map[ 887] ffffea006ee00000          1bb8000          1bc0000
[   25.876135] mem_map[ 888] ffffea006f000000          1bc0000          1bc8000
[   25.890190] mem_map[ 889] ffffea006f200000          1bc8000          1bd0000
[   25.904249] mem_map[ 890] ffffea006f400000          1bd0000          1bd8000
[   25.918308] mem_map[ 891] ffffea006f600000          1bd8000          1be0000
[   25.932364] mem_map[ 892] ffffea006f800000          1be0000          1be8000
[   25.946422] mem_map[ 893] ffffea006fa00000          1be8000          1bf0000
[   25.960479] mem_map[ 894] ffffea006fc00000          1bf0000          1bf8000
[   25.974535] mem_map[ 895] ffffea006fe00000          1bf8000          1c00000
[   25.988593] mem_map[ 896] ffffea0070000000          1c00000          1c08000
[   26.002651] mem_map[ 897] ffffea0070200000          1c08000          1c10000
[   26.016706] mem_map[ 898] ffffea0070400000          1c10000          1c18000
[   26.030764] mem_map[ 899] ffffea0070600000          1c18000          1c20000
[   26.044823] mem_map[ 900] ffffea0070800000          1c20000          1c28000
[   26.058897] mem_map[ 901] ffffea0070a00000          1c28000          1c30000
[   26.072955] mem_map[ 902] ffffea0070c00000          1c30000          1c38000
[   26.087010] mem_map[ 903] ffffea0070e00000          1c38000          1c40000
[   26.101068] mem_map[ 904] ffffea0071000000          1c40000          1c48000
[   26.115126] mem_map[ 905] ffffea0071200000          1c48000          1c50000
[   26.129184] mem_map[ 906] ffffea0071400000          1c50000          1c58000
[   26.143240] mem_map[ 907] ffffea0071600000          1c58000          1c60000
[   26.157298] mem_map[ 908] ffffea0071800000          1c60000          1c68000
[   26.171355] mem_map[ 909] ffffea0071a00000          1c68000          1c70000
[   26.185412] mem_map[ 910] ffffea0071c00000          1c70000          1c78000
[   26.199470] mem_map[ 911] ffffea0071e00000          1c78000          1c80000
[   26.213528] mem_map[ 912] ffffea0072000000          1c80000          1c88000
[   26.227584] mem_map[ 913] ffffea0072200000          1c88000          1c90000
[   26.241641] mem_map[ 914] ffffea0072400000          1c90000          1c98000
[   26.255699] mem_map[ 915] ffffea0072600000          1c98000          1ca0000
[   26.269757] mem_map[ 916] ffffea0072800000          1ca0000          1ca8000
[   26.283813] mem_map[ 917] ffffea0072a00000          1ca8000          1cb0000
[   26.297887] mem_map[ 918] ffffea0072c00000          1cb0000          1cb8000
[   26.311944] mem_map[ 919] ffffea0072e00000          1cb8000          1cc0000
[   26.326002] mem_map[ 920] ffffea0073000000          1cc0000          1cc8000
[   26.340059] mem_map[ 921] ffffea0073200000          1cc8000          1cd0000
[   26.354117] mem_map[ 922] ffffea0073400000          1cd0000          1cd8000
[   26.368174] mem_map[ 923] ffffea0073600000          1cd8000          1ce0000
[   26.382230] mem_map[ 924] ffffea0073800000          1ce0000          1ce8000
[   26.396288] mem_map[ 925] ffffea0073a00000          1ce8000          1cf0000
[   26.410346] mem_map[ 926] ffffea0073c00000          1cf0000          1cf8000
[   26.424405] mem_map[ 927] ffffea0073e00000          1cf8000          1d00000
[   26.438462] mem_map[ 928] ffffea0074000000          1d00000          1d08000
[   26.452517] mem_map[ 929] ffffea0074200000          1d08000          1d10000
[   26.466575] mem_map[ 930] ffffea0074400000          1d10000          1d18000
[   26.480632] mem_map[ 931] ffffea0074600000          1d18000          1d20000
[   26.494690] mem_map[ 932] ffffea0074800000          1d20000          1d28000
[   26.508746] mem_map[ 933] ffffea0074a00000          1d28000          1d30000
[   26.522805] mem_map[ 934] ffffea0074c00000          1d30000          1d38000
[   26.536863] mem_map[ 935] ffffea0074e00000          1d38000          1d40000
[   26.550918] mem_map[ 936] ffffea0075000000          1d40000          1d48000
[   26.564977] mem_map[ 937] ffffea0075200000          1d48000          1d50000
[   26.579034] mem_map[ 938] ffffea0075400000          1d50000          1d58000
[   26.593090] mem_map[ 939] ffffea0075600000          1d58000          1d60000
[   26.607148] mem_map[ 940] ffffea0075800000          1d60000          1d68000
[   26.621206] mem_map[ 941] ffffea0075a00000          1d68000          1d70000
[   26.635264] mem_map[ 942] ffffea0075c00000          1d70000          1d78000
[   26.649319] mem_map[ 943] ffffea0075e00000          1d78000          1d80000
[   26.663377] mem_map[ 944] ffffea0076000000          1d80000          1d88000
[   26.677435] mem_map[ 945] ffffea0076200000          1d88000          1d90000
[   26.691493] mem_map[ 946] ffffea0076400000          1d90000          1d98000
[   26.705549] mem_map[ 947] ffffea0076600000          1d98000          1da0000
[   26.719606] mem_map[ 948] ffffea0076800000          1da0000          1da8000
[   26.733664] mem_map[ 949] ffffea0076a00000          1da8000          1db0000
[   26.747722] mem_map[ 950] ffffea0076c00000          1db0000          1db8000
[   26.761778] mem_map[ 951] ffffea0076e00000          1db8000          1dc0000
[   26.775836] mem_map[ 952] ffffea0077000000          1dc0000          1dc8000
[   26.789893] mem_map[ 953] ffffea0077200000          1dc8000          1dd0000
[   26.803951] mem_map[ 954] ffffea0077400000          1dd0000          1dd8000
[   26.818008] mem_map[ 955] ffffea0077600000          1dd8000          1de0000
[   26.832064] mem_map[ 956] ffffea0077800000          1de0000          1de8000
[   26.846122] mem_map[ 957] ffffea0077a00000          1de8000          1df0000
[   26.860180] mem_map[ 958] ffffea0077c00000          1df0000          1df8000
[   26.874236] mem_map[ 959] ffffea0077e00000          1df8000          1e00000
[   26.888293] mem_map[ 960] ffffea0078000000          1e00000          1e08000
[   26.902352] mem_map[ 961] ffffea0078200000          1e08000          1e10000
[   26.916409] mem_map[ 962] ffffea0078400000          1e10000          1e18000
[   26.930467] mem_map[ 963] ffffea0078600000          1e18000          1e20000
[   26.944523] mem_map[ 964] ffffea0078800000          1e20000          1e28000
[   26.958581] mem_map[ 965] ffffea0078a00000          1e28000          1e30000
[   26.972639] mem_map[ 966] ffffea0078c00000          1e30000          1e38000
[   26.986694] mem_map[ 967] ffffea0078e00000          1e38000          1e40000
[   27.000755] mem_map[ 968] ffffea0079000000          1e40000          1e48000
[   27.014827] mem_map[ 969] ffffea0079200000          1e48000          1e50000
[   27.028886] mem_map[ 970] ffffea0079400000          1e50000          1e58000
[   27.042942] mem_map[ 971] ffffea0079600000          1e58000          1e60000
[   27.057000] mem_map[ 972] ffffea0079800000          1e60000          1e68000
[   27.071058] mem_map[ 973] ffffea0079a00000          1e68000          1e70000
[   27.085131] mem_map[ 974] ffffea0079c00000          1e70000          1e78000
[   27.099189] mem_map[ 975] ffffea0079e00000          1e78000          1e80000
[   27.113245] mem_map[ 976] ffffea007a000000          1e80000          1e88000
[   27.127302] mem_map[ 977] ffffea007a200000          1e88000          1e90000
[   27.141360] mem_map[ 978] ffffea007a400000          1e90000          1e98000
[   27.155435] mem_map[ 979] ffffea007a600000          1e98000          1ea0000
[   27.169510] mem_map[ 980] ffffea007a800000          1ea0000          1ea8000
[   27.183565] mem_map[ 981] ffffea007aa00000          1ea8000          1eb0000
[   27.197624] mem_map[ 982] ffffea007ac00000          1eb0000          1eb8000
[   27.211681] mem_map[ 983] ffffea007ae00000          1eb8000          1ec0000
[   27.225737] mem_map[ 984] ffffea007b000000          1ec0000          1ec8000
[   27.239795] mem_map[ 985] ffffea007b200000          1ec8000          1ed0000
[   27.253852] mem_map[ 986] ffffea007b400000          1ed0000          1ed8000
[   27.267910] mem_map[ 987] ffffea007b600000          1ed8000          1ee0000
[   27.281968] mem_map[ 988] ffffea007b800000          1ee0000          1ee8000
[   27.296025] mem_map[ 989] ffffea007ba00000          1ee8000          1ef0000
[   27.310082] mem_map[ 990] ffffea007bc00000          1ef0000          1ef8000
[   27.324139] mem_map[ 991] ffffea007be00000          1ef8000          1f00000
[   27.338198] mem_map[ 992] ffffea007c000000          1f00000          1f08000
[   27.352255] mem_map[ 993] ffffea007c200000          1f08000          1f10000
[   27.366311] mem_map[ 994] ffffea007c400000          1f10000          1f18000
[   27.380369] mem_map[ 995] ffffea007c600000          1f18000          1f20000
[   27.394425] mem_map[ 996] ffffea007c800000          1f20000          1f28000
[   27.408501] mem_map[ 997] ffffea007ca00000          1f28000          1f30000
[   27.422558] mem_map[ 998] ffffea007cc00000          1f30000          1f38000
[   27.436616] mem_map[ 999] ffffea007ce00000          1f38000          1f40000
[   27.450673] mem_map[1000] ffffea007d000000          1f40000          1f48000
[   27.464729] mem_map[1001] ffffea007d200000          1f48000          1f50000
[   27.478787] mem_map[1002] ffffea007d400000          1f50000          1f58000
[   27.492846] mem_map[1003] ffffea007d600000          1f58000          1f60000
[   27.506919] mem_map[1004] ffffea007d800000          1f60000          1f68000
[   27.520977] mem_map[1005] ffffea007da00000          1f68000          1f70000
[   27.535032] mem_map[1006] ffffea007dc00000          1f70000          1f78000
[   27.549090] mem_map[1007] ffffea007de00000          1f78000          1f80000
[   27.563149] mem_map[1008] ffffea007e000000          1f80000          1f88000
[   27.577204] mem_map[1009] ffffea007e200000          1f88000          1f90000
[   27.591262] mem_map[1010] ffffea007e400000          1f90000          1f98000
[   27.605320] mem_map[1011] ffffea007e600000          1f98000          1fa0000
[   27.619378] mem_map[1012] ffffea007e800000          1fa0000          1fa8000
[   27.633433] mem_map[1013] ffffea007ea00000          1fa8000          1fb0000
[   27.647491] mem_map[1014] ffffea007ec00000          1fb0000          1fb8000
[   27.661549] mem_map[1015] ffffea007ee00000          1fb8000          1fc0000
[   27.675606] mem_map[1016] ffffea007f000000          1fc0000          1fc8000
[   27.689664] mem_map[1017] ffffea007f200000          1fc8000          1fd0000
[   27.703722] mem_map[1018] ffffea007f400000          1fd0000          1fd8000
[   27.717779] mem_map[1019] ffffea007f600000          1fd8000          1fe0000
[   27.731835] mem_map[1020] ffffea007f800000          1fe0000          1fe8000
[   27.745893] mem_map[1021] ffffea007fa00000          1fe8000          1ff0000
[   27.759951] mem_map[1022] ffffea007fc00000          1ff0000          1ff8000
[   27.774007] mem_map[1023] ffffea007fe00000          1ff8000          2000000
[   27.788065] mem_map[1024] ffffea0080000000          2000000          2008000
[   27.802122] mem_map[1025] ffffea0080200000          2008000          2010000
[   27.816178] mem_map[1026] ffffea0080400000          2010000          2018000
[   27.830236] mem_map[1027] ffffea0080600000          2018000          2020000
[   27.844293] mem_map[1028] ffffea0080800000          2020000          2028000
[   27.858351] mem_map[1029] ffffea0080a00000          2028000          2030000
[   27.872409] mem_map[1030] ffffea0080c00000          2030000          2038000
[   27.886464] mem_map[1031] ffffea0080e00000          2038000          2040000
[   27.900522] mem_map[1032] ffffea0081000000          2040000          2048000
[   27.914581] mem_map[1033] ffffea0081200000          2048000          2050000
[   27.928637] mem_map[1034] ffffea0081400000          2050000          2058000
[   27.942695] mem_map[1035] ffffea0081600000          2058000          2060000
[   27.956769] mem_map[1036] ffffea0081800000          2060000          2068000
[   27.970843] mem_map[1037] ffffea0081a00000          2068000          2070000
[   27.984902] mem_map[1038] ffffea0081c00000          2070000          2078000
[   27.998960] mem_map[1039] ffffea0081e00000          2078000          2080000
[   28.013015] mem_map[1040] ffffea0082000000          2080000          2088000
[   28.027100] mem_map[1041] ffffea0082200000          2088000          2090000
[   28.041177] mem_map[1042] ffffea0082400000          2090000          2098000
[   28.055239] mem_map[1043] ffffea0082600000          2098000          20a0000
[   28.069298] mem_map[1044] ffffea0082800000          20a0000          20a8000
[   28.083355] mem_map[1045] ffffea0082a00000          20a8000          20b0000
[   28.097411] mem_map[1046] ffffea0082c00000          20b0000          20b8000
[   28.111469] mem_map[1047] ffffea0082e00000          20b8000          20c0000
[   28.125527] mem_map[1048] ffffea0083000000          20c0000          20c8000
[   28.139585] mem_map[1049] ffffea0083200000          20c8000          20d0000
[   28.153658] mem_map[1050] ffffea0083400000          20d0000          20d8000
[   28.167715] mem_map[1051] ffffea0083600000          20d8000          20e0000
[   28.181773] mem_map[1052] ffffea0083800000          20e0000          20e8000
[   28.195831] mem_map[1053] ffffea0083a00000          20e8000          20f0000
[   28.209886] mem_map[1054] ffffea0083c00000          20f0000          20f8000
[   28.223944] mem_map[1055] ffffea0083e00000          20f8000          2100000
[   28.238001] mem_map[1056] ffffea0084000000          2100000          2108000
[   28.252059] mem_map[1057] ffffea0084200000          2108000          2110000
[   28.266117] mem_map[1058] ffffea0084400000          2110000          2118000
[   28.280175] mem_map[1059] ffffea0084600000          2118000          2120000
[   28.294230] mem_map[1060] ffffea0084800000          2120000          2128000
[   28.308288] mem_map[1061] ffffea0084a00000          2128000          2130000
[   28.322346] mem_map[1062] ffffea0084c00000          2130000          2138000
[   28.336403] mem_map[1063] ffffea0084e00000          2138000          2140000
[   28.350461] mem_map[1064] ffffea0085000000          2140000          2148000
[   28.364518] mem_map[1065] ffffea0085200000          2148000          2150000
[   28.378575] mem_map[1066] ffffea0085400000          2150000          2158000
[   28.392633] mem_map[1067] ffffea0085600000          2158000          2160000
[   28.406690] mem_map[1068] ffffea0085800000          2160000          2168000
[   28.420747] mem_map[1069] ffffea0085a00000          2168000          2170000
[   28.434805] mem_map[1070] ffffea0085c00000          2170000          2178000
[   28.448862] mem_map[1071] ffffea0085e00000          2178000          2180000
[   28.462917] mem_map[1072] ffffea0086000000          2180000          2188000
[   28.476976] mem_map[1073] ffffea0086200000          2188000          2190000
[   28.491034] mem_map[1074] ffffea0086400000          2190000          2198000
[   28.505089] mem_map[1075] ffffea0086600000          2198000          21a0000
[   28.519165] mem_map[1076] ffffea0086800000          21a0000          21a8000
[   28.533223] mem_map[1077] ffffea0086a00000          21a8000          21b0000
[   28.547278] mem_map[1078] ffffea0086c00000          21b0000          21b8000
[   28.561336] mem_map[1079] ffffea0086e00000          21b8000          21c0000
[   28.575394] mem_map[1080] ffffea0087000000          21c0000          21c8000
[   28.589452] mem_map[1081] ffffea0087200000          21c8000          21d0000
[   28.603508] mem_map[1082] ffffea0087400000          21d0000          21d8000
[   28.617566] mem_map[1083] ffffea0087600000          21d8000          21e0000
[   28.631624] mem_map[1084] ffffea0087800000          21e0000          21e8000
[   28.645681] mem_map[1085] ffffea0087a00000          21e8000          21f0000
[   28.659738] mem_map[1086] ffffea0087c00000          21f0000          21f8000
[   28.673794] mem_map[1087] ffffea0087e00000          21f8000          2200000
[   28.687854] mem_map[1088] ffffea0088000000          2200000          2208000
[   28.701911] mem_map[1089] ffffea0088200000          2208000          2210000
[   28.715984] mem_map[1090] ffffea0088400000          2210000          2218000
[   28.730042] mem_map[1091] ffffea0088600000          2218000          2220000
[   28.744099] mem_map[1092] ffffea0088800000          2220000          2228000
[   28.758156] mem_map[1093] ffffea0088a00000          2228000          2230000
[   28.772214] mem_map[1094] ffffea0088c00000          2230000          2238000
[   28.786270] mem_map[1095] ffffea0088e00000          2238000          2240000
[   28.800329] mem_map[1096] ffffea0089000000          2240000          2248000
[   28.814385] mem_map[1097] ffffea0089200000          2248000          2250000
[   28.828443] mem_map[1098] ffffea0089400000          2250000          2258000
[   28.842501] mem_map[1099] ffffea0089600000          2258000          2260000
[   28.856558] mem_map[1100] ffffea0089800000          2260000          2268000
[   28.870614] mem_map[1101] ffffea0089a00000          2268000          2270000
[   28.884672] mem_map[1102] ffffea0089c00000          2270000          2278000
[   28.898730] mem_map[1103] ffffea0089e00000          2278000          2280000
[   28.912786] mem_map[1104] ffffea008a000000          2280000          2288000
[   28.926843] mem_map[1105] ffffea008a200000          2288000          2290000
[   28.940901] mem_map[1106] ffffea008a400000          2290000          2298000
[   28.954958] mem_map[1107] ffffea008a600000          2298000          22a0000
[   28.969016] mem_map[1108] ffffea008a800000          22a0000          22a8000
[   28.983072] mem_map[1109] ffffea008aa00000          22a8000          22b0000
[   28.997130] mem_map[1110] ffffea008ac00000          22b0000          22b8000
[   29.011188] mem_map[1111] ffffea008ae00000          22b8000          22c0000
[   29.025244] mem_map[1112] ffffea008b000000          22c0000          22c8000
[   29.039301] mem_map[1113] ffffea008b200000          22c8000          22d0000
[   29.053376] mem_map[1114] ffffea008b400000          22d0000          22d8000
[   29.067434] mem_map[1115] ffffea008b600000          22d8000          22e0000
[   29.081492] mem_map[1116] ffffea008b800000          22e0000          22e8000
[   29.095566] mem_map[1117] ffffea008ba00000          22e8000          22f0000
[   29.109623] mem_map[1118] ffffea008bc00000          22f0000          22f8000
[   29.123681] mem_map[1119] ffffea008be00000          22f8000          2300000
[   29.137739] mem_map[1120] ffffea008c000000          2300000          2308000
[   29.151794] mem_map[1121] ffffea008c200000          2308000          2310000
[   29.165851] mem_map[1122] ffffea008c400000          2310000          2318000
[   29.179910] mem_map[1123] ffffea008c600000          2318000          2320000
[   29.193967] mem_map[1124] ffffea008c800000          2320000          2328000
[   29.208025] mem_map[1125] ffffea008ca00000          2328000          2330000
[   29.222080] mem_map[1126] ffffea008cc00000          2330000          2338000
[   29.236139] mem_map[1127] ffffea008ce00000          2338000          2340000
[   29.250197] mem_map[1128] ffffea008d000000          2340000          2348000
[   29.264252] mem_map[1129] ffffea008d200000          2348000          2350000
[   29.278310] mem_map[1130] ffffea008d400000          2350000          2358000
[   29.292368] mem_map[1131] ffffea008d600000          2358000          2360000
[   29.306426] mem_map[1132] ffffea008d800000          2360000          2368000
[   29.320502] mem_map[1133] ffffea008da00000          2368000          2370000
[   29.334573] mem_map[1134] ffffea008dc00000          2370000          2378000
[   29.348648] mem_map[1135] ffffea008de00000          2378000          2380000
[   29.362706] mem_map[1136] ffffea008e000000          2380000          2388000
[   29.376764] mem_map[1137] ffffea008e200000          2388000          2390000
[   29.390820] mem_map[1138] ffffea008e400000          2390000          2398000
[   29.404878] mem_map[1139] ffffea008e600000          2398000          23a0000
[   29.418937] mem_map[1140] ffffea008e800000          23a0000          23a8000
[   29.432992] mem_map[1141] ffffea008ea00000          23a8000          23b0000
[   29.447050] mem_map[1142] ffffea008ec00000          23b0000          23b8000
[   29.461107] mem_map[1143] ffffea008ee00000          23b8000          23c0000
[   29.475165] mem_map[1144] ffffea008f000000          23c0000          23c8000
[   29.489223] mem_map[1145] ffffea008f200000          23c8000          23d0000
[   29.503281] mem_map[1146] ffffea008f400000          23d0000          23d8000
[   29.517336] mem_map[1147] ffffea008f600000          23d8000          23e0000
[   29.531395] mem_map[1148] ffffea008f800000          23e0000          23e8000
[   29.545452] mem_map[1149] ffffea008fa00000          23e8000          23f0000
[   29.559508] mem_map[1150] ffffea008fc00000          23f0000          23f8000
[   29.573565] mem_map[1151] ffffea008fe00000          23f8000          2400000
[   29.587623] mem_map[1152] ffffea0090000000          2400000          2408000
[   29.601681] mem_map[1153] ffffea0090200000          2408000          2410000
[   29.615739] mem_map[1154] ffffea0090400000          2410000          2418000
[   29.629794] mem_map[1155] ffffea0090600000          2418000          2420000
[   29.643852] mem_map[1156] ffffea0090800000          2420000          2428000
[   29.657908] mem_map[1157] ffffea0090a00000          2428000          2430000
[   29.671966] mem_map[1158] ffffea0090c00000          2430000          2438000
[   29.686025] mem_map[1159] ffffea0090e00000          2438000          2440000
[   29.700083] mem_map[1160] ffffea0091000000          2440000          2448000
[   29.714137] mem_map[1161] ffffea0091200000          2448000          2450000
[   29.728197] mem_map[1162] ffffea0091400000          2450000          2458000
[   29.742252] mem_map[1163] ffffea0091600000          2458000          2460000
[   29.756310] mem_map[1164] ffffea0091800000          2460000          2468000
[   29.770368] mem_map[1165] ffffea0091a00000          2468000          2470000
[   29.784424] mem_map[1166] ffffea0091c00000          2470000          2478000
[   29.798482] mem_map[1167] ffffea0091e00000          2478000          2480000
[   29.812540] mem_map[1168] ffffea0092000000          2480000          2488000
[   29.826598] mem_map[1169] ffffea0092200000          2488000          2490000
[   29.840653] mem_map[1170] ffffea0092400000          2490000          2498000
[   29.854710] mem_map[1171] ffffea0092600000          2498000          24a0000
[   29.868769] mem_map[1172] ffffea0092800000          24a0000          24a8000
[   29.882826] mem_map[1173] ffffea0092a00000          24a8000          24b0000
[   29.896884] mem_map[1174] ffffea0092c00000          24b0000          24b8000
[   29.910942] mem_map[1175] ffffea0092e00000          24b8000          24c0000
[   29.924998] mem_map[1176] ffffea0093000000          24c0000          24c8000
[   29.939056] mem_map[1177] ffffea0093200000          24c8000          24d0000
[   29.953114] mem_map[1178] ffffea0093400000          24d0000          24d8000
[   29.967171] mem_map[1179] ffffea0093600000          24d8000          24e0000
[   29.981227] mem_map[1180] ffffea0093800000          24e0000          24e8000
[   29.995284] mem_map[1181] ffffea0093a00000          24e8000          24f0000
[   30.009342] mem_map[1182] ffffea0093c00000          24f0000          24f8000
[   30.023416] mem_map[1183] ffffea0093e00000          24f8000          2500000
[   30.037472] mem_map[1184] ffffea0094000000          2500000          2508000
[   30.051530] mem_map[1185] ffffea0094200000          2508000          2510000
[   30.065588] mem_map[1186] ffffea0094400000          2510000          2518000
[   30.079646] mem_map[1187] ffffea0094600000          2518000          2520000
[   30.093704] mem_map[1188] ffffea0094800000          2520000          2528000
[   30.107776] mem_map[1189] ffffea0094a00000          2528000          2530000
[   30.121852] mem_map[1190] ffffea0094c00000          2530000          2538000
[   30.135909] mem_map[1191] ffffea0094e00000          2538000          2540000
[   30.149967] mem_map[1192] ffffea0095000000          2540000          2548000
[   30.164025] mem_map[1193] ffffea0095200000          2548000          2550000
[   30.178080] mem_map[1194] ffffea0095400000          2550000          2558000
[   30.192138] mem_map[1195] ffffea0095600000          2558000          2560000
[   30.206197] mem_map[1196] ffffea0095800000          2560000          2568000
[   30.220252] mem_map[1197] ffffea0095a00000          2568000          2570000
[   30.234309] mem_map[1198] ffffea0095c00000          2570000          2578000
[   30.248367] mem_map[1199] ffffea0095e00000          2578000          2580000
[   30.262424] mem_map[1200] ffffea0096000000          2580000          2588000
[   30.276481] mem_map[1201] ffffea0096200000          2588000          2590000
[   30.290539] mem_map[1202] ffffea0096400000          2590000          2598000
[   30.304598] mem_map[1203] ffffea0096600000          2598000          25a0000
[   30.318655] mem_map[1204] ffffea0096800000          25a0000          25a8000
[   30.332712] mem_map[1205] ffffea0096a00000          25a8000          25b0000
[   30.346770] mem_map[1206] ffffea0096c00000          25b0000          25b8000
[   30.360825] mem_map[1207] ffffea0096e00000          25b8000          25c0000
[   30.374885] mem_map[1208] ffffea0097000000          25c0000          25c8000
[   30.388939] mem_map[1209] ffffea0097200000          25c8000          25d0000
[   30.402998] mem_map[1210] ffffea0097400000          25d0000          25d8000
[   30.417056] mem_map[1211] ffffea0097600000          25d8000          25e0000
[   30.431113] mem_map[1212] ffffea0097800000          25e0000          25e8000
[   30.445171] mem_map[1213] ffffea0097a00000          25e8000          25f0000
[   30.459226] mem_map[1214] ffffea0097c00000          25f0000          25f8000
[   30.473286] mem_map[1215] ffffea0097e00000          25f8000          2600000
[   30.487343] mem_map[1216] ffffea0098000000          2600000          2608000
[   30.501399] mem_map[1217] ffffea0098200000          2608000          2610000
[   30.515456] mem_map[1218] ffffea0098400000          2610000          2618000
[   30.529514] mem_map[1219] ffffea0098600000          2618000          2620000
[   30.543570] mem_map[1220] ffffea0098800000          2620000          2628000
[   30.557627] mem_map[1221] ffffea0098a00000          2628000          2630000
[   30.571684] mem_map[1222] ffffea0098c00000          2630000          2638000
[   30.585742] mem_map[1223] ffffea0098e00000          2638000          2640000
[   30.599799] mem_map[1224] ffffea0099000000          2640000          2648000
[   30.613857] mem_map[1225] ffffea0099200000          2648000          2650000
[   30.627915] mem_map[1226] ffffea0099400000          2650000          2658000
[   30.641973] mem_map[1227] ffffea0099600000          2658000          2660000
[   30.656030] mem_map[1228] ffffea0099800000          2660000          2668000
[   30.670086] mem_map[1229] ffffea0099a00000          2668000          2670000
[   30.684144] mem_map[1230] ffffea0099c00000          2670000          2678000
[   30.698201] mem_map[1231] ffffea0099e00000          2678000          2680000
[   30.712259] mem_map[1232] ffffea009a000000          2680000          2688000
[   30.726317] mem_map[1233] ffffea009a200000          2688000          2690000
[   30.740373] mem_map[1234] ffffea009a400000          2690000          2698000
[   30.754431] mem_map[1235] ffffea009a600000          2698000          26a0000
[   30.768506] mem_map[1236] ffffea009a800000          26a0000          26a8000
[   30.782561] mem_map[1237] ffffea009aa00000          26a8000          26b0000
[   30.796619] mem_map[1238] ffffea009ac00000          26b0000          26b8000
[   30.810694] mem_map[1239] ffffea009ae00000          26b8000          26c0000
[   30.824751] mem_map[1240] ffffea009b000000          26c0000          26c8000
[   30.838809] mem_map[1241] ffffea009b200000          26c8000          26d0000
[   30.852867] mem_map[1242] ffffea009b400000          26d0000          26d8000
[   30.866940] mem_map[1243] ffffea009b600000          26d8000          26e0000
[   30.880999] mem_map[1244] ffffea009b800000          26e0000          26e8000
[   30.895056] mem_map[1245] ffffea009ba00000          26e8000          26f0000
[   30.909111] mem_map[1246] ffffea009bc00000          26f0000          26f8000
[   30.923170] mem_map[1247] ffffea009be00000          26f8000          2700000
[   30.937228] mem_map[1248] ffffea009c000000          2700000          2708000
[   30.951283] mem_map[1249] ffffea009c200000          2708000          2710000
[   30.965342] mem_map[1250] ffffea009c400000          2710000          2718000
[   30.979399] mem_map[1251] ffffea009c600000          2718000          2720000
[   30.993457] mem_map[1252] ffffea009c800000          2720000          2728000
[   31.007515] mem_map[1253] ffffea009ca00000          2728000          2730000
[   31.021570] mem_map[1254] ffffea009cc00000          2730000          2738000
[   31.035628] mem_map[1255] ffffea009ce00000          2738000          2740000
[   31.049686] mem_map[1256] ffffea009d000000          2740000          2748000
[   31.063744] mem_map[1257] ffffea009d200000          2748000          2750000
[   31.077801] mem_map[1258] ffffea009d400000          2750000          2758000
[   31.091858] mem_map[1259] ffffea009d600000          2758000          2760000
[   31.105914] mem_map[1260] ffffea009d800000          2760000          2768000
[   31.119972] mem_map[1261] ffffea009da00000          2768000          2770000
[   31.134030] mem_map[1262] ffffea009dc00000          2770000          2778000
[   31.148085] mem_map[1263] ffffea009de00000          2778000          2780000
[   31.162144] mem_map[1264] ffffea009e000000          2780000          2788000
[   31.176200] mem_map[1265] ffffea009e200000          2788000          2790000
[   31.190258] mem_map[1266] ffffea009e400000          2790000          2798000
[   31.204315] mem_map[1267] ffffea009e600000          2798000          27a0000
[   31.218372] mem_map[1268] ffffea009e800000          27a0000          27a8000
[   31.232430] mem_map[1269] ffffea009ea00000          27a8000          27b0000
[   31.246487] mem_map[1270] ffffea009ec00000          27b0000          27b8000
[   31.260545] mem_map[1271] ffffea009ee00000          27b8000          27c0000
[   31.274602] mem_map[1272] ffffea009f000000          27c0000          27c8000
[   31.288660] mem_map[1273] ffffea009f200000          27c8000          27d0000
[   31.302715] mem_map[1274] ffffea009f400000          27d0000          27d8000
[   31.316773] mem_map[1275] ffffea009f600000          27d8000          27e0000
[   31.330831] mem_map[1276] ffffea009f800000          27e0000          27e8000
[   31.344889] mem_map[1277] ffffea009fa00000          27e8000          27f0000
[   31.358947] mem_map[1278] ffffea009fc00000          27f0000          27f8000
[   31.373002] mem_map[1279] ffffea009fe00000          27f8000          2800000
[   31.387059] mem_map[1280] ffffea00a0000000          2800000          2808000
[   31.401117] mem_map[1281] ffffea00a0200000          2808000          2810000
[   31.415175] mem_map[1282] ffffea00a0400000          2810000          2818000
[   31.429231] mem_map[1283] ffffea00a0600000          2818000          2820000
[   31.443289] mem_map[1284] ffffea00a0800000          2820000          2828000
[   31.457346] mem_map[1285] ffffea00a0a00000          2828000          2830000
[   31.471404] mem_map[1286] ffffea00a0c00000          2830000          2838000
[   31.485462] mem_map[1287] ffffea00a0e00000          2838000          2840000
[   31.499522] mem_map[1288] ffffea00a1000000          2840000          2848000
[   31.513593] mem_map[1289] ffffea00a1200000          2848000          2850000
[   31.527667] mem_map[1290] ffffea00a1400000          2850000          2858000
[   31.541726] mem_map[1291] ffffea00a1600000          2858000          2860000
[   31.555802] mem_map[1292] ffffea00a1800000          2860000          2868000
[   31.569875] mem_map[1293] ffffea00a1a00000          2868000          2870000
[   31.583931] mem_map[1294] ffffea00a1c00000          2870000          2878000
[   31.597989] mem_map[1295] ffffea00a1e00000          2878000          2880000
[   31.612047] mem_map[1296] ffffea00a2000000          2880000          2888000
[   31.626104] mem_map[1297] ffffea00a2200000          2888000          2890000
[   31.640160] mem_map[1298] ffffea00a2400000          2890000          2898000
[   31.654217] mem_map[1299] ffffea00a2600000          2898000          28a0000
[   31.668275] mem_map[1300] ffffea00a2800000          28a0000          28a8000
[   31.682332] mem_map[1301] ffffea00a2a00000          28a8000          28b0000
[   31.696391] mem_map[1302] ffffea00a2c00000          28b0000          28b8000
[   31.710446] mem_map[1303] ffffea00a2e00000          28b8000          28c0000
[   31.724504] mem_map[1304] ffffea00a3000000          28c0000          28c8000
[   31.738563] mem_map[1305] ffffea00a3200000          28c8000          28d0000
[   31.752621] mem_map[1306] ffffea00a3400000          28d0000          28d8000
[   31.766694] mem_map[1307] ffffea00a3600000          28d8000          28e0000
[   31.780750] mem_map[1308] ffffea00a3800000          28e0000          28e8000
[   31.794808] mem_map[1309] ffffea00a3a00000          28e8000          28f0000
[   31.808866] mem_map[1310] ffffea00a3c00000          28f0000          28f8000
[   31.822941] mem_map[1311] ffffea00a3e00000          28f8000          2900000
[   31.836997] mem_map[1312] ffffea00a4000000          2900000          2908000
[   31.851054] mem_map[1313] ffffea00a4200000          2908000          2910000
[   31.865112] mem_map[1314] ffffea00a4400000          2910000          2918000
[   31.879170] mem_map[1315] ffffea00a4600000          2918000          2920000
[   31.893225] mem_map[1316] ffffea00a4800000          2920000          2928000
[   31.907285] mem_map[1317] ffffea00a4a00000          2928000          2930000
[   31.921341] mem_map[1318] ffffea00a4c00000          2930000          2938000
[   31.935399] mem_map[1319] ffffea00a4e00000          2938000          2940000
[   31.949457] mem_map[1320] ffffea00a5000000          2940000          2948000
[   31.963512] mem_map[1321] ffffea00a5200000          2948000          2950000
[   31.977570] mem_map[1322] ffffea00a5400000          2950000          2958000
[   31.991628] mem_map[1323] ffffea00a5600000          2958000          2960000
[   32.005686] mem_map[1324] ffffea00a5800000          2960000          2968000
[   32.019742] mem_map[1325] ffffea00a5a00000          2968000          2970000
[   32.033800] mem_map[1326] ffffea00a5c00000          2970000          2978000
[   32.047858] mem_map[1327] ffffea00a5e00000          2978000          2980000
[   32.061915] mem_map[1328] ffffea00a6000000          2980000          2988000
[   32.075970] mem_map[1329] ffffea00a6200000          2988000          2990000
[   32.090028] mem_map[1330] ffffea00a6400000          2990000          2998000
[   32.104086] mem_map[1331] ffffea00a6600000          2998000          29a0000
[   32.118147] mem_map[1332] ffffea00a6800000          29a0000          29a8000
[   32.132218] mem_map[1333] ffffea00a6a00000          29a8000          29b0000
[   32.146274] mem_map[1334] ffffea00a6c00000          29b0000          29b8000
[   32.160332] mem_map[1335] ffffea00a6e00000          29b8000          29c0000
[   32.174390] mem_map[1336] ffffea00a7000000          29c0000          29c8000
[   32.188448] mem_map[1337] ffffea00a7200000          29c8000          29d0000
[   32.202503] mem_map[1338] ffffea00a7400000          29d0000          29d8000
[   32.216562] mem_map[1339] ffffea00a7600000          29d8000          29e0000
[   32.230620] mem_map[1340] ffffea00a7800000          29e0000          29e8000
[   32.244676] mem_map[1341] ffffea00a7a00000          29e8000          29f0000
[   32.258734] mem_map[1342] ffffea00a7c00000          29f0000          29f8000
[   32.272790] mem_map[1343] ffffea00a7e00000          29f8000          2a00000
[   32.286848] mem_map[1344] ffffea00a8000000          2a00000          2a08000
[   32.300923] mem_map[1345] ffffea00a8200000          2a08000          2a10000
[   32.314997] mem_map[1346] ffffea00a8400000          2a10000          2a18000
[   32.329055] mem_map[1347] ffffea00a8600000          2a18000          2a20000
[   32.343113] mem_map[1348] ffffea00a8800000          2a20000          2a28000
[   32.357168] mem_map[1349] ffffea00a8a00000          2a28000          2a30000
[   32.371226] mem_map[1350] ffffea00a8c00000          2a30000          2a38000
[   32.385284] mem_map[1351] ffffea00a8e00000          2a38000          2a40000
[   32.399341] mem_map[1352] ffffea00a9000000          2a40000          2a48000
[   32.413400] mem_map[1353] ffffea00a9200000          2a48000          2a50000
[   32.427455] mem_map[1354] ffffea00a9400000          2a50000          2a58000
[   32.441513] mem_map[1355] ffffea00a9600000          2a58000          2a60000
[   32.455571] mem_map[1356] ffffea00a9800000          2a60000          2a68000
[   32.469629] mem_map[1357] ffffea00a9a00000          2a68000          2a70000
[   32.483684] mem_map[1358] ffffea00a9c00000          2a70000          2a78000
[   32.497742] mem_map[1359] ffffea00a9e00000          2a78000          2a80000
[   32.511800] mem_map[1360] ffffea00aa000000          2a80000          2a88000
[   32.525855] mem_map[1361] ffffea00aa200000          2a88000          2a90000
[   32.539913] mem_map[1362] ffffea00aa400000          2a90000          2a98000
[   32.553970] mem_map[1363] ffffea00aa600000          2a98000          2aa0000
[   32.568028] mem_map[1364] ffffea00aa800000          2aa0000          2aa8000
[   32.582086] mem_map[1365] ffffea00aaa00000          2aa8000          2ab0000
[   32.596143] mem_map[1366] ffffea00aac00000          2ab0000          2ab8000
[   32.610200] mem_map[1367] ffffea00aae00000          2ab8000          2ac0000
[   32.624258] mem_map[1368] ffffea00ab000000          2ac0000          2ac8000
[   32.638316] mem_map[1369] ffffea00ab200000          2ac8000          2ad0000
[   32.652371] mem_map[1370] ffffea00ab400000          2ad0000          2ad8000
[   32.666429] mem_map[1371] ffffea00ab600000          2ad8000          2ae0000
[   32.680486] mem_map[1372] ffffea00ab800000          2ae0000          2ae8000
[   32.694544] mem_map[1373] ffffea00aba00000          2ae8000          2af0000
[   32.708602] mem_map[1374] ffffea00abc00000          2af0000          2af8000
[   32.722658] mem_map[1375] ffffea00abe00000          2af8000          2b00000
[   32.736715] mem_map[1376] ffffea00ac000000          2b00000          2b08000
[   32.750772] mem_map[1377] ffffea00ac200000          2b08000          2b10000
[   32.764830] mem_map[1378] ffffea00ac400000          2b10000          2b18000
[   32.778888] mem_map[1379] ffffea00ac600000          2b18000          2b20000
[   32.792945] mem_map[1380] ffffea00ac800000          2b20000          2b28000
[   32.807003] mem_map[1381] ffffea00aca00000          2b28000          2b30000
[   32.821060] mem_map[1382] ffffea00acc00000          2b30000          2b38000
[   32.835118] mem_map[1383] ffffea00ace00000          2b38000          2b40000
[   32.849173] mem_map[1384] ffffea00ad000000          2b40000          2b48000
[   32.863231] mem_map[1385] ffffea00ad200000          2b48000          2b50000
[   32.877289] mem_map[1386] ffffea00ad400000          2b50000          2b58000
[   32.891347] mem_map[1387] ffffea00ad600000          2b58000          2b60000
[   32.905420] mem_map[1388] ffffea00ad800000          2b60000          2b68000
[   32.919496] mem_map[1389] ffffea00ada00000          2b68000          2b70000
[   32.933554] mem_map[1390] ffffea00adc00000          2b70000          2b78000
[   32.947611] mem_map[1391] ffffea00ade00000          2b78000          2b80000
[   32.961666] mem_map[1392] ffffea00ae000000          2b80000          2b88000
[   32.975725] mem_map[1393] ffffea00ae200000          2b88000          2b90000
[   32.989799] mem_map[1394] ffffea00ae400000          2b90000          2b98000
[   33.003857] mem_map[1395] ffffea00ae600000          2b98000          2ba0000
[   33.017912] mem_map[1396] ffffea00ae800000          2ba0000          2ba8000
[   33.031970] mem_map[1397] ffffea00aea00000          2ba8000          2bb0000
[   33.046027] mem_map[1398] ffffea00aec00000          2bb0000          2bb8000
[   33.060085] mem_map[1399] ffffea00aee00000          2bb8000          2bc0000
[   33.074143] mem_map[1400] ffffea00af000000          2bc0000          2bc8000
[   33.088201] mem_map[1401] ffffea00af200000          2bc8000          2bd0000
[   33.102257] mem_map[1402] ffffea00af400000          2bd0000          2bd8000
[   33.116315] mem_map[1403] ffffea00af600000          2bd8000          2be0000
[   33.130372] mem_map[1404] ffffea00af800000          2be0000          2be8000
[   33.144430] mem_map[1405] ffffea00afa00000          2be8000          2bf0000
[   33.158487] mem_map[1406] ffffea00afc00000          2bf0000          2bf8000
[   33.172543] mem_map[1407] ffffea00afe00000          2bf8000          2c00000
[   33.186600] mem_map[1408] ffffea00b0000000          2c00000          2c08000
[   33.200658] mem_map[1409] ffffea00b0200000          2c08000          2c10000
[   33.214716] mem_map[1410] ffffea00b0400000          2c10000          2c18000
[   33.228772] mem_map[1411] ffffea00b0600000          2c18000          2c20000
[   33.242831] mem_map[1412] ffffea00b0800000          2c20000          2c28000
[   33.256904] mem_map[1413] ffffea00b0a00000          2c28000          2c30000
[   33.270962] mem_map[1414] ffffea00b0c00000          2c30000          2c38000
[   33.285020] mem_map[1415] ffffea00b0e00000          2c38000          2c40000
[   33.299078] mem_map[1416] ffffea00b1000000          2c40000          2c48000
[   33.313133] mem_map[1417] ffffea00b1200000          2c48000          2c50000
[   33.327191] mem_map[1418] ffffea00b1400000          2c50000          2c58000
[   33.341248] mem_map[1419] ffffea00b1600000          2c58000          2c60000
[   33.355307] mem_map[1420] ffffea00b1800000          2c60000          2c68000
[   33.369362] mem_map[1421] ffffea00b1a00000          2c68000          2c70000
[   33.383420] mem_map[1422] ffffea00b1c00000          2c70000          2c78000
[   33.397478] mem_map[1423] ffffea00b1e00000          2c78000          2c80000
[   33.411536] mem_map[1424] ffffea00b2000000          2c80000          2c88000
[   33.425594] mem_map[1425] ffffea00b2200000          2c88000          2c90000
[   33.439649] mem_map[1426] ffffea00b2400000          2c90000          2c98000
[   33.453706] mem_map[1427] ffffea00b2600000          2c98000          2ca0000
[   33.467764] mem_map[1428] ffffea00b2800000          2ca0000          2ca8000
[   33.481822] mem_map[1429] ffffea00b2a00000          2ca8000          2cb0000
[   33.495878] mem_map[1430] ffffea00b2c00000          2cb0000          2cb8000
[   33.509936] mem_map[1431] ffffea00b2e00000          2cb8000          2cc0000
[   33.523992] mem_map[1432] ffffea00b3000000          2cc0000          2cc8000
[   33.538050] mem_map[1433] ffffea00b3200000          2cc8000          2cd0000
[   33.552108] mem_map[1434] ffffea00b3400000          2cd0000          2cd8000
[   33.566165] mem_map[1435] ffffea00b3600000          2cd8000          2ce0000
[   33.580223] mem_map[1436] ffffea00b3800000          2ce0000          2ce8000
[   33.594279] mem_map[1437] ffffea00b3a00000          2ce8000          2cf0000
[   33.608337] mem_map[1438] ffffea00b3c00000          2cf0000          2cf8000
[   33.622395] mem_map[1439] ffffea00b3e00000          2cf8000          2d00000
[   33.636451] mem_map[1440] ffffea00b4000000          2d00000          2d08000
[   33.650508] mem_map[1441] ffffea00b4200000          2d08000          2d10000
[   33.664588] mem_map[1442] ffffea00b4400000          2d10000          2d18000
[   33.678657] mem_map[1443] ffffea00b4600000          2d18000          2d20000
[   33.692715] mem_map[1444] ffffea00b4800000          2d20000          2d28000
[   33.706773] mem_map[1445] ffffea00b4a00000          2d28000          2d30000
[   33.720831] mem_map[1446] ffffea00b4c00000          2d30000          2d38000
[   33.734887] mem_map[1447] ffffea00b4e00000          2d38000          2d40000
[   33.748944] mem_map[1448] ffffea00b5000000          2d40000          2d48000
[   33.763002] mem_map[1449] ffffea00b5200000          2d48000          2d50000
[   33.777060] mem_map[1450] ffffea00b5400000          2d50000          2d58000
[   33.791118] mem_map[1451] ffffea00b5600000          2d58000          2d60000
[   33.805173] mem_map[1452] ffffea00b5800000          2d60000          2d68000
[   33.819231] mem_map[1453] ffffea00b5a00000          2d68000          2d70000
[   33.833288] mem_map[1454] ffffea00b5c00000          2d70000          2d78000
[   33.847346] mem_map[1455] ffffea00b5e00000          2d78000          2d80000
[   33.861404] mem_map[1456] ffffea00b6000000          2d80000          2d88000
[   33.875461] mem_map[1457] ffffea00b6200000          2d88000          2d90000
[   33.889517] mem_map[1458] ffffea00b6400000          2d90000          2d98000
[   33.903574] mem_map[1459] ffffea00b6600000          2d98000          2da0000
[   33.917633] mem_map[1460] ffffea00b6800000          2da0000          2da8000
[   33.931688] mem_map[1461] ffffea00b6a00000          2da8000          2db0000
[   33.945747] mem_map[1462] ffffea00b6c00000          2db0000          2db8000
[   33.959804] mem_map[1463] ffffea00b6e00000          2db8000          2dc0000
[   33.973862] mem_map[1464] ffffea00b7000000          2dc0000          2dc8000
[   33.987919] mem_map[1465] ffffea00b7200000          2dc8000          2dd0000
[   34.001975] mem_map[1466] ffffea00b7400000          2dd0000          2dd8000
[   34.016033] mem_map[1467] ffffea00b7600000          2dd8000          2de0000
[   34.030090] mem_map[1468] ffffea00b7800000          2de0000          2de8000
[   34.044147] mem_map[1469] ffffea00b7a00000          2de8000          2df0000
[   34.058204] mem_map[1470] ffffea00b7c00000          2df0000          2df8000
[   34.072262] mem_map[1471] ffffea00b7e00000          2df8000          2e00000
[   34.086320] mem_map[1472] ffffea00b8000000          2e00000          2e08000
[   34.100376] mem_map[1473] ffffea00b8200000          2e08000          2e10000
[   34.114434] mem_map[1474] ffffea00b8400000          2e10000          2e18000
[   34.128492] mem_map[1475] ffffea00b8600000          2e18000          2e20000
[   34.142549] mem_map[1476] ffffea00b8800000          2e20000          2e28000
[   34.156607] mem_map[1477] ffffea00b8a00000          2e28000          2e30000
[   34.170664] mem_map[1478] ffffea00b8c00000          2e30000          2e38000
[   34.184721] mem_map[1479] ffffea00b8e00000          2e38000          2e40000
[   34.198779] mem_map[1480] ffffea00b9000000          2e40000          2e48000
[   34.212852] mem_map[1481] ffffea00b9200000          2e48000          2e50000
[   34.226911] mem_map[1482] ffffea00b9400000          2e50000          2e58000
[   34.240966] mem_map[1483] ffffea00b9600000          2e58000          2e60000
[   34.255025] mem_map[1484] ffffea00b9800000          2e60000          2e68000
[   34.269081] mem_map[1485] ffffea00b9a00000          2e68000          2e70000
[   34.283139] mem_map[1486] ffffea00b9c00000          2e70000          2e78000
[   34.297197] mem_map[1487] ffffea00b9e00000          2e78000          2e80000
[   34.311253] mem_map[1488] ffffea00ba000000          2e80000          2e88000
[   34.325311] mem_map[1489] ffffea00ba200000          2e88000          2e90000
[   34.339369] mem_map[1490] ffffea00ba400000          2e90000          2e98000
[   34.353425] mem_map[1491] ffffea00ba600000          2e98000          2ea0000
[   34.367483] mem_map[1492] ffffea00ba800000          2ea0000          2ea8000
[   34.381541] mem_map[1493] ffffea00baa00000          2ea8000          2eb0000
[   34.395597] mem_map[1494] ffffea00bac00000          2eb0000          2eb8000
[   34.409654] mem_map[1495] ffffea00bae00000          2eb8000          2ec0000
[   34.423713] mem_map[1496] ffffea00bb000000          2ec0000          2ec8000
[   34.437769] mem_map[1497] ffffea00bb200000          2ec8000          2ed0000
[   34.451827] mem_map[1498] ffffea00bb400000          2ed0000          2ed8000
[   34.465885] mem_map[1499] ffffea00bb600000          2ed8000          2ee0000
[   34.479940] mem_map[1500] ffffea00bb800000          2ee0000          2ee8000
[   34.493998] mem_map[1501] ffffea00bba00000          2ee8000          2ef0000
[   34.508054] mem_map[1502] ffffea00bbc00000          2ef0000          2ef8000
[   34.522113] mem_map[1503] ffffea00bbe00000          2ef8000          2f00000
[   34.536171] mem_map[1504] ffffea00bc000000          2f00000          2f08000
[   34.550229] mem_map[1505] ffffea00bc200000          2f08000          2f10000
[   34.564284] mem_map[1506] ffffea00bc400000          2f10000          2f18000
[   34.578342] mem_map[1507] ffffea00bc600000          2f18000          2f20000
[   34.592400] mem_map[1508] ffffea00bc800000          2f20000          2f28000
[   34.606456] mem_map[1509] ffffea00bca00000          2f28000          2f30000
[   34.620514] mem_map[1510] ffffea00bcc00000          2f30000          2f38000
[   34.634572] mem_map[1511] ffffea00bce00000          2f38000          2f40000
[   34.648630] mem_map[1512] ffffea00bd000000          2f40000          2f48000
[   34.662685] mem_map[1513] ffffea00bd200000          2f48000          2f50000
[   34.676743] mem_map[1514] ffffea00bd400000          2f50000          2f58000
[   34.690801] mem_map[1515] ffffea00bd600000          2f58000          2f60000
[   34.704858] mem_map[1516] ffffea00bd800000          2f60000          2f68000
[   34.718916] mem_map[1517] ffffea00bda00000          2f68000          2f70000
[   34.732973] mem_map[1518] ffffea00bdc00000          2f70000          2f78000
[   34.747031] mem_map[1519] ffffea00bde00000          2f78000          2f80000
[   34.761086] mem_map[1520] ffffea00be000000          2f80000          2f88000
[   34.775144] mem_map[1521] ffffea00be200000          2f88000          2f90000
[   34.789202] mem_map[1522] ffffea00be400000          2f90000          2f98000
[   34.803260] mem_map[1523] ffffea00be600000          2f98000          2fa0000
[   34.817316] mem_map[1524] ffffea00be800000          2fa0000          2fa8000
[   34.831375] mem_map[1525] ffffea00bea00000          2fa8000          2fb0000
[   34.845430] mem_map[1526] ffffea00bec00000          2fb0000          2fb8000
[   34.859488] mem_map[1527] ffffea00bee00000          2fb8000          2fc0000
[   34.873546] mem_map[1528] ffffea00bf000000          2fc0000          2fc8000
[   34.887604] mem_map[1529] ffffea00bf200000          2fc8000          2fd0000
[   34.901661] mem_map[1530] ffffea00bf400000          2fd0000          2fd8000
[   34.915717] mem_map[1531] ffffea00bf600000          2fd8000          2fe0000
[   34.929773] mem_map[1532] ffffea00bf800000          2fe0000          2fe8000
[   34.943831] mem_map[1533] ffffea00bfa00000          2fe8000          2ff0000
[   34.957889] mem_map[1534] ffffea00bfc00000          2ff0000          2ff8000
[   34.971946] mem_map[1535] ffffea00bfe00000          2ff8000          3000000
[   34.986003] mem_map[1536] ffffea00c0000000          3000000          3008000
[   35.000062] mem_map[1537] ffffea00c0200000          3008000          3010000
[   35.014118] mem_map[1538] ffffea00c0400000          3010000          3018000
[   35.028175] mem_map[1539] ffffea00c0600000          3018000          3020000
[   35.042233] mem_map[1540] ffffea00c0800000          3020000          3028000
[   35.056291] mem_map[1541] ffffea00c0a00000          3028000          3030000
[   35.070346] mem_map[1542] ffffea00c0c00000          3030000          3038000
[   35.084405] mem_map[1543] ffffea00c0e00000          3038000          3040000
[   35.098463] mem_map[1544] ffffea00c1000000          3040000          3048000
[   35.112519] mem_map[1545] ffffea00c1200000          3048000          3050000
[   35.126576] mem_map[1546] ffffea00c1400000          3050000          3058000
[   35.140635] mem_map[1547] ffffea00c1600000          3058000          3060000
[   35.154691] mem_map[1548] ffffea00c1800000          3060000          3068000
[   35.168747] mem_map[1549] ffffea00c1a00000          3068000          3070000
[   35.182805] mem_map[1550] ffffea00c1c00000          3070000          3078000
[   35.196863] mem_map[1551] ffffea00c1e00000          3078000          3080000
[   35.210919] mem_map[1552] ffffea00c2000000          3080000          3088000
[   35.224977] mem_map[1553] ffffea00c2200000          3088000          3090000
[   35.239035] mem_map[1554] ffffea00c2400000          3090000          3098000
[   35.253093] mem_map[1555] ffffea00c2600000          3098000          30a0000
[   35.267151] mem_map[1556] ffffea00c2800000          30a0000          30a8000
[   35.281206] mem_map[1557] ffffea00c2a00000          30a8000          30b0000
[   35.295264] mem_map[1558] ffffea00c2c00000          30b0000          30b8000
[   35.309322] mem_map[1559] ffffea00c2e00000          30b8000          30c0000
[   35.323380] mem_map[1560] ffffea00c3000000          30c0000          30c8000
[   35.337453] mem_map[1561] ffffea00c3200000          30c8000          30d0000
[   35.351511] mem_map[1562] ffffea00c3400000          30d0000          30d8000
[   35.365569] mem_map[1563] ffffea00c3600000          30d8000          30e0000
[   35.379626] mem_map[1564] ffffea00c3800000          30e0000          30e8000
[   35.393681] mem_map[1565] ffffea00c3a00000          30e8000          30f0000
[   35.407739] mem_map[1566] ffffea00c3c00000          30f0000          30f8000
[   35.421798] mem_map[1567] ffffea00c3e00000          30f8000          3100000
[   35.435855] mem_map[1568] ffffea00c4000000          3100000          3108000
[   35.449911] mem_map[1569] ffffea00c4200000          3108000          3110000
[   35.463969] mem_map[1570] ffffea00c4400000          3110000          3118000
[   35.478025] mem_map[1571] ffffea00c4600000          3118000          3120000
[   35.492084] mem_map[1572] ffffea00c4800000          3120000          3128000
[   35.506159] mem_map[1573] ffffea00c4a00000          3128000          3130000
[   35.520214] mem_map[1574] ffffea00c4c00000          3130000          3138000
[   35.534272] mem_map[1575] ffffea00c4e00000          3138000          3140000
[   35.548330] mem_map[1576] ffffea00c5000000          3140000          3148000
[   35.562388] mem_map[1577] ffffea00c5200000          3148000          3150000
[   35.576445] mem_map[1578] ffffea00c5400000          3150000          3158000
[   35.590501] mem_map[1579] ffffea00c5600000          3158000          3160000
[   35.604560] mem_map[1580] ffffea00c5800000          3160000          3168000
[   35.618615] mem_map[1581] ffffea00c5a00000          3168000          3170000
[   35.632673] mem_map[1582] ffffea00c5c00000          3170000          3178000
[   35.646732] mem_map[1583] ffffea00c5e00000          3178000          3180000
[   35.660805] mem_map[1584] ffffea00c6000000          3180000          3188000
[   35.674864] mem_map[1585] ffffea00c6200000          3188000          3190000
[   35.688921] mem_map[1586] ffffea00c6400000          3190000          3198000
[   35.702976] mem_map[1587] ffffea00c6600000          3198000          31a0000
[   35.717035] mem_map[1588] ffffea00c6800000          31a0000          31a8000
[   35.731092] mem_map[1589] ffffea00c6a00000          31a8000          31b0000
[   35.745150] mem_map[1590] ffffea00c6c00000          31b0000          31b8000
[   35.759206] mem_map[1591] ffffea00c6e00000          31b8000          31c0000
[   35.773264] mem_map[1592] ffffea00c7000000          31c0000          31c8000
[   35.787322] mem_map[1593] ffffea00c7200000          31c8000          31d0000
[   35.801397] mem_map[1594] ffffea00c7400000          31d0000          31d8000
[   35.815454] mem_map[1595] ffffea00c7600000          31d8000          31e0000
[   35.829509] mem_map[1596] ffffea00c7800000          31e0000          31e8000
[   35.843586] mem_map[1597] ffffea00c7a00000          31e8000          31f0000
[   35.857644] mem_map[1598] ffffea00c7c00000          31f0000          31f8000
[   35.871699] mem_map[1599] ffffea00c7e00000          31f8000          3200000
[   35.885757] mem_map[1600] ffffea00c8000000          3200000          3208000
[   35.899832] mem_map[1601] ffffea00c8200000          3208000          3210000
[   35.913890] mem_map[1602] ffffea00c8400000          3210000          3218000
[   35.927946] mem_map[1603] ffffea00c8600000          3218000          3220000
[   35.942004] mem_map[1604] ffffea00c8800000          3220000          3228000
[   35.956060] mem_map[1605] ffffea00c8a00000          3228000          3230000
[   35.970118] mem_map[1606] ffffea00c8c00000          3230000          3238000
[   35.984176] mem_map[1607] ffffea00c8e00000          3238000          3240000
[   35.998232] mem_map[1608] ffffea00c9000000          3240000          3248000
[   36.012289] mem_map[1609] ffffea00c9200000          3248000          3250000
[   36.026346] mem_map[1610] ffffea00c9400000          3250000          3258000
[   36.040404] mem_map[1611] ffffea00c9600000          3258000          3260000
[   36.054462] mem_map[1612] ffffea00c9800000          3260000          3268000
[   36.068518] mem_map[1613] ffffea00c9a00000          3268000          3270000
[   36.082575] mem_map[1614] ffffea00c9c00000          3270000          3278000
[   36.096633] mem_map[1615] ffffea00c9e00000          3278000          3280000
[   36.110691] mem_map[1616] ffffea00ca000000          3280000          3288000
[   36.124747] mem_map[1617] ffffea00ca200000          3288000          3290000
[   36.138805] mem_map[1618] ffffea00ca400000          3290000          3298000
[   36.152863] mem_map[1619] ffffea00ca600000          3298000          32a0000
[   36.166921] mem_map[1620] ffffea00ca800000          32a0000          32a8000
[   36.180978] mem_map[1621] ffffea00caa00000          32a8000          32b0000
[   36.195036] mem_map[1622] ffffea00cac00000          32b0000          32b8000
[   36.209091] mem_map[1623] ffffea00cae00000          32b8000          32c0000
[   36.223149] mem_map[1624] ffffea00cb000000          32c0000          32c8000
[   36.237205] mem_map[1625] ffffea00cb200000          32c8000          32d0000
[   36.251263] mem_map[1626] ffffea00cb400000          32d0000          32d8000
[   36.265322] mem_map[1627] ffffea00cb600000          32d8000          32e0000
[   36.279380] mem_map[1628] ffffea00cb800000          32e0000          32e8000
[   36.293437] mem_map[1629] ffffea00cba00000          32e8000          32f0000
[   36.307492] mem_map[1630] ffffea00cbc00000          32f0000          32f8000
[   36.321550] mem_map[1631] ffffea00cbe00000          32f8000          3300000
[   36.335608] mem_map[1632] ffffea00cc000000          3300000          3308000
[   36.349664] mem_map[1633] ffffea00cc200000          3308000          3310000
[   36.363721] mem_map[1634] ffffea00cc400000          3310000          3318000
[   36.377780] mem_map[1635] ffffea00cc600000          3318000          3320000
[   36.391838] mem_map[1636] ffffea00cc800000          3320000          3328000
[   36.405893] mem_map[1637] ffffea00cca00000          3328000          3330000
[   36.419952] mem_map[1638] ffffea00ccc00000          3330000          3338000
[   36.434008] mem_map[1639] ffffea00cce00000          3338000          3340000
[   36.448065] mem_map[1640] ffffea00cd000000          3340000          3348000
[   36.462123] mem_map[1641] ffffea00cd200000          3348000          3350000
[   36.476181] mem_map[1642] ffffea00cd400000          3350000          3358000
[   36.490239] mem_map[1643] ffffea00cd600000          3358000          3360000
[   36.504311] mem_map[1644] ffffea00cd800000          3360000          3368000
[   36.518370] mem_map[1645] ffffea00cda00000          3368000          3370000
[   36.532426] mem_map[1646] ffffea00cdc00000          3370000          3378000
[   36.546484] mem_map[1647] ffffea00cde00000          3378000          3380000
[   36.560542] mem_map[1648] ffffea00ce000000          3380000          3388000
[   36.574599] mem_map[1649] ffffea00ce200000          3388000          3390000
[   36.588655] mem_map[1650] ffffea00ce400000          3390000          3398000
[   36.602713] mem_map[1651] ffffea00ce600000          3398000          33a0000
[   36.616772] mem_map[1652] ffffea00ce800000          33a0000          33a8000
[   36.630827] mem_map[1653] ffffea00cea00000          33a8000          33b0000
[   36.644885] mem_map[1654] ffffea00cec00000          33b0000          33b8000
[   36.658943] mem_map[1655] ffffea00cee00000          33b8000          33c0000
[   36.673001] mem_map[1656] ffffea00cf000000          33c0000          33c8000
[   36.687057] mem_map[1657] ffffea00cf200000          33c8000          33d0000
[   36.701115] mem_map[1658] ffffea00cf400000          33d0000          33d8000
[   36.715171] mem_map[1659] ffffea00cf600000          33d8000          33e0000
[   36.729228] mem_map[1660] ffffea00cf800000          33e0000          33e8000
[   36.743287] mem_map[1661] ffffea00cfa00000          33e8000          33f0000
[   36.757343] mem_map[1662] ffffea00cfc00000          33f0000          33f8000
[   36.771402] mem_map[1663] ffffea00cfe00000          33f8000          3400000
[   36.785458] mem_map[1664] ffffea00d0000000          3400000          3408000
[   36.799515] mem_map[1665] ffffea00d0200000          3408000          3410000
[   36.813573] mem_map[1666] ffffea00d0400000          3410000          3418000
[   36.827630] mem_map[1667] ffffea00d0600000          3418000          3420000
[   36.841686] mem_map[1668] ffffea00d0800000          3420000          3428000
[   36.855745] mem_map[1669] ffffea00d0a00000          3428000          3430000
[   36.869803] mem_map[1670] ffffea00d0c00000          3430000          3438000
[   36.883858] mem_map[1671] ffffea00d0e00000          3438000          3440000
[   36.897916] mem_map[1672] ffffea00d1000000          3440000          3448000
[   36.911974] mem_map[1673] ffffea00d1200000          3448000          3450000
[   36.926030] mem_map[1674] ffffea00d1400000          3450000          3458000
[   36.940088] mem_map[1675] ffffea00d1600000          3458000          3460000
[   36.954146] mem_map[1676] ffffea00d1800000          3460000          3468000
[   36.968202] mem_map[1677] ffffea00d1a00000          3468000          3470000
[   36.982260] mem_map[1678] ffffea00d1c00000          3470000          3478000
[   36.996318] mem_map[1679] ffffea00d1e00000          3478000          3480000
[   37.010374] mem_map[1680] ffffea00d2000000          3480000          3488000
[   37.024432] mem_map[1681] ffffea00d2200000          3488000          3490000
[   37.038489] mem_map[1682] ffffea00d2400000          3490000          3498000
[   37.052547] mem_map[1683] ffffea00d2600000          3498000          34a0000
[   37.066623] mem_map[1684] ffffea00d2800000          34a0000          34a8000
[   37.080678] mem_map[1685] ffffea00d2a00000          34a8000          34b0000
[   37.094736] mem_map[1686] ffffea00d2c00000          34b0000          34b8000
[   37.108793] mem_map[1687] ffffea00d2e00000          34b8000          34c0000
[   37.122851] mem_map[1688] ffffea00d3000000          34c0000          34c8000
[   37.136909] mem_map[1689] ffffea00d3200000          34c8000          34d0000
[   37.150966] mem_map[1690] ffffea00d3400000          34d0000          34d8000
[   37.165021] mem_map[1691] ffffea00d3600000          34d8000          34e0000
[   37.179081] mem_map[1692] ffffea00d3800000          34e0000          34e8000
[   37.193136] mem_map[1693] ffffea00d3a00000          34e8000          34f0000
[   37.207194] mem_map[1694] ffffea00d3c00000          34f0000          34f8000
[   37.221252] mem_map[1695] ffffea00d3e00000          34f8000          3500000
[   37.235310] mem_map[1696] ffffea00d4000000          3500000          3508000
[   37.249369] mem_map[1697] ffffea00d4200000          3508000          3510000
[   37.263440] mem_map[1698] ffffea00d4400000          3510000          3518000
[   37.277498] mem_map[1699] ffffea00d4600000          3518000          3520000
[   37.291556] mem_map[1700] ffffea00d4800000          3520000          3528000
[   37.305614] mem_map[1701] ffffea00d4a00000          3528000          3530000
[   37.319670] mem_map[1702] ffffea00d4c00000          3530000          3538000
[   37.333727] mem_map[1703] ffffea00d4e00000          3538000          3540000
[   37.347784] mem_map[1704] ffffea00d5000000          3540000          3548000
[   37.361842] mem_map[1705] ffffea00d5200000          3548000          3550000
[   37.375898] mem_map[1706] ffffea00d5400000          3550000          3558000
[   37.389956] mem_map[1707] ffffea00d5600000          3558000          3560000
[   37.404014] mem_map[1708] ffffea00d5800000          3560000          3568000
[   37.418072] mem_map[1709] ffffea00d5a00000          3568000          3570000
[   37.432128] mem_map[1710] ffffea00d5c00000          3570000          3578000
[   37.446184] mem_map[1711] ffffea00d5e00000          3578000          3580000
[   37.460243] mem_map[1712] ffffea00d6000000          3580000          3588000
[   37.474301] mem_map[1713] ffffea00d6200000          3588000          3590000
[   37.488358] mem_map[1714] ffffea00d6400000          3590000          3598000
[   37.502414] mem_map[1715] ffffea00d6600000          3598000          35a0000
[   37.516472] mem_map[1716] ffffea00d6800000          35a0000          35a8000
[   37.530528] mem_map[1717] ffffea00d6a00000          35a8000          35b0000
[   37.544585] mem_map[1718] ffffea00d6c00000          35b0000          35b8000
[   37.558644] mem_map[1719] ffffea00d6e00000          35b8000          35c0000
[   37.572702] mem_map[1720] ffffea00d7000000          35c0000          35c8000
[   37.586759] mem_map[1721] ffffea00d7200000          35c8000          35d0000
[   37.600814] mem_map[1722] ffffea00d7400000          35d0000          35d8000
[   37.614872] mem_map[1723] ffffea00d7600000          35d8000          35e0000
[   37.628931] mem_map[1724] ffffea00d7800000          35e0000          35e8000
[   37.642989] mem_map[1725] ffffea00d7a00000          35e8000          35f0000
[   37.657044] mem_map[1726] ffffea00d7c00000          35f0000          35f8000
[   37.671101] mem_map[1727] ffffea00d7e00000          35f8000          3600000
[   37.685160] mem_map[1728] ffffea00d8000000          3600000          3608000
[   37.699217] mem_map[1729] ffffea00d8200000          3608000          3610000
[   37.713273] mem_map[1730] ffffea00d8400000          3610000          3618000
[   37.727331] mem_map[1731] ffffea00d8600000          3618000          3620000
[   37.741390] mem_map[1732] ffffea00d8800000          3620000          3628000
[   37.755445] mem_map[1733] ffffea00d8a00000          3628000          3630000
[   37.769504] mem_map[1734] ffffea00d8c00000          3630000          3638000
[   37.783561] mem_map[1735] ffffea00d8e00000          3638000          3640000
[   37.797618] mem_map[1736] ffffea00d9000000          3640000          3648000
[   37.811676] mem_map[1737] ffffea00d9200000          3648000          3650000
[   37.825732] mem_map[1738] ffffea00d9400000          3650000          3658000
[   37.839789] mem_map[1739] ffffea00d9600000          3658000          3660000
[   37.853847] mem_map[1740] ffffea00d9800000          3660000          3668000
[   37.867904] mem_map[1741] ffffea00d9a00000          3668000          3670000
[   37.881962] mem_map[1742] ffffea00d9c00000          3670000          3678000
[   37.896018] mem_map[1743] ffffea00d9e00000          3678000          3680000
[   37.910077] mem_map[1744] ffffea00da000000          3680000          3688000
[   37.924134] mem_map[1745] ffffea00da200000          3688000          3690000
[   37.938190] mem_map[1746] ffffea00da400000          3690000          3698000
[   37.952248] mem_map[1747] ffffea00da600000          3698000          36a0000
[   37.966306] mem_map[1748] ffffea00da800000          36a0000          36a8000
[   37.980363] mem_map[1749] ffffea00daa00000          36a8000          36b0000
[   37.994419] mem_map[1750] ffffea00dac00000          36b0000          36b8000
[   38.008477] mem_map[1751] ffffea00dae00000          36b8000          36c0000
[   38.022536] mem_map[1752] ffffea00db000000          36c0000          36c8000
[   38.036591] mem_map[1753] ffffea00db200000          36c8000          36d0000
[   38.050650] mem_map[1754] ffffea00db400000          36d0000          36d8000
[   38.064706] mem_map[1755] ffffea00db600000          36d8000          36e0000
[   38.078764] mem_map[1756] ffffea00db800000          36e0000          36e8000
[   38.092821] mem_map[1757] ffffea00dba00000          36e8000          36f0000
[   38.106879] mem_map[1758] ffffea00dbc00000          36f0000          36f8000
[   38.120934] mem_map[1759] ffffea00dbe00000          36f8000          3700000
[   38.134992] mem_map[1760] ffffea00dc000000          3700000          3708000
[   38.149051] mem_map[1761] ffffea00dc200000          3708000          3710000
[   38.163109] mem_map[1762] ffffea00dc400000          3710000          3718000
[   38.177166] mem_map[1763] ffffea00dc600000          3718000          3720000
[   38.191221] mem_map[1764] ffffea00dc800000          3720000          3728000
[   38.205280] mem_map[1765] ffffea00dca00000          3728000          3730000
[   38.219336] mem_map[1766] ffffea00dcc00000          3730000          3738000
[   38.233395] mem_map[1767] ffffea00dce00000          3738000          3740000
[   38.247450] mem_map[1768] ffffea00dd000000          3740000          3748000
[   38.261509] mem_map[1769] ffffea00dd200000          3748000          3750000
[   38.275566] mem_map[1770] ffffea00dd400000          3750000          3758000
[   38.289623] mem_map[1771] ffffea00dd600000          3758000          3760000
[   38.303681] mem_map[1772] ffffea00dd800000          3760000          3768000
[   38.317736] mem_map[1773] ffffea00dda00000          3768000          3770000
[   38.331795] mem_map[1774] ffffea00ddc00000          3770000          3778000
[   38.345853] mem_map[1775] ffffea00dde00000          3778000          3780000
[   38.359909] mem_map[1776] ffffea00de000000          3780000          3788000
[   38.373967] mem_map[1777] ffffea00de200000          3788000          3790000
[   38.388024] mem_map[1778] ffffea00de400000          3790000          3798000
[   38.402082] mem_map[1779] ffffea00de600000          3798000          37a0000
[   38.416138] mem_map[1780] ffffea00de800000          37a0000          37a8000
[   38.430196] mem_map[1781] ffffea00dea00000          37a8000          37b0000
[   38.444253] mem_map[1782] ffffea00dec00000          37b0000          37b8000
[   38.458311] mem_map[1783] ffffea00dee00000          37b8000          37c0000
[   38.472367] mem_map[1784] ffffea00df000000          37c0000          37c8000
[   38.486425] mem_map[1785] ffffea00df200000          37c8000          37d0000
[   38.500481] mem_map[1786] ffffea00df400000          37d0000          37d8000
[   38.514540] mem_map[1787] ffffea00df600000          37d8000          37e0000
[   38.528598] mem_map[1788] ffffea00df800000          37e0000          37e8000
[   38.542654] mem_map[1789] ffffea00dfa00000          37e8000          37f0000
[   38.556712] mem_map[1790] ffffea00dfc00000          37f0000          37f8000
[   38.570768] mem_map[1791] ffffea00dfe00000          37f8000          3800000
[   38.584826] mem_map[1792] ffffea00e0000000          3800000          3808000
[   38.598884] mem_map[1793] ffffea00e0200000          3808000          3810000
[   38.612940] mem_map[1794] ffffea00e0400000          3810000          3818000
[   38.626999] mem_map[1795] ffffea00e0600000          3818000          3820000
[   38.641054] mem_map[1796] ffffea00e0800000          3820000          3828000
[   38.655112] mem_map[1797] ffffea00e0a00000          3828000          3830000
[   38.669171] mem_map[1798] ffffea00e0c00000          3830000          3838000
[   38.683228] mem_map[1799] ffffea00e0e00000          3838000          3840000
[   38.697283] mem_map[1800] ffffea00e1000000          3840000          3848000
[   38.711341] mem_map[1801] ffffea00e1200000          3848000          3850000
[   38.725399] mem_map[1802] ffffea00e1400000          3850000          3858000
[   38.739455] mem_map[1803] ffffea00e1600000          3858000          3860000
[   38.753513] mem_map[1804] ffffea00e1800000          3860000          3868000
[   38.767572] mem_map[1805] ffffea00e1a00000          3868000          3870000
[   38.781627] mem_map[1806] ffffea00e1c00000          3870000          3878000
[   38.795686] mem_map[1807] ffffea00e1e00000          3878000          3880000
[   38.809741] mem_map[1808] ffffea00e2000000          3880000          3888000
[   38.823799] mem_map[1809] ffffea00e2200000          3888000          3890000
[   38.837857] mem_map[1810] ffffea00e2400000          3890000          3898000
[   38.851914] mem_map[1811] ffffea00e2600000          3898000          38a0000
[   38.865973] mem_map[1812] ffffea00e2800000          38a0000          38a8000
[   38.880030] mem_map[1813] ffffea00e2a00000          38a8000          38b0000
[   38.894085] mem_map[1814] ffffea00e2c00000          38b0000          38b8000
[   38.908143] mem_map[1815] ffffea00e2e00000          38b8000          38c0000
[   38.922202] mem_map[1816] ffffea00e3000000          38c0000          38c8000
[   38.936258] mem_map[1817] ffffea00e3200000          38c8000          38d0000
[   38.950316] mem_map[1818] ffffea00e3400000          38d0000          38d8000
[   38.964374] mem_map[1819] ffffea00e3600000          38d8000          38e0000
[   38.978446] mem_map[1820] ffffea00e3800000          38e0000          38e8000
[   38.992505] mem_map[1821] ffffea00e3a00000          38e8000          38f0000
[   39.006562] mem_map[1822] ffffea00e3c00000          38f0000          38f8000
[   39.020620] mem_map[1823] ffffea00e3e00000          38f8000          3900000
[   39.034676] mem_map[1824] ffffea00e4000000          3900000          3908000
[   39.048734] mem_map[1825] ffffea00e4200000          3908000          3910000
[   39.062791] mem_map[1826] ffffea00e4400000          3910000          3918000
[   39.076850] mem_map[1827] ffffea00e4600000          3918000          3920000
[   39.090905] mem_map[1828] ffffea00e4800000          3920000          3928000
[   39.104962] mem_map[1829] ffffea00e4a00000          3928000          3930000
[   39.119019] mem_map[1830] ffffea00e4c00000          3930000          3938000
[   39.133076] mem_map[1831] ffffea00e4e00000          3938000          3940000
[   39.147135] mem_map[1832] ffffea00e5000000          3940000          3948000
[   39.161193] mem_map[1833] ffffea00e5200000          3948000          3950000
[   39.175250] mem_map[1834] ffffea00e5400000          3950000          3958000
[   39.189306] mem_map[1835] ffffea00e5600000          3958000          3960000
[   39.203363] mem_map[1836] ffffea00e5800000          3960000          3968000
[   39.217421] mem_map[1837] ffffea00e5a00000          3968000          3970000
[   39.231478] mem_map[1838] ffffea00e5c00000          3970000          3978000
[   39.245535] mem_map[1839] ffffea00e5e00000          3978000          3980000
[   39.259594] mem_map[1840] ffffea00e6000000          3980000          3988000
[   39.273651] mem_map[1841] ffffea00e6200000          3988000          3990000
[   39.287708] mem_map[1842] ffffea00e6400000          3990000          3998000
[   39.301764] mem_map[1843] ffffea00e6600000          3998000          39a0000
[   39.315822] mem_map[1844] ffffea00e6800000          39a0000          39a8000
[   39.329879] mem_map[1845] ffffea00e6a00000          39a8000          39b0000
[   39.343937] mem_map[1846] ffffea00e6c00000          39b0000          39b8000
[   39.357994] mem_map[1847] ffffea00e6e00000          39b8000          39c0000
[   39.372052] mem_map[1848] ffffea00e7000000          39c0000          39c8000
[   39.386107] mem_map[1849] ffffea00e7200000          39c8000          39d0000
[   39.400167] mem_map[1850] ffffea00e7400000          39d0000          39d8000
[   39.414224] mem_map[1851] ffffea00e7600000          39d8000          39e0000
[   39.428279] mem_map[1852] ffffea00e7800000          39e0000          39e8000
[   39.442338] mem_map[1853] ffffea00e7a00000          39e8000          39f0000
[   39.456396] mem_map[1854] ffffea00e7c00000          39f0000          39f8000
[   39.470452] mem_map[1855] ffffea00e7e00000          39f8000          3a00000
[   39.484510] mem_map[1856] ffffea00e8000000          3a00000          3a08000
[   39.498567] mem_map[1857] ffffea00e8200000          3a08000          3a10000
[   39.512641] mem_map[1858] ffffea00e8400000          3a10000          3a18000
[   39.526699] mem_map[1859] ffffea00e8600000          3a18000          3a20000
[   39.540758] mem_map[1860] ffffea00e8800000          3a20000          3a28000
[   39.554813] mem_map[1861] ffffea00e8a00000          3a28000          3a30000
[   39.568872] mem_map[1862] ffffea00e8c00000          3a30000          3a38000
[   39.582927] mem_map[1863] ffffea00e8e00000          3a38000          3a40000
[   39.596985] mem_map[1864] ffffea00e9000000          3a40000          3a48000
[   39.611044] mem_map[1865] ffffea00e9200000          3a48000          3a50000
[   39.625101] mem_map[1866] ffffea00e9400000          3a50000          3a58000
[   39.639173] mem_map[1867] ffffea00e9600000          3a58000          3a60000
[   39.653232] mem_map[1868] ffffea00e9800000          3a60000          3a68000
[   39.667290] mem_map[1869] ffffea00e9a00000          3a68000          3a70000
[   39.681348] mem_map[1870] ffffea00e9c00000          3a70000          3a78000
[   39.695403] mem_map[1871] ffffea00e9e00000          3a78000          3a80000
[   39.709461] mem_map[1872] ffffea00ea000000          3a80000          3a88000
[   39.723519] mem_map[1873] ffffea00ea200000          3a88000          3a90000
[   39.737577] mem_map[1874] ffffea00ea400000          3a90000          3a98000
[   39.751632] mem_map[1875] ffffea00ea600000          3a98000          3aa0000
[   39.765690] mem_map[1876] ffffea00ea800000          3aa0000          3aa8000
[   39.779748] mem_map[1877] ffffea00eaa00000          3aa8000          3ab0000
[   39.793806] mem_map[1878] ffffea00eac00000          3ab0000          3ab8000
[   39.807863] mem_map[1879] ffffea00eae00000          3ab8000          3ac0000
[   39.821919] mem_map[1880] ffffea00eb000000          3ac0000          3ac8000
[   39.835978] mem_map[1881] ffffea00eb200000          3ac8000          3ad0000
[   39.850033] mem_map[1882] ffffea00eb400000          3ad0000          3ad8000
[   39.864091] mem_map[1883] ffffea00eb600000          3ad8000          3ae0000
[   39.878149] mem_map[1884] ffffea00eb800000          3ae0000          3ae8000
[   39.892207] mem_map[1885] ffffea00eba00000          3ae8000          3af0000
[   39.906262] mem_map[1886] ffffea00ebc00000          3af0000          3af8000
[   39.920322] mem_map[1887] ffffea00ebe00000          3af8000          3b00000
[   39.934377] mem_map[1888] ffffea00ec000000          3b00000          3b08000
[   39.948435] mem_map[1889] ffffea00ec200000          3b08000          3b10000
[   39.962493] mem_map[1890] ffffea00ec400000          3b10000          3b18000
[   39.976549] mem_map[1891] ffffea00ec600000          3b18000          3b20000
[   39.990607] mem_map[1892] ffffea00ec800000          3b20000          3b28000
[   40.004665] mem_map[1893] ffffea00eca00000          3b28000          3b30000
[   40.018723] mem_map[1894] ffffea00ecc00000          3b30000          3b38000
[   40.032779] mem_map[1895] ffffea00ece00000          3b38000          3b40000
[   40.046837] mem_map[1896] ffffea00ed000000          3b40000          3b48000
[   40.060892] mem_map[1897] ffffea00ed200000          3b48000          3b50000
[   40.074952] mem_map[1898] ffffea00ed400000          3b50000          3b58000
[   40.089007] mem_map[1899] ffffea00ed600000          3b58000          3b60000
[   40.103083] mem_map[1900] ffffea00ed800000          3b60000          3b68000
[   40.117140] mem_map[1901] ffffea00eda00000          3b68000          3b70000
[   40.131198] mem_map[1902] ffffea00edc00000          3b70000          3b78000
[   40.145253] mem_map[1903] ffffea00ede00000          3b78000          3b80000
[   40.159311] mem_map[1904] ffffea00ee000000          3b80000          3b88000
[   40.173369] mem_map[1905] ffffea00ee200000          3b88000          3b90000
[   40.187427] mem_map[1906] ffffea00ee400000          3b90000          3b98000
[   40.201484] mem_map[1907] ffffea00ee600000          3b98000          3ba0000
[   40.215540] mem_map[1908] ffffea00ee800000          3ba0000          3ba8000
[   40.229597] mem_map[1909] ffffea00eea00000          3ba8000          3bb0000
[   40.243656] mem_map[1910] ffffea00eec00000          3bb0000          3bb8000
[   40.257714] mem_map[1911] ffffea00eee00000          3bb8000          3bc0000
[   40.271769] mem_map[1912] ffffea00ef000000          3bc0000          3bc8000
[   40.285827] mem_map[1913] ffffea00ef200000          3bc8000          3bd0000
[   40.299885] mem_map[1914] ffffea00ef400000          3bd0000          3bd8000
[   40.313942] mem_map[1915] ffffea00ef600000          3bd8000          3be0000
[   40.328000] mem_map[1916] ffffea00ef800000          3be0000          3be8000
[   40.342057] mem_map[1917] ffffea00efa00000          3be8000          3bf0000
[   40.356113] mem_map[1918] ffffea00efc00000          3bf0000          3bf8000
[   40.370171] mem_map[1919] ffffea00efe00000          3bf8000          3c00000
[   40.384229] mem_map[1920] ffffea00f0000000          3c00000          3c08000
[   40.398287] mem_map[1921] ffffea00f0200000          3c08000          3c10000
[   40.412342] mem_map[1922] ffffea00f0400000          3c10000          3c18000
[   40.426401] mem_map[1923] ffffea00f0600000          3c18000          3c20000
[   40.440457] mem_map[1924] ffffea00f0800000          3c20000          3c28000
[   40.454516] mem_map[1925] ffffea00f0a00000          3c28000          3c30000
[   40.468571] mem_map[1926] ffffea00f0c00000          3c30000          3c38000
[   40.482628] mem_map[1927] ffffea00f0e00000          3c38000          3c40000
[   40.496686] mem_map[1928] ffffea00f1000000          3c40000          3c48000
[   40.510745] mem_map[1929] ffffea00f1200000          3c48000          3c50000
[   40.524801] mem_map[1930] ffffea00f1400000          3c50000          3c58000
[   40.538859] mem_map[1931] ffffea00f1600000          3c58000          3c60000
[   40.552916] mem_map[1932] ffffea00f1800000          3c60000          3c68000
[   40.566972] mem_map[1933] ffffea00f1a00000          3c68000          3c70000
[   40.581029] mem_map[1934] ffffea00f1c00000          3c70000          3c78000
[   40.595087] mem_map[1935] ffffea00f1e00000          3c78000          3c80000
[   40.609145] mem_map[1936] ffffea00f2000000          3c80000          3c88000
[   40.623203] mem_map[1937] ffffea00f2200000          3c88000          3c90000
[   40.637261] mem_map[1938] ffffea00f2400000          3c90000          3c98000
[   40.651316] mem_map[1939] ffffea00f2600000          3c98000          3ca0000
[   40.665373] mem_map[1940] ffffea00f2800000          3ca0000          3ca8000
[   40.679431] mem_map[1941] ffffea00f2a00000          3ca8000          3cb0000
[   40.693488] mem_map[1942] ffffea00f2c00000          3cb0000          3cb8000
[   40.707546] mem_map[1943] ffffea00f2e00000          3cb8000          3cc0000
[   40.721604] mem_map[1944] ffffea00f3000000          3cc0000          3cc8000
[   40.735661] mem_map[1945] ffffea00f3200000          3cc8000          3cd0000
[   40.749719] mem_map[1946] ffffea00f3400000          3cd0000          3cd8000
[   40.763774] mem_map[1947] ffffea00f3600000          3cd8000          3ce0000
[   40.777832] mem_map[1948] ffffea00f3800000          3ce0000          3ce8000
[   40.791889] mem_map[1949] ffffea00f3a00000          3ce8000          3cf0000
[   40.805948] mem_map[1950] ffffea00f3c00000          3cf0000          3cf8000
[   40.820004] mem_map[1951] ffffea00f3e00000          3cf8000          3d00000
[   40.834062] mem_map[1952] ffffea00f4000000          3d00000          3d08000
[   40.848120] mem_map[1953] ffffea00f4200000          3d08000          3d10000
[   40.862175] mem_map[1954] ffffea00f4400000          3d10000          3d18000
[   40.876232] mem_map[1955] ffffea00f4600000          3d18000          3d20000
[   40.890290] mem_map[1956] ffffea00f4800000          3d20000          3d28000
[   40.904348] mem_map[1957] ffffea00f4a00000          3d28000          3d30000
[   40.918406] mem_map[1958] ffffea00f4c00000          3d30000          3d38000
[   40.932463] mem_map[1959] ffffea00f4e00000          3d38000          3d40000
[   40.946519] mem_map[1960] ffffea00f5000000          3d40000          3d48000
[   40.960577] mem_map[1961] ffffea00f5200000          3d48000          3d50000
[   40.974636] mem_map[1962] ffffea00f5400000          3d50000          3d58000
[   40.988691] mem_map[1963] ffffea00f5600000          3d58000          3d60000
[   41.002749] mem_map[1964] ffffea00f5800000          3d60000          3d68000
[   41.016807] mem_map[1965] ffffea00f5a00000          3d68000          3d70000
[   41.030864] mem_map[1966] ffffea00f5c00000          3d70000          3d78000
[   41.044922] mem_map[1967] ffffea00f5e00000          3d78000          3d80000
[   41.058979] mem_map[1968] ffffea00f6000000          3d80000          3d88000
[   41.073034] mem_map[1969] ffffea00f6200000          3d88000          3d90000
[   41.087093] mem_map[1970] ffffea00f6400000          3d90000          3d98000
[   41.101150] mem_map[1971] ffffea00f6600000          3d98000          3da0000
[   41.115207] mem_map[1972] ffffea00f6800000          3da0000          3da8000
[   41.129265] mem_map[1973] ffffea00f6a00000          3da8000          3db0000
[   41.143323] mem_map[1974] ffffea00f6c00000          3db0000          3db8000
[   41.157380] mem_map[1975] ffffea00f6e00000          3db8000          3dc0000
[   41.171435] mem_map[1976] ffffea00f7000000          3dc0000          3dc8000
[   41.185494] mem_map[1977] ffffea00f7200000          3dc8000          3dd0000
[   41.199552] mem_map[1978] ffffea00f7400000          3dd0000          3dd8000
[   41.213608] mem_map[1979] ffffea00f7600000          3dd8000          3de0000
[   41.227665] mem_map[1980] ffffea00f7800000          3de0000          3de8000
[   41.241723] mem_map[1981] ffffea00f7a00000          3de8000          3df0000
[   41.255781] mem_map[1982] ffffea00f7c00000          3df0000          3df8000
[   41.269838] mem_map[1983] ffffea00f7e00000          3df8000          3e00000
[   41.283894] mem_map[1984] ffffea00f8000000          3e00000          3e08000
[   41.297951] mem_map[1985] ffffea00f8200000          3e08000          3e10000
[   41.312009] mem_map[1986] ffffea00f8400000          3e10000          3e18000
[   41.326067] mem_map[1987] ffffea00f8600000          3e18000          3e20000
[   41.340125] mem_map[1988] ffffea00f8800000          3e20000          3e28000
[   41.354180] mem_map[1989] ffffea00f8a00000          3e28000          3e30000
[   41.368238] mem_map[1990] ffffea00f8c00000          3e30000          3e38000
[   41.382296] mem_map[1991] ffffea00f8e00000          3e38000          3e40000
[   41.396353] mem_map[1992] ffffea00f9000000          3e40000          3e48000
[   41.410411] mem_map[1993] ffffea00f9200000          3e48000          3e50000
[   41.424467] mem_map[1994] ffffea00f9400000          3e50000          3e58000
[   41.438526] mem_map[1995] ffffea00f9600000          3e58000          3e60000
[   41.452584] mem_map[1996] ffffea00f9800000          3e60000          3e68000
[   41.466638] mem_map[1997] ffffea00f9a00000          3e68000          3e70000
[   41.480696] mem_map[1998] ffffea00f9c00000          3e70000          3e78000
[   41.494754] mem_map[1999] ffffea00f9e00000          3e78000          3e80000
[   41.508812] mem_map[2000] ffffea00fa000000          3e80000          3e88000
[   41.522868] mem_map[2001] ffffea00fa200000          3e88000          3e90000
[   41.536926] mem_map[2002] ffffea00fa400000          3e90000          3e98000
[   41.550985] mem_map[2003] ffffea00fa600000          3e98000          3ea0000
[   41.565039] mem_map[2004] ffffea00fa800000          3ea0000          3ea8000
[   41.579098] mem_map[2005] ffffea00faa00000          3ea8000          3eb0000
[   41.593155] mem_map[2006] ffffea00fac00000          3eb0000          3eb8000
[   41.607214] mem_map[2007] ffffea00fae00000          3eb8000          3ec0000
[   41.621269] mem_map[2008] ffffea00fb000000          3ec0000          3ec8000
[   41.635328] mem_map[2009] ffffea00fb200000          3ec8000          3ed0000
[   41.649386] mem_map[2010] ffffea00fb400000          3ed0000          3ed8000
[   41.663443] mem_map[2011] ffffea00fb600000          3ed8000          3ee0000
[   41.677498] mem_map[2012] ffffea00fb800000          3ee0000          3ee8000
[   41.691557] mem_map[2013] ffffea00fba00000          3ee8000          3ef0000
[   41.705614] mem_map[2014] ffffea00fbc00000          3ef0000          3ef8000
[   41.719672] mem_map[2015] ffffea00fbe00000          3ef8000          3f00000
[   41.733727] mem_map[2016] ffffea00fc000000          3f00000          3f08000
[   41.747785] mem_map[2017] ffffea00fc200000          3f08000          3f10000
[   41.761844] mem_map[2018] ffffea00fc400000          3f10000          3f18000
[   41.775901] mem_map[2019] ffffea00fc600000          3f18000          3f20000
[   41.789956] mem_map[2020] ffffea00fc800000          3f20000          3f28000
[   41.804013] mem_map[2021] ffffea00fca00000          3f28000          3f30000
[   41.818071] mem_map[2022] ffffea00fcc00000          3f30000          3f38000
[   41.832130] mem_map[2023] ffffea00fce00000          3f38000          3f40000
[   41.846238] mem_map[2024] ffffea00fd000000          3f40000          3f48000
[   41.860313] mem_map[2025] ffffea00fd200000          3f48000          3f50000
[   41.874389] mem_map[2026] ffffea00fd400000          3f50000          3f58000
[   41.888444] mem_map[2027] ffffea00fd600000          3f58000          3f60000
[   41.902503] mem_map[2028] ffffea00fd800000          3f60000          3f68000
[   41.916770] mem_map[2029] ffffea00fda00000          3f68000          3f70000
[   41.930910] mem_map[2030] ffffea00fdc00000          3f70000          3f78000
[   41.945073] mem_map[2031] ffffea00fde00000          3f78000          3f80000
[   41.959247] mem_map[2032] ffffea00fe000000          3f80000          3f88000
[   41.973420] mem_map[2033] ffffea00fe200000          3f88000          3f90000
[   41.987603] mem_map[2034] ffffea00fe400000          3f90000          3f98000
[   42.001785] mem_map[2035] ffffea00fe600000          3f98000          3fa0000
[   42.015983] mem_map[2036] ffffea00fe800000          3fa0000          3fa8000
[   42.030182] mem_map[2037] ffffea00fea00000          3fa8000          3fb0000
[   42.044301] mem_map[2038] ffffea00fec00000          3fb0000          3fb8000
[   42.058711] mem_map[2039] ffffea00fee00000          3fb8000          3fc0000
[   42.072899] mem_map[2040] ffffea00ff000000          3fc0000          3fc8000
[   42.087310] mem_map[2041] ffffea00ff200000          3fc8000          3fd0000
[   42.101545] mem_map[2042] ffffea00ff400000          3fd0000          3fd8000
[   42.116204] mem_map[2043] ffffea00ff600000          3fd8000          3fe0000
[   42.130359] mem_map[2044] ffffea00ff800000          3fe0000          3fe8000
[   42.144775] mem_map[2045] ffffea00ffa00000          3fe8000          3ff0000
[   42.158941] mem_map[2046] ffffea00ffc00000          3ff0000          3ff8000
[   42.173302] mem_map[2047] ffffea00ffe00000          3ff8000          4000000
[   42.187691] mem_map[2048] ffffea0100000000          4000000          4008000
[   42.201912] mem_map[2049] ffffea0100200000          4008000          4010000
[   42.216063] mem_map[2050] ffffea0100400000          4010000          4018000
[   42.230320] mem_map[2051] ffffea0100600000          4018000          4020000
[   42.244742] mem_map[2052] ffffea0100800000          4020000          4028000
[   42.258864] mem_map[2053] ffffea0100a00000          4028000          4030000
[   42.273225] mem_map[2054] ffffea0100c00000          4030000          4038000
[   42.287477] mem_map[2055] ffffea0100e00000          4038000          4040000
[   42.301842] mem_map[2056] ffffea0101000000          4040000          4048000
[   42.316027] mem_map[2057] ffffea0101200000          4048000          4050000
[   42.330238] mem_map[2058] ffffea0101400000          4050000          4058000
[   42.344563] mem_map[2059] ffffea0101600000          4058000          4060000
[   42.358854] mem_map[2060] ffffea0101800000          4060000          4068000
[   42.373091] mem_map[2061] ffffea0101a00000          4068000          4070000
[   42.387360] mem_map[2062] ffffea0101c00000          4070000          4078000
[   42.401612] mem_map[2063] ffffea0101e00000          4078000          4080000
[   42.415846] mmap() is available on the kernel.
[   42.426786] STEP [Checking for memory holes  ] : 0.000205 seconds
[   43.745026] STEP [Excluding unnecessary pages] : 1.306054 seconds
[   45.126562] STEP [Checking for memory holes  ] : 0.000209 seconds
[   46.432266] STEP [Excluding unnecessary pages] : 1.293525 seconds
[   47.813437] STEP [Checking for memory holes  ] : 0.000004 seconds
[   47.843154] STEP [Excluding unnecessary pages] : 0.017530 seconds
[   48.081534] STEP [Checking for memory holes  ] : 0.000002 seconds
[   48.094070] STEP [Excluding unnecessary pages] : 0.000355 seconds
[   48.110491] STEP [Checking for memory holes  ] : 0.000000 seconds
[   48.122737] STEP [Excluding unnecessary pages] : 0.000078 seconds
[   48.135136] STEP [Checking for memory holes  ] : 0.000000 seconds
[   48.147353] STEP [Excluding unnecessary pages] : 0.000049 seconds
[   48.159749] STEP [Checking for memory holes  ] : 0.000000 seconds
[   48.171986] STEP [Excluding unnecessary pages] : 0.000070 seconds
[   48.184394] STEP [Checking for memory holes  ] : 0.000001 seconds
[   48.202655] STEP [Excluding unnecessary pages] : 0.006088 seconds
[   48.222960] STEP [Checking for memory holes  ] : 0.000003 seconds
[   48.249873] STEP [Excluding unnecessary pages] : 0.014741 seconds
[   48.295019] STEP [Checking for memory holes  ] : 0.000203 seconds
[   49.595695] STEP [Excluding unnecessary pages] : 1.288500 seconds
[   51.062750] STEP [Checking for memory holes  ] : 0.000207 seconds
[   52.325802] STEP [Excluding unnecessary pages] : 1.250863 seconds
[   53.778260] STEP [Checking for memory holes  ] : 0.000004 seconds
[   53.808035] STEP [Excluding unnecessary pages] : 0.017593 seconds
[   54.074889] STEP [Checking for memory holes  ] : 0.000001 seconds
[   54.087431] STEP [Excluding unnecessary pages] : 0.000370 seconds
[   54.144687] STEP [Checking for memory holes  ] : 0.000002 seconds
[   54.157100] STEP [Excluding unnecessary pages] : 0.000106 seconds
[   54.169844] STEP [Checking for memory holes  ] : 0.000000 seconds
[   54.182151] STEP [Excluding unnecessary pages] : 0.000049 seconds
[   54.194749] STEP [Checking for memory holes  ] : 0.000000 seconds
[   54.206986] STEP [Excluding unnecessary pages] : 0.000072 seconds
[   54.219393] STEP [Checking for memory holes  ] : 0.000001 seconds
[   54.237839] STEP [Excluding unnecessary pages] : 0.006275 seconds
[   54.396665] STEP [Checking for memory holes  ] : 0.000004 seconds
[   54.424813] STEP [Excluding unnecessary pages] : 0.015567 seconds
[   54.610900] STEP [Checking for memory holes  ] : 0.000205 seconds
[   55.934084] STEP [Excluding unnecessary pages] : 1.310651 seconds
[   74.211674] random: crng init done
[  395.626875] STEP [Checking for memory holes  ] : 0.000207 seconds
[  396.908657] STEP [Excluding unnecessary pages] : 1.269584 seconds
[  507.663589] STEP [Checking for memory holes  ] : 0.000004 seconds
[  507.693514] STEP [Excluding unnecessary pages] : 0.017719 seconds
[  518.798084] STEP [Copying data               ] : 464.724437 seconds
[  518.810615] erase info size: 0
[  518.816717] 
[  518.819690] Original pages  : 0x0000000000000000
[  518.828894]   Excluded pages   : 0x0000000003decd15
[  518.838635]     Pages filled with zero  : 0x00000000000210ee
[  518.849920]     Non-private cache pages : 0x000000000000271a
[  518.861218]     Private cache pages     : 0x000000000000da47
[  518.872502]     User process data pages : 0x0000000003d6bdc8
[  518.883786]     Free pages              : 0x000000000004fcfe
[  518.895070]     Hwpoison pages          : 0x0000000000000000
[  518.906356]     Offline pages           : 0x0000000000000000
[  518.917659]   Remaining pages  : 0xfffffffffc2132eb
[  518.927398] Memory Hole     : 0x0000000004080000
[  518.936621] --------------------------------------------------
[  518.948267] Total pages     : 0x0000000004080000
[  518.957487] 
[  518.960454] Cache hit: 21207881, miss: 138019
[  518.960460] , hit rate: 99.4%


[-- Attachment #3: Type: text/plain, Size: 143 bytes --]

_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: makedumpfile: Fix divide by zero in print_report()
  2019-10-04 17:03       ` Dave Jones
@ 2019-10-07 20:13         ` Kazuhito Hagio
  2019-10-08 21:37           ` Dave Jones
  0 siblings, 1 reply; 6+ messages in thread
From: Kazuhito Hagio @ 2019-10-07 20:13 UTC (permalink / raw)
  To: Dave Jones; +Cc: kexec

> -----Original Message-----
> On Fri, Sep 27, 2019 at 08:39:04PM +0000, Kazuhito Hagio wrote:
>  > > -----Original Message-----
>  > > On Thu, Sep 26, 2019 at 06:41:48PM +0000, Kazuhito Hagio wrote:
>  > >
>  > >  > > -----Original Message-----
>  > >  > > If info->max_mapnr and pfn_memhole are equal, we divide by zero when
>  > >  > > trying determine the 'shrinking' value.
>  > >  > >
>  > >  > > On the system I saw this error, we arrived at this function with
>  > >  > > info->max_mapnr:0x0000000001080000 pfn_memhole:0x0000000001080000
>  > >  >
>  > >  > Thank you for the patch.
>  > >  > I suppose that you see the error with the -E option, right?
>  > >  >
>  > >  > It seems that the -E option has some problems with its statistics,
>  > >  > so I'm checking whether there is a better way to fix this.
>  > >
>  > > Yes, we use the -E option.
>  > > We manage to get useful info from the generated dump after this fix, so
>  > > it seems it only affects the statistics output.
>  >
>  > OK, the statistics in cyclic mode with the -E option is completely wrong
>  > but a possible fix is likely to affect the whole of cyclic processing, so
>  > I just cover the hole with your patch and leave the statistics problem as
>  > a known issue at this time.  I would revisit it when I have time.
>  >
>  > The patch was applied to the devel branch.
> 
> While this patch does avoid the divide by zero, some further analysis
> shows that there seems to be some deeper problem when we encounter this
> 'original pages = 0' situation.
> 
> Take a look at the attached output from makedumpfile.
> 
> Key part in the summary:
> 
> [  518.819690] Original pages  : 0x0000000000000000
> [  518.828894]   Excluded pages   : 0x0000000003decd15
> [  518.838635]     Pages filled with zero  : 0x00000000000210ee
> [  518.849920]     Non-private cache pages : 0x000000000000271a
> [  518.861218]     Private cache pages     : 0x000000000000da47
> [  518.872502]     User process data pages : 0x0000000003d6bdc8
> [  518.883786]     Free pages              : 0x000000000004fcfe
> [  518.895070]     Hwpoison pages          : 0x0000000000000000
> [  518.906356]     Offline pages           : 0x0000000000000000
> [  518.917659]   Remaining pages  : 0xfffffffffc2132eb
> [  518.927398] Memory Hole     : 0x0000000004080000
> 
> In this case, 'remaining pages' has gone negative which looks concerning.

This is the known issue that I wrote above and am looking for a safe fix.
How does this patch work?

--- a/makedumpfile.c
+++ b/makedumpfile.c
@@ -56,6 +56,9 @@ static void first_cycle(mdf_pfn_t start, mdf_pfn_t max, struct cycle *cycle)
	if (cycle->end_pfn > max)
		cycle->end_pfn = max;
 
+	if (cycle->start_pfn < start)
+		cycle->start_pfn = start;
+
	cycle->exclude_pfn_start = 0;
	cycle->exclude_pfn_end = 0;
 }
@@ -7595,6 +7598,9 @@ write_elf_pages_cyclic(struct cache_data *cd_header, struct cache_data *cd_page)
			}
 
			for (pfn = MAX(pfn_start, cycle.start_pfn); pfn < cycle.end_pfn; pfn++) {
+				if (info->flag_cyclic)
+					pfn_memhole--;
+
				if (!is_dumpable(info->bitmap2, pfn, &cycle)) {
					num_excluded++;
					if ((pfn == pfn_end - 1) && frac_tail)

If it looks good, I'll look into its side effects further,
but might take some time..

> 
> And the crashdump seems corrupt:
> 
> 'crash' complains:
> WARNING: possibly corrupt Elf64_Nhdr: n_namesz: 2079035392 n_descsz: 3 n_type: 1000
> 
> vmcore-dmesg complains "Missing the log_buf symbol", even though the makedumpfile log
> shows it was present at ffffffff822510a0
> 
> Readelf seems to think the notes sections are mangled.
> 
> # readelf -n vmcore
> 
> Displaying notes found at file offset 0x00015468 with length 0x0000556c:
>   Owner                 Data size       Description
>                        0x00000007       Unknown note type: (0x727c79d4)
> readelf: vmcore: Warning: Corrupt note: name size is too big: 7beb9000
>   (NONE)               0x00000003       Unknown note type: (0x00001000)
> readelf: vmcore: Warning: Corrupt note: name size is too big: 55a000
>   (NONE)               0x00000000       Unknown note type: (0x00000000)
>   (NONE)               0x00000001       Unknown note type: (0x00000007)
> readelf: vmcore: Warning: note with invalid namesz and/or descsz found at offset 0x44
> readelf: vmcore: Warning:  type: 0xffff8803, namesize: 0x00000000, descsize: 0x7c413000

I don't think that the statistics issue corrupts a dumpfile itself
so far.  Could you show me the output of "readelf -a vmcore"?
Does this issue always reproduce?

Thanks,
Kazu

> 
> 
> 
> Any thoughts on where to add additional debugging in makedumpfile ?
> 
> 	Dave



_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: makedumpfile: Fix divide by zero in print_report()
  2019-10-07 20:13         ` Kazuhito Hagio
@ 2019-10-08 21:37           ` Dave Jones
  0 siblings, 0 replies; 6+ messages in thread
From: Dave Jones @ 2019-10-08 21:37 UTC (permalink / raw)
  To: Kazuhito Hagio; +Cc: kexec

On Mon, Oct 07, 2019 at 08:13:07PM +0000, Kazuhito Hagio wrote:
 
 > > [  518.819690] Original pages  : 0x0000000000000000
 > > [  518.828894]   Excluded pages   : 0x0000000003decd15
 > > [  518.838635]     Pages filled with zero  : 0x00000000000210ee
 > > [  518.849920]     Non-private cache pages : 0x000000000000271a
 > > [  518.861218]     Private cache pages     : 0x000000000000da47
 > > [  518.872502]     User process data pages : 0x0000000003d6bdc8
 > > [  518.883786]     Free pages              : 0x000000000004fcfe
 > > [  518.895070]     Hwpoison pages          : 0x0000000000000000
 > > [  518.906356]     Offline pages           : 0x0000000000000000
 > > [  518.917659]   Remaining pages  : 0xfffffffffc2132eb
 > > [  518.927398] Memory Hole     : 0x0000000004080000
 >
 > This is the known issue that I wrote above and am looking for a safe fix.
 > How does this patch work?

I'll give this a try, and see how it goes for a few days.

 > If it looks good, I'll look into its side effects further,
 > but might take some time..


 > > And the crashdump seems corrupt:
 > > 
 > Could you show me the output of "readelf -a vmcore"?

See below.

 > Does this issue always reproduce?

Not 100% the time. Sometimes we do get valid dumps from these hosts.
My guess so far is that it has something to do with how much of memory
makedumpfile was able to discard with -d31


Common case seems to be:

<F28>ELF Header:
  Magic:   7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00 
  Class:                             ELF64
  Data:                              2's complement, little endian
  Version:                           1 (current)
  OS/ABI:                            UNIX - System V
  ABI Version:                       0
  Type:                              CORE (Core file)
  Machine:                           Advanced Micro Devices X86-64
  Version:                           0x1
  Entry point address:               0x0
  Start of program headers:          64 (bytes into file)
  Start of section headers:          0 (bytes into file)
  Flags:                             0x0
  Size of this header:               64 (bytes)
  Size of program headers:           56 (bytes)
  Number of program headers:         23881
  Size of section headers:           0 (bytes)
  Number of section headers:         0
  Section header string table index: 0

There are no sections in this file.

There are no sections to group in this file.

Program Headers:
  Type           Offset             VirtAddr           PhysAddr
                 FileSiz            MemSiz              Flags  Align
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
... <repeats for thousands of lines>
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0
  NULL           0x0000000000000000 0x0000000000000000 0x0000000000000000
                 0x0000000000000000 0x0000000000000000         0

There is no dynamic section in this file.

There are no relocations in this file.

The decoding of unwind sections for machine type Advanced Micro Devices X86-64 is not currently supported.

Dynamic symbol information is not available for displaying symbols.

No version information found in this file.



There are some other failure cases with non-null data, so maybe there's >1 bug here.
I've not seen an obvious pattern to this. eg...

https://pastebin.com/2uM4sBCF



I'll put your patch on some of the affected hosts and see if this
changes behaviour in any way.

thanks,
	Dave


_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-10-08 21:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20190924194005.GA7666@codemonkey.org.uk>
2019-09-26 18:41 ` makedumpfile: Fix divide by zero in print_report() Kazuhito Hagio
2019-09-26 19:32   ` Dave Jones
2019-09-27 20:39     ` Kazuhito Hagio
2019-10-04 17:03       ` Dave Jones
2019-10-07 20:13         ` Kazuhito Hagio
2019-10-08 21:37           ` Dave Jones

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.