Updated per issue #70

This commit is contained in:
Ajay Nath 2020-09-22 09:58:03 -04:00
parent 3c50837a75
commit f32b634c16
1 changed files with 3 additions and 2 deletions

View File

@ -1959,8 +1959,9 @@ sub dump_whisper_config{#{{{
collect_mem_protection("data", $config, \@data_mem_prot);
$jh{memmap}{inst} = [@inst_mem_prot] if @inst_mem_prot;
$jh{memmap}{data} = [@data_mem_prot] if @data_mem_prot;
foreach my $tag (qw ( size page_size serialio )) {
$jh{memmap}{tag} = $config{memmap}{ta} if exists $config{memmap}{tag};
$config{memmap}{consoleio} = $config{memmap}{serialio} if exists $config{memmap}{serialio};
foreach my $tag (qw (size page_size serialio consoleio)) {
$jh{memmap}{$tag} = $config{memmap}{$tag} if exists $config{memmap}{$tag};
}
# Collect load/store-error rollback parameter.