[RFC] xen/x86: allow overlaps with non-RAM regions

Stefano Stabellini posted 1 patch 7 months ago
Failed in applying to current master (apply log)
[RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Stefano Stabellini 7 months ago
On one Sapphire AMD x86 board, I see this:


(XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
[...]
(XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position


Linux boots fine on this platform but Linux as Dom0 on Xen does not.
This is because the pci_check_bar->is_memory_hole check fails due to the
MMIO region overlapping with the EFI reserved region.

While I think ideally this should not happen, as you can imagine users
are never happy when Linux baremetal boots fine, and Linux on Xen does
not.

This patch fixes the boot issue by relaxing the is_memory_hole check.

Signed-off-by: Stefano Stabellini <stefano.stabellini@amd.com>

diff --git a/xen/arch/x86/mm.c b/xen/arch/x86/mm.c
index b294497a14..afb54d6f0f 100644
--- a/xen/arch/x86/mm.c
+++ b/xen/arch/x86/mm.c
@@ -797,6 +797,9 @@ bool is_memory_hole(mfn_t start, mfn_t end)
         if ( !entry->size )
             continue;
 
+        if ( entry->type > 1 )
+            continue;
+
         /* Do not allow overlaps with any memory range. */
         if ( s <= PFN_DOWN(entry->addr + entry->size - 1) &&
              PFN_DOWN(entry->addr) <= e )
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 7 months ago
On Thu, Apr 03, 2025 at 06:01:42PM -0700, Stefano Stabellini wrote:
> On one Sapphire AMD x86 board, I see this:
> 
> 
> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
> [...]
> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
> 
> 
> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
> This is because the pci_check_bar->is_memory_hole check fails due to the
> MMIO region overlapping with the EFI reserved region.

That's weird.  (Partially) the reason to not attempt to map such BAR
is that it should already be mapped, because at dom0 creation time all
reserved regions are added to the p2m (see arch_iommu_hwdom_init()).
If that's not the case we should figure out why this reserved region
is not added to dom0 p2m as part of arch_iommu_hwdom_init().

Can you paste the dom0 build output when booted with `iommu=verbose
dom0=pvh,verbose`?  Does using `dom0=pvh,verbose,pf-fixup` solve the
boot issue? (and can you paste the output if it does)

The issue with allowing BARs to modify p2m reserved regions is that if
memory decoding is disabled for the PCI device, the BAR will be
unmapped from the p2m, thus creating a hole in the p2m for a reserved
region, which would be undesirable IMO.

Thanks, Roger.
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jason Andryuk 6 months, 3 weeks ago
On 2025-04-04 06:28, Roger Pau Monné wrote:
> On Thu, Apr 03, 2025 at 06:01:42PM -0700, Stefano Stabellini wrote:
>> On one Sapphire AMD x86 board, I see this:
>>
>>
>> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
>> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
>> [...]
>> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
>>
>>
>> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
>> This is because the pci_check_bar->is_memory_hole check fails due to the
>> MMIO region overlapping with the EFI reserved region.
> 
> That's weird.  (Partially) the reason to not attempt to map such BAR
> is that it should already be mapped, because at dom0 creation time all
> reserved regions are added to the p2m (see arch_iommu_hwdom_init()).
> If that's not the case we should figure out why this reserved region
> is not added to dom0 p2m as part of arch_iommu_hwdom_init().

Victor discovered these regions are type 11 EfiMemoryMappedIO, but they 
get converted to e820 RESERVED.  The BAR points into it.

00000f0000000-00000f7ffffff type=11 attr=800000000000100d
00000fd000000-00000fedfffff type=11 attr=800000000000100d
00000fee00000-00000fee00fff type=11 attr=8000000000000001
00000fee01000-00000ffffffff type=11 attr=800000000000100d

Xenia discovered Linux keeps small regions like this reserved, but lets 
larger ones (>= 256kb) become holes.  See the comment in Linux 
arch/x86/platform/efi/efi.c:efi_remove_e820_mmio() around line 301.

The description of EfiMemoryMappedIO is a little confusing, which is 
probably why its use in unclear.

```
Table 7.5 Memory Type Usage before ExitBootServices()
EfiMemoryMappedIO

Used by system firmware to request that a memory-mapped IO region be 
mapped by the OS to a virtual address so it can be accessed by EFI 
runtime services.

Table 7.6 Memory Type Usage after ExitBootServices()
EfiMemoryMappedIO

This memory is not used by the OS. All system memory-mapped IO 
information should come from ACPI tables.
```

The two after ExitBootServices sentences seem contradictory.  I wonder 
if it should be "Ignore this memory type - All system memory-mapped IO 
information should come from ACPI tables".

> Can you paste the dom0 build output when booted with `iommu=verbose
> dom0=pvh,verbose`?  Does using `dom0=pvh,verbose,pf-fixup` solve the
> boot issue? (and can you paste the output if it does)

pf-fixup did not resolve it.  The vpci pci_check_bar() check is 
independent of pf-fixup from what I can tell.

Regards,
Jason

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jan Beulich 6 months, 3 weeks ago
On 10.04.2025 22:55, Jason Andryuk wrote:
> On 2025-04-04 06:28, Roger Pau Monné wrote:
>> On Thu, Apr 03, 2025 at 06:01:42PM -0700, Stefano Stabellini wrote:
>>> On one Sapphire AMD x86 board, I see this:
>>>
>>>
>>> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
>>> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
>>> [...]
>>> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
>>>
>>>
>>> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
>>> This is because the pci_check_bar->is_memory_hole check fails due to the
>>> MMIO region overlapping with the EFI reserved region.
>>
>> That's weird.  (Partially) the reason to not attempt to map such BAR
>> is that it should already be mapped, because at dom0 creation time all
>> reserved regions are added to the p2m (see arch_iommu_hwdom_init()).
>> If that's not the case we should figure out why this reserved region
>> is not added to dom0 p2m as part of arch_iommu_hwdom_init().
> 
> Victor discovered these regions are type 11 EfiMemoryMappedIO, but they 
> get converted to e820 RESERVED.  The BAR points into it.
> 
> 00000f0000000-00000f7ffffff type=11 attr=800000000000100d
> 00000fd000000-00000fedfffff type=11 attr=800000000000100d
> 00000fee00000-00000fee00fff type=11 attr=8000000000000001
> 00000fee01000-00000ffffffff type=11 attr=800000000000100d
> 
> Xenia discovered Linux keeps small regions like this reserved, but lets 
> larger ones (>= 256kb) become holes.  See the comment in Linux 
> arch/x86/platform/efi/efi.c:efi_remove_e820_mmio() around line 301.

What a hack. And the mentioning of MMCFG space isn't even correct there,
I think. That space may legitimately be reserved (and at least older
Linux actually checked for that), unlike any ranges where BARs may live.
As to host bridge windows - I dare to question that they always need to
be "large". Similarly nothing guarantees the some non-window space
included in _CRS may not point at a "large" region.

Jan

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 6 months, 3 weeks ago
Thanks Jason for getting back, I'm intrigued by this issue :).

On Thu, Apr 10, 2025 at 04:55:54PM -0400, Jason Andryuk wrote:
> On 2025-04-04 06:28, Roger Pau Monné wrote:
> > On Thu, Apr 03, 2025 at 06:01:42PM -0700, Stefano Stabellini wrote:
> > > On one Sapphire AMD x86 board, I see this:
> > > 
> > > 
> > > (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
> > > (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
> > > [...]
> > > (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
> > > 
> > > 
> > > Linux boots fine on this platform but Linux as Dom0 on Xen does not.
> > > This is because the pci_check_bar->is_memory_hole check fails due to the
> > > MMIO region overlapping with the EFI reserved region.
> > 
> > That's weird.  (Partially) the reason to not attempt to map such BAR
> > is that it should already be mapped, because at dom0 creation time all
> > reserved regions are added to the p2m (see arch_iommu_hwdom_init()).
> > If that's not the case we should figure out why this reserved region
> > is not added to dom0 p2m as part of arch_iommu_hwdom_init().
> 
> Victor discovered these regions are type 11 EfiMemoryMappedIO, but they get
> converted to e820 RESERVED.  The BAR points into it.
> 
> 00000f0000000-00000f7ffffff type=11 attr=800000000000100d
> 00000fd000000-00000fedfffff type=11 attr=800000000000100d
> 00000fee00000-00000fee00fff type=11 attr=8000000000000001
> 00000fee01000-00000ffffffff type=11 attr=800000000000100d
> 
> Xenia discovered Linux keeps small regions like this reserved, but lets
> larger ones (>= 256kb) become holes.  See the comment in Linux
> arch/x86/platform/efi/efi.c:efi_remove_e820_mmio() around line 301.

Right, but whatever Linux decides to do with the reserved regions
won't affect how Xen maps them into the p2m.  Anything that's reserved
in the e820 should end up identity mapped in the p2m for PVH dom0,
unless it's being exclusively used by Xen (see
dom0_setup_permissions() use of iomem_deny_access() to deny dom0
access to some MMIO regions).

> The description of EfiMemoryMappedIO is a little confusing, which is
> probably why its use in unclear.
> 
> ```
> Table 7.5 Memory Type Usage before ExitBootServices()
> EfiMemoryMappedIO
> 
> Used by system firmware to request that a memory-mapped IO region be mapped
> by the OS to a virtual address so it can be accessed by EFI runtime
> services.
> 
> Table 7.6 Memory Type Usage after ExitBootServices()
> EfiMemoryMappedIO
> 
> This memory is not used by the OS. All system memory-mapped IO information
> should come from ACPI tables.
> ```
> 
> The two after ExitBootServices sentences seem contradictory.  I wonder if it
> should be "Ignore this memory type - All system memory-mapped IO information
> should come from ACPI tables".

Not very helpful indeed.  The description in "before
ExitBootServices()" seems more sensible to me: if the MMIO region is
used by runtime services Xen should ensure it's always mapped in the
dom0 p2m (which Xen should in principle already do).

> > Can you paste the dom0 build output when booted with `iommu=verbose
> > dom0=pvh,verbose`?

Would it be possible to see the output of a debug=y build when booted
with `iommu=verbose dom0=pvh,verbose` (with or without pf-fixup,
either is fine).

I'm specially interested in the ranggeset contents printed after "d0:
identity mappings for IOMMU:", but if possible would like to see the
full boot log (including Linux dom0).

> > Does using `dom0=pvh,verbose,pf-fixup` solve the
> > boot issue? (and can you paste the output if it does)
> 
> pf-fixup did not resolve it.  The vpci pci_check_bar() check is independent
> of pf-fixup from what I can tell.

Yup, the check is independent, but pf-fixup would create additional
p2m mappings if required (note this is only available on staging).

Also, when using a build of Xen from staging you should now get
messages about unhandled memory accesses by a PVH dom0 whne not using
the `pf-fixup` option.

Thanks, Roger.

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jason Andryuk 6 months, 3 weeks ago
On 2025-04-11 03:31, Roger Pau Monné wrote:
> Thanks Jason for getting back, I'm intrigued by this issue :).
> 
> On Thu, Apr 10, 2025 at 04:55:54PM -0400, Jason Andryuk wrote:
>> On 2025-04-04 06:28, Roger Pau Monné wrote:
>>> On Thu, Apr 03, 2025 at 06:01:42PM -0700, Stefano Stabellini wrote:
>>>> On one Sapphire AMD x86 board, I see this:
>>>>
>>>>
>>>> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
>>>> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
>>>> [...]
>>>> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
>>>>
>>>>
>>>> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
>>>> This is because the pci_check_bar->is_memory_hole check fails due to the
>>>> MMIO region overlapping with the EFI reserved region.
>>>
>>> That's weird.  (Partially) the reason to not attempt to map such BAR
>>> is that it should already be mapped, because at dom0 creation time all
>>> reserved regions are added to the p2m (see arch_iommu_hwdom_init()).
>>> If that's not the case we should figure out why this reserved region
>>> is not added to dom0 p2m as part of arch_iommu_hwdom_init().
>>
>> Victor discovered these regions are type 11 EfiMemoryMappedIO, but they get
>> converted to e820 RESERVED.  The BAR points into it.
>>
>> 00000f0000000-00000f7ffffff type=11 attr=800000000000100d
>> 00000fd000000-00000fedfffff type=11 attr=800000000000100d
>> 00000fee00000-00000fee00fff type=11 attr=8000000000000001
>> 00000fee01000-00000ffffffff type=11 attr=800000000000100d
>>
>> Xenia discovered Linux keeps small regions like this reserved, but lets
>> larger ones (>= 256kb) become holes.  See the comment in Linux
>> arch/x86/platform/efi/efi.c:efi_remove_e820_mmio() around line 301.
> 
> Right, but whatever Linux decides to do with the reserved regions
> won't affect how Xen maps them into the p2m.  Anything that's reserved
> in the e820 should end up identity mapped in the p2m for PVH dom0,
> unless it's being exclusively used by Xen (see
> dom0_setup_permissions() use of iomem_deny_access() to deny dom0
> access to some MMIO regions).

Oh, my point was more that Baremetal Linux won't have reserved ranges in 
these regions, so there would not be any BAR conflicts.  Though I'm not 
sure if it checks.

If Xen removed them from the memory map, then pci_check_bar() -> 
is_memory_hole() would pass.

>> The description of EfiMemoryMappedIO is a little confusing, which is
>> probably why its use in unclear.
>>
>> ```
>> Table 7.5 Memory Type Usage before ExitBootServices()
>> EfiMemoryMappedIO
>>
>> Used by system firmware to request that a memory-mapped IO region be mapped
>> by the OS to a virtual address so it can be accessed by EFI runtime
>> services.
>>
>> Table 7.6 Memory Type Usage after ExitBootServices()
>> EfiMemoryMappedIO
>>
>> This memory is not used by the OS. All system memory-mapped IO information
>> should come from ACPI tables.
>> ```
>>
>> The two after ExitBootServices sentences seem contradictory.  I wonder if it
>> should be "Ignore this memory type - All system memory-mapped IO information
>> should come from ACPI tables".
> 
> Not very helpful indeed.  The description in "before
> ExitBootServices()" seems more sensible to me: if the MMIO region is
> used by runtime services Xen should ensure it's always mapped in the
> dom0 p2m (which Xen should in principle already do).
> 
>>> Can you paste the dom0 build output when booted with `iommu=verbose
>>> dom0=pvh,verbose`?
> 
> Would it be possible to see the output of a debug=y build when booted
> with `iommu=verbose dom0=pvh,verbose` (with or without pf-fixup,
> either is fine).
> 
> I'm specially interested in the ranggeset contents printed after "d0:
> identity mappings for IOMMU:", but if possible would like to see the
> full boot log (including Linux dom0).

Attached.

Regards,
Jason
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 6 months, 2 weeks ago
On Fri, Apr 11, 2025 at 09:45:26AM -0400, Jason Andryuk wrote:
> On 2025-04-11 03:31, Roger Pau Monné wrote:
> > Thanks Jason for getting back, I'm intrigued by this issue :).
> > 
> > On Thu, Apr 10, 2025 at 04:55:54PM -0400, Jason Andryuk wrote:
> > > On 2025-04-04 06:28, Roger Pau Monné wrote:
> > > > On Thu, Apr 03, 2025 at 06:01:42PM -0700, Stefano Stabellini wrote:
> > > > > On one Sapphire AMD x86 board, I see this:
> > > > > 
> > > > > 
> > > > > (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
> > > > > (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
> > > > > [...]
> > > > > (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
> > > > > 
> > > > > 
> > > > > Linux boots fine on this platform but Linux as Dom0 on Xen does not.
> > > > > This is because the pci_check_bar->is_memory_hole check fails due to the
> > > > > MMIO region overlapping with the EFI reserved region.
> > > > 
> > > > That's weird.  (Partially) the reason to not attempt to map such BAR
> > > > is that it should already be mapped, because at dom0 creation time all
> > > > reserved regions are added to the p2m (see arch_iommu_hwdom_init()).
> > > > If that's not the case we should figure out why this reserved region
> > > > is not added to dom0 p2m as part of arch_iommu_hwdom_init().
> > > 
> > > Victor discovered these regions are type 11 EfiMemoryMappedIO, but they get
> > > converted to e820 RESERVED.  The BAR points into it.
> > > 
> > > 00000f0000000-00000f7ffffff type=11 attr=800000000000100d
> > > 00000fd000000-00000fedfffff type=11 attr=800000000000100d
> > > 00000fee00000-00000fee00fff type=11 attr=8000000000000001
> > > 00000fee01000-00000ffffffff type=11 attr=800000000000100d
> > > 
> > > Xenia discovered Linux keeps small regions like this reserved, but lets
> > > larger ones (>= 256kb) become holes.  See the comment in Linux
> > > arch/x86/platform/efi/efi.c:efi_remove_e820_mmio() around line 301.
> > 
> > Right, but whatever Linux decides to do with the reserved regions
> > won't affect how Xen maps them into the p2m.  Anything that's reserved
> > in the e820 should end up identity mapped in the p2m for PVH dom0,
> > unless it's being exclusively used by Xen (see
> > dom0_setup_permissions() use of iomem_deny_access() to deny dom0
> > access to some MMIO regions).
> 
> Oh, my point was more that Baremetal Linux won't have reserved ranges in
> these regions, so there would not be any BAR conflicts.  Though I'm not sure
> if it checks.
> 
> If Xen removed them from the memory map, then pci_check_bar() ->
> is_memory_hole() would pass.

Yes, it would pass.  The underlying issue however is that such region
should already be mapped in the p2m, and hence accesses shouldn't
fault.

When building dom0:

(XEN) [    7.943830] *** Building a PVH Dom0 ***
(XEN) [    7.955960] d0: identity mappings for IOMMU:
(XEN) [    7.965494]  [00000000a0, 00000000ff] RW
(XEN) [    7.974336]  [0000009bff, 0000009fff] RW
(XEN) [    7.983172]  [00000cabc9, 00000cc14c] RW
(XEN) [    7.992049]  [00000cc389, 00000cc389] RW
(XEN) [    8.000890]  [00000cc70a, 00000cd1fe] RW
(XEN) [    8.010065]  [00000ce000, 00000cffff] RW
(XEN) [    8.018904]  [00000fd000, 00000fd2ff] RW
(XEN) [    8.027745]  [00000fd304, 00000febff] RW
(XEN) [    8.036584]  [00000fec02, 00000fedff] RW
(XEN) [    8.045546]  [00000fee01, 00000fffff] RW
(XEN) [    8.054519]  [000080f340, 00008501ff] RW

All the ranges listed here are added to the p2m, and hence the range
[0xfea00, 0xfea03] should be covered by:

(XEN) [    8.027745]  [00000fd304, 00000febff] RW

The expectation is that those mappings are never removed from dom0
p2m.

> > > The description of EfiMemoryMappedIO is a little confusing, which is
> > > probably why its use in unclear.
> > > 
> > > ```
> > > Table 7.5 Memory Type Usage before ExitBootServices()
> > > EfiMemoryMappedIO
> > > 
> > > Used by system firmware to request that a memory-mapped IO region be mapped
> > > by the OS to a virtual address so it can be accessed by EFI runtime
> > > services.
> > > 
> > > Table 7.6 Memory Type Usage after ExitBootServices()
> > > EfiMemoryMappedIO
> > > 
> > > This memory is not used by the OS. All system memory-mapped IO information
> > > should come from ACPI tables.
> > > ```
> > > 
> > > The two after ExitBootServices sentences seem contradictory.  I wonder if it
> > > should be "Ignore this memory type - All system memory-mapped IO information
> > > should come from ACPI tables".
> > 
> > Not very helpful indeed.  The description in "before
> > ExitBootServices()" seems more sensible to me: if the MMIO region is
> > used by runtime services Xen should ensure it's always mapped in the
> > dom0 p2m (which Xen should in principle already do).
> > 
> > > > Can you paste the dom0 build output when booted with `iommu=verbose
> > > > dom0=pvh,verbose`?
> > 
> > Would it be possible to see the output of a debug=y build when booted
> > with `iommu=verbose dom0=pvh,verbose` (with or without pf-fixup,
> > either is fine).
> > 
> > I'm specially interested in the ranggeset contents printed after "d0:
> > identity mappings for IOMMU:", but if possible would like to see the
> > full boot log (including Linux dom0).
> 
> Attached.
> 
> Regards,
> Jason

> (XEN) [00000039f8a5e9d8] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Mon Apr  7 21:19:20 UTC 2025
> (XEN) [00000039fd29ca67] Latest ChangeSet:
> (XEN) [00000039fe824ec4] build-id: 5b79e5a1e7c0b3f356c8d413924be90e6610ea62
> (XEN) [0000003a00cfcb68] Console output is synchronous.
> (XEN) [0000003a02842e16] CPU Vendor: AMD, Family 23 (0x17), Model 96 (0x60), Stepping 1 (raw 00860f01)
> (XEN) [0000003a05a066b4] BSP microcode revision: 0x0860010c
> (XEN) [0000003a077362ac] Bootloader: GRUB 2.13
> (XEN) [0000003a08e2dcdd] Command line: console=com1 com1=57600,8n1,0x3F8,4 sched=null loglvl=all guest_loglvl=all console_timestamps=boot iommu=verbose dom0=pvh,verbose,pf-fixup dom0_max_vcpus=4 dom0_mem=4G argo=1,mac-permissive=1 sync_console noreboot wow
> (XEN) [0000003a109a0624] Xen image load base address: 0xc6600000
> (XEN) [0000003a1293662b] Video information:
> (XEN) [0000003a13ebea87]  VGA is graphics mode 1920x1200, 32 bpp
> (XEN) [0000003a15e52f98] Disc information:
> (XEN) [0000003a173606a3]  Found 0 MBR signatures
> (XEN) [0000003a18b4ce18]  Found 1 EDD information structures
> (XEN) [0000003a1a8f6353] EFI RAM map:
> (XEN) [0000003a1bb9f456]  [0000000000000000, 000000000009ffff] (usable)
> (XEN) [0000003a1de8d54f]  [00000000000a0000, 00000000000fffff] (reserved)
> (XEN) [0000003a2026fad3]  [0000000000100000, 0000000009bfefff] (usable)
> (XEN) [0000003a2255f258]  [0000000009bff000, 0000000009ffffff] (reserved)
> (XEN) [0000003a249416b9]  [000000000a000000, 000000000a1fffff] (usable)
> (XEN) [0000003a26c2deaa]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
> (XEN) [0000003a290124b1]  [000000000a20d000, 00000000cabc8fff] (usable)
> (XEN) [0000003a2b2ffbce]  [00000000cabc9000, 00000000cc14cfff] (reserved)
> (XEN) [0000003a2d6e36bb]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
> (XEN) [0000003a2fb3feea]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
> (XEN) [0000003a31f22330]  [00000000cc389000, 00000000cc389fff] (reserved)
> (XEN) [0000003a34304f7f]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
> (XEN) [0000003a366e8ff9]  [00000000cc70a000, 00000000cd1fefff] (reserved)
> (XEN) [0000003a38acabf9]  [00000000cd1ff000, 00000000cdffffff] (usable)
> (XEN) [0000003a3adba3f1]  [00000000ce000000, 00000000cfffffff] (reserved)
> (XEN) [0000003a3d19c902]  [00000000f0000000, 00000000f7ffffff] (reserved)
> (XEN) [0000003a3f57f2f0]  [00000000fd000000, 00000000ffffffff] (reserved)
> (XEN) [0000003a419613b2]  [0000000100000000, 000000080f33ffff] (usable)
> (XEN) [0000003a43c4eddf]  [000000080f340000, 00000008501fffff] (reserved)
[...]
> (XEN) [    7.943830] *** Building a PVH Dom0 ***
> (XEN) [    7.955960] d0: identity mappings for IOMMU:
> (XEN) [    7.965494]  [00000000a0, 00000000ff] RW
> (XEN) [    7.974336]  [0000009bff, 0000009fff] RW
> (XEN) [    7.983172]  [00000cabc9, 00000cc14c] RW
> (XEN) [    7.992049]  [00000cc389, 00000cc389] RW
> (XEN) [    8.000890]  [00000cc70a, 00000cd1fe] RW
> (XEN) [    8.010065]  [00000ce000, 00000cffff] RW
> (XEN) [    8.018904]  [00000fd000, 00000fd2ff] RW
> (XEN) [    8.027745]  [00000fd304, 00000febff] RW
> (XEN) [    8.036584]  [00000fec02, 00000fedff] RW
> (XEN) [    8.045546]  [00000fee01, 00000fffff] RW
> (XEN) [    8.054519]  [000080f340, 00008501ff] RW
> (XEN) [    8.064135] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
> (XEN) [    8.078698] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
> (XEN) [    8.093260] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
> (XEN) [    8.107815] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
> (XEN) [    8.122376] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
> (XEN) [    8.136936] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
> (XEN) [    8.151498] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
> (XEN) [    8.166056] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position

Note those messages don't imply that the BARs are not mapped in the
dom0 p2m, for example here all the ranges listed as invalid positions
are already mapped into the p2m and covered by the range:

(XEN) [    8.027745]  [00000fd304, 00000febff] RW

> [    6.378198] nvme nvme0: pci function 0000:02:00.0
> (XEN) [   20.964789] d0v3 unable to fixup memory read from 0xfea0300c size 4: -1
> [    6.387692] a(XEN) [   20.981772] d0v3 unable to fixup memory write to 0xfea03000 size 4: -1

And here the address is somehow not populated in the p2m, despite
being listed as an identity mapped region.  I think the real issue
here is why this address is somehow unmapped from the p2m (or maybe
not even added in the first place?).  Xen does identify it as a region
that must be identity mapped.

It's a fairly wild guess, but can you try if:

https://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=e118fc98e7ae652a188d227bd7ea22f132724150

Makes a difference?  vPCI uses rangesets extensively, so the bug fixed
above could in theory cause unmap operations to remove unintended
regions, and could explain the symptoms you are seeing here.

If that commit doesn't change behavior we would need to figure out why
the identity ranges are either not properly mapped, or unexpectedly
unmapped at a later point.

Thanks, Roger.

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Lira, Victor M 6 months, 1 week ago

On 4/14/2025 1:25 AM, Roger Pau Monné wrote:
> Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.
>
>
>
>> (XEN) [    7.943830] *** Building a PVH Dom0 ***
>> (XEN) [    7.955960] d0: identity mappings for IOMMU:
>> (XEN) [    7.965494]  [00000000a0, 00000000ff] RW
>> (XEN) [    7.974336]  [0000009bff, 0000009fff] RW
>> (XEN) [    7.983172]  [00000cabc9, 00000cc14c] RW
>> (XEN) [    7.992049]  [00000cc389, 00000cc389] RW
>> (XEN) [    8.000890]  [00000cc70a, 00000cd1fe] RW
>> (XEN) [    8.010065]  [00000ce000, 00000cffff] RW
>> (XEN) [    8.018904]  [00000fd000, 00000fd2ff] RW
>> (XEN) [    8.027745]  [00000fd304, 00000febff] RW
>> (XEN) [    8.036584]  [00000fec02, 00000fedff] RW
>> (XEN) [    8.045546]  [00000fee01, 00000fffff] RW
>> (XEN) [    8.054519]  [000080f340, 00008501ff] RW
>> (XEN) [    8.064135] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
>> (XEN) [    8.078698] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
>> (XEN) [    8.093260] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
>> (XEN) [    8.107815] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
>> (XEN) [    8.122376] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
>> (XEN) [    8.136936] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
>> (XEN) [    8.151498] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
>> (XEN) [    8.166056] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
> Note those messages don't imply that the BARs are not mapped in the
> dom0 p2m, for example here all the ranges listed as invalid positions
> are already mapped into the p2m and covered by the range:
>
> (XEN) [    8.027745]  [00000fd304, 00000febff] RW
>
>> [    6.378198] nvme nvme0: pci function 0000:02:00.0
>> (XEN) [   20.964789] d0v3 unable to fixup memory read from 0xfea0300c size 4: -1
>> [    6.387692] a(XEN) [   20.981772] d0v3 unable to fixup memory write to 0xfea03000 size 4: -1
> And here the address is somehow not populated in the p2m, despite
> being listed as an identity mapped region.  I think the real issue
> here is why this address is somehow unmapped from the p2m (or maybe
> not even added in the first place?).  Xen does identify it as a region
> that must be identity mapped.
>
> It's a fairly wild guess, but can you try if:
>
> https://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=e118fc98e7ae652a188d227bd7ea22f132724150
>
> Makes a difference?  vPCI uses rangesets extensively, so the bug fixed
> above could in theory cause unmap operations to remove unintended
> regions, and could explain the symptoms you are seeing here.
>
> If that commit doesn't change behavior we would need to figure out why
> the identity ranges are either not properly mapped, or unexpectedly
> unmapped at a later point.
Hello,

Here is the output from Xen staging built including that commit. The 
behavior is as before.
Is there an existing way to see the physical to machine mappings? I 
didn't find anything in the Xen diagnostics.
I found the tool xen-mfndump but only PV is supported.

> / # xen-mfndump dump-p2m 0
> xc: error: Could not get domain address size (95 = Not supported): 
> Internal error
> Could not map domain 0 memory information
> / # xl list
> Name                                        ID   Mem VCPUs State   Time(s)
> Domain-0                                     0  4095     4 r-----     
> 348.8


Victor

(XEN) [0000003761738941] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Wed Apr 23 20:16:28 UTC 2025
(XEN) [0000003765f77bb6] Latest ChangeSet:
(XEN) [0000003767500d72] build-id: 8aabeb63b20a347976fbd5f38d7ab356c307c41e
(XEN) [00000037699d8039] Console output is synchronous.
(XEN) [000000376b51de26] CPU Vendor: AMD, Family 23 (0x17), Model 96 (0x60), Stepping 1 (raw 00860f01)
(XEN) [000000376e6e1ca8] BSP microcode revision: 0x0860010c
(XEN) [0000003770410f90] Bootloader: GRUB 2.13
(XEN) [0000003771b07f71] Command line: console=com1 com1=57600,8n1,0x3F8,4 sched=null loglvl=all guest_loglvl=all console_timestamps=boot iommu=verbose dom0=pvh,verbose,pf-fixup dom0_max_vcpus=4 dom0_mem=4G argo=1,mac-permissive=1 sync_console noreboot wow
(XEN) [000000377967c4ee] Xen image load base address: 0xc6600000
(XEN) [000000377b60f818] Video information:
(XEN) [000000377cb992a9]  VGA is graphics mode 1920x1200, 32 bpp
(XEN) [000000377eb2cf00] Disc information:
(XEN) [00000037800396fb]  Found 0 MBR signatures
(XEN) [0000003781827639]  Found 1 EDD information structures
(XEN) [00000037835d0109] EFI RAM map:
(XEN) [0000003784879ffb]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [0000003786b67dc8]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [0000003788f4af31]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [000000378b238cfe]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [000000378d61c329]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [000000378f90a5b8]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [0000003791ced2d3]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [0000003793fdb4ee]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [00000037963bd023]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [000000379881b9a0]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [000000379abfd47e]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [000000379cfdfd2e]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [000000379f3c33b0]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [00000037a17a6e46]  [00000000cd1ff000, 00000000cdffffff] (usable)
(XEN) [00000037a3a947a8]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [00000037a5e77058]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [00000037a82586cb]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [00000037aa63d39e]  [0000000100000000, 000000080f33ffff] (usable)
(XEN) [00000037ac92ad00]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [00000037d7b9dc8c] ACPI: RSDP CC6F3014, 0024 (r2 ALASKA)
(XEN) [00000037d9a3b758] ACPI: XSDT CC6F2728, 00DC (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [00000037dc82a9cc] ACPI: FACP CC18C000, 0114 (r6 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000037df61ad76] ACPI: DSDT CC183000, 876D (r2 ALASKA   A M I   1072009 INTL 20120913)
(XEN) [00000037e240ae87] ACPI: FACS CC6C0000, 0040
(XEN) [00000037e3cec290] ACPI: SSDT CC18E000, 723C (r2    AMD AmdTable        2 MSFT  4000000)
(XEN) [00000037e6adb504] ACPI: IVRS CC18D000, 01A4 (r2  AMD   AmdTable        1 AMD         0)
(XEN) [00000037e98cabe2] ACPI: FIDT CC182000, 009C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [00000037ec6b90f6] ACPI: MCFG CC181000, 003C (r1 ALASKA    A M I  1072009 MSFT    10013)
(XEN) [00000037ef4a75ef] ACPI: HPET CC180000, 0038 (r1 ALASKA    A M I  1072009 AMI         5)
(XEN) [00000037f229718f] ACPI: SSDT CC17F000, 0228 (r1    AMD     STD3        1 INTL 20120913)
(XEN) [00000037f508765b] ACPI: VFCT CC171000, D684 (r1 ALASKA   A M I         1  AMD 31504F47)
(XEN) [00000037f7e75366] ACPI: TPM2 CC16F000, 004C (r4 ALASKA   A M I         1 AMI         0)
(XEN) [00000037fac63f46] ACPI: SSDT CC16B000, 39F4 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000037fda54983] ACPI: CRAT CC16A000, 0F28 (r1    AMD AmdTable        1 AMD         1)
(XEN) [0000003800842e98] ACPI: CDIT CC169000, 0029 (r1    AMD AmdTable        1 AMD         1)
(XEN) [000000380363320a] ACPI: SSDT CC168000, 0139 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000038064220fa] ACPI: SSDT CC167000, 0227 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000003809210f3b] ACPI: SSDT CC166000, 0D37 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [000000380bffefe5] ACPI: SSDT CC164000, 10A5 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [000000380edeefd3] ACPI: SSDT CC160000, 30C8 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000003811bddcd6] ACPI: WSMT CC15F000, 0028 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000038149cde03] ACPI: APIC CC15E000, 00DE (r3 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000038177bcc28] ACPI: SSDT CC15D000, 007D (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [000000381a5aa810] ACPI: SSDT CC15C000, 0517 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [000000381d39b12b] ACPI: FPDT CC15B000, 0044 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [0000003820188d13] ACPI: BGRT CC170000, 0038 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [0000003822f79b47] System RAM: 32168MB (32940656kB)
(XEN) [0000003829110ac8] No NUMA configuration found
(XEN) [000000382aae65be] Faking a node at 0000000000000000-000000080f340000
(XEN) [0000003834f73b48] Domain heap initialised
(XEN) [0000003837b1279a] SMBIOS 3.2 present.
(XEN) [000000383911233f] Using APIC driver default
(XEN) [000000383a9f4433] ACPI: PM-Timer IO Port: 0x808 (32 bits)
(XEN) [000000383c986e13] ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) [000000383ec763c7] ACPI: SLEEP INFO: pm1x_cnt[1:804,1:0], pm1x_evt[1:800,1:0]
(XEN) [00000038415221d3] ACPI: 32/64X FACS address mismatch in FADT - cc6c0000/0000000000000000, using 32
(XEN) [000000384485478b] ACPI:             wakeup_vec[cc6c000c], vec_size[20]
(XEN) [0000003846e20ae0] ACPI: Local APIC address 0xfee00000
(XEN) [0000003848bca7ed] Overriding APIC driver with bigsmp
(XEN) [000000384a8fba70] ACPI: IOAPIC (id[0x11] address[0xfec00000] gsi_base[0])
(XEN) [000000384d03802b] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
(XEN) [000000384fb47af6] ACPI: IOAPIC (id[0x12] address[0xfec01000] gsi_base[24])
(XEN) [00000038522fef5e] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
(XEN) [0000003854e89d98] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) [0000003857640329] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) [0000003859eec858] ACPI: IRQ0 used by override.
(XEN) [000000385b93d561] ACPI: IRQ2 used by override.
(XEN) [000000385d38ec0b] ACPI: IRQ9 used by override.
(XEN) [000000385eddf96b] ACPI: HPET id: 0x10228201 base: 0xfed00000
(XEN) [0000003860ee2a73] PCI: MCFG configuration 0: base f0000000 segment 0000 buses 00 - 7f
(XEN) [0000003863bddf9b] PCI: MCFG area at f0000000 reserved in E820
(XEN) [0000003865d5b1b8] PCI: Using MCFG for segment 0000 bus 00-7f
(XEN) [0000003867e5fdb6] ACPI: BGRT: invalidating v1 image at 0xc77a7018
(XEN) [000000386a1c736b] Using ACPI (MADT) for SMP configuration information
(XEN) [000000386c719a50] SMP: Allowing 16 CPUs (0 hotplug CPUs)
(XEN) [000000386e634795] IRQ limits: 56 GSI, 3272 MSI/MSI-X
(XEN) [00000038703644cc] CPU0: 1400 ... 2900 MHz
(XEN) [0000003871b4fee2] xstate: size: 0x380 and states: 0x207
(XEN) [00000038739f068a] CPU0: AMD Fam17h machine check reporting enabled
(XEN) [0000003875dd2216] Speculative mitigation facilities:
(XEN) [0000003877b038ad]   Hardware hints: IBRS_FAST IBRS_SAME_MODE
(XEN) [0000003879c069b5]   Hardware features: IBPB IBRS STIBP SSBD
(XEN) [000000387bc8f9a8]   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING HARDEN_ARRAY HARDEN_BRANCH HARDEN_GUEST_ACCESS HARDEN_LOCK
(XEN) [000000387fe1d990]   Xen settings: BTI-Thunk: RETPOLINE, SPEC_CTRL: IBRS- STIBP+ SSBD-, Other: BRANCH_HARDEN
(XEN) [000000388359d655]   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB IBPB-entry
(XEN) [0000003886408408]   Support for PV VMs: IBPB-entry
(XEN) [00000038880435e8]   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (without PCID)
(XEN) [000000388adb6802]   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) [000000388d214cbd] Using scheduler: null Scheduler (null)
(XEN) [000000388f12e33d] Initializing null scheduler
(XEN) [0000003890b05d77] WARNING: This is experimental software in development.
(XEN) [00000038931c6b92] Use at your own risk.
(XEN) [000000389d20aa2d] Platform timer is 14.318MHz HPET
(XEN) [    1.844048] Detected 2894.541 MHz processor.
(XEN) [    1.855045] Freed 1008kB unused BSS memory
(XEN) [    1.864233] EFI memory map:
(XEN) [    1.870818]  0000000000000-0000000003fff type=2 attr=000000000000000f
(XEN) [    1.884686]  0000000004000-000000008efff type=7 attr=000000000000000f
(XEN) [    1.898552]  000000008f000-000000009efff type=2 attr=000000000000000f
(XEN) [    1.912419]  000000009f000-000000009ffff type=4 attr=000000000000000f
(XEN) [    1.926285]  0000000100000-0000000e96fff type=2 attr=000000000000000f
(XEN) [    1.940154]  0000000e97000-0000000ffffff type=7 attr=000000000000000f
(XEN) [    1.954020]  0000001000000-000000101ffff type=4 attr=000000000000000f
(XEN) [    1.967884]  0000001020000-0000009bfefff type=7 attr=000000000000000f
(XEN) [    1.981754]  0000009bff000-0000009ffffff type=0 attr=000000000000000f
(XEN) [    1.995619]  000000a000000-000000a1fffff type=7 attr=000000000000000f
(XEN) [    2.009486]  000000a200000-000000a20cfff type=10 attr=000000000000000f
(XEN) [    2.023525]  000000a20d000-000003618efff type=2 attr=000000000000000f
(XEN) [    2.037395]  000003618f000-00000c4eebfff type=7 attr=000000000000000f
(XEN) [    2.051261]  00000c4eec000-00000c7000fff type=1 attr=000000000000000f
(XEN) [    2.065126]  00000c7001000-00000c7116fff type=7 attr=000000000000000f
(XEN) [    2.078994]  00000c7117000-00000c711efff type=4 attr=000000000000000f
(XEN) [    2.092860]  00000c711f000-00000c7159fff type=3 attr=000000000000000f
(XEN) [    2.106728]  00000c715a000-00000c715cfff type=4 attr=000000000000000f
(XEN) [    2.120593]  00000c715d000-00000c7168fff type=3 attr=000000000000000f
(XEN) [    2.134460]  00000c7169000-00000c7194fff type=4 attr=000000000000000f
(XEN) [    2.148328]  00000c7195000-00000c71a2fff type=3 attr=000000000000000f
(XEN) [    2.162194]  00000c71a3000-00000c71dcfff type=4 attr=000000000000000f
(XEN) [    2.176062]  00000c71dd000-00000c71ddfff type=7 attr=000000000000000f
(XEN) [    2.189928]  00000c71de000-00000c71e0fff type=4 attr=000000000000000f
(XEN) [    2.203793]  00000c71e1000-00000c71e1fff type=7 attr=000000000000000f
(XEN) [    2.217662]  00000c71e2000-00000c71e3fff type=4 attr=000000000000000f
(XEN) [    2.231527]  00000c71e4000-00000c71e5fff type=7 attr=000000000000000f
(XEN) [    2.245393]  00000c71e6000-00000c71e7fff type=4 attr=000000000000000f
(XEN) [    2.259261]  00000c71e8000-00000c71e8fff type=7 attr=000000000000000f
(XEN) [    2.273127]  00000c71e9000-00000c71e9fff type=4 attr=000000000000000f
(XEN) [    2.286996]  00000c71ea000-00000c71eafff type=7 attr=000000000000000f
(XEN) [    2.300862]  00000c71eb000-00000c71ebfff type=4 attr=000000000000000f
(XEN) [    2.314727]  00000c71ec000-00000c71ecfff type=7 attr=000000000000000f
(XEN) [    2.328595]  00000c71ed000-00000c71eefff type=4 attr=000000000000000f
(XEN) [    2.342463]  00000c71ef000-00000c71f0fff type=7 attr=000000000000000f
(XEN) [    2.356328]  00000c71f1000-00000c71f3fff type=4 attr=000000000000000f
(XEN) [    2.370196]  00000c71f4000-00000c71fefff type=7 attr=000000000000000f
(XEN) [    2.384061]  00000c71ff000-00000c7201fff type=4 attr=000000000000000f
(XEN) [    2.397928]  00000c7202000-00000c7204fff type=7 attr=000000000000000f
(XEN) [    2.411795]  00000c7205000-00000c7205fff type=4 attr=000000000000000f
(XEN) [    2.425663]  00000c7206000-00000c7206fff type=7 attr=000000000000000f
(XEN) [    2.439528]  00000c7207000-00000c7207fff type=4 attr=000000000000000f
(XEN) [    2.453396]  00000c7208000-00000c7209fff type=7 attr=000000000000000f
(XEN) [    2.467263]  00000c720a000-00000c720bfff type=4 attr=000000000000000f
(XEN) [    2.481129]  00000c720c000-00000c720cfff type=7 attr=000000000000000f
(XEN) [    2.494998]  00000c720d000-00000c720dfff type=4 attr=000000000000000f
(XEN) [    2.508865]  00000c720e000-00000c720efff type=7 attr=000000000000000f
(XEN) [    2.522730]  00000c720f000-00000c720ffff type=4 attr=000000000000000f
(XEN) [    2.536597]  00000c7210000-00000c7211fff type=7 attr=000000000000000f
(XEN) [    2.550462]  00000c7212000-00000c7212fff type=4 attr=000000000000000f
(XEN) [    2.564332]  00000c7213000-00000c7214fff type=7 attr=000000000000000f
(XEN) [    2.578196]  00000c7215000-00000c7215fff type=4 attr=000000000000000f
(XEN) [    2.592065]  00000c7216000-00000c72c2fff type=7 attr=000000000000000f
(XEN) [    2.605930]  00000c72c3000-00000c77e5fff type=4 attr=000000000000000f
(XEN) [    2.619797]  00000c77e6000-00000c7838fff type=7 attr=000000000000000f
(XEN) [    2.633666]  00000c7839000-00000c785afff type=4 attr=000000000000000f
(XEN) [    2.647529]  00000c785b000-00000c79d2fff type=3 attr=000000000000000f
(XEN) [    2.661399]  00000c79d3000-00000c7a3dfff type=4 attr=000000000000000f
(XEN) [    2.675264]  00000c7a3e000-00000c7a41fff type=7 attr=000000000000000f
(XEN) [    2.689132]  00000c7a42000-00000c7a42fff type=4 attr=000000000000000f
(XEN) [    2.702997]  00000c7a43000-00000c7a48fff type=7 attr=000000000000000f
(XEN) [    2.716866]  00000c7a49000-00000c7a49fff type=4 attr=000000000000000f
(XEN) [    2.730731]  00000c7a4a000-00000c7a4afff type=7 attr=000000000000000f
(XEN) [    2.744600]  00000c7a4b000-00000c7a4bfff type=2 attr=000000000000000f
(XEN) [    2.758464]  00000c7a4c000-00000c7a4cfff type=7 attr=000000000000000f
(XEN) [    2.772331]  00000c7a4d000-00000c7a5dfff type=3 attr=000000000000000f
(XEN) [    2.786197]  00000c7a5e000-00000c7a94fff type=4 attr=000000000000000f
(XEN) [    2.800065]  00000c7a95000-00000c7a96fff type=7 attr=000000000000000f
(XEN) [    2.813932]  00000c7a97000-00000c7ae7fff type=4 attr=000000000000000f
(XEN) [    2.827800]  00000c7ae8000-00000c7b07fff type=3 attr=000000000000000f
(XEN) [    2.841667]  00000c7b08000-00000c7b08fff type=4 attr=000000000000000f
(XEN) [    2.855533]  00000c7b09000-00000c7b10fff type=3 attr=000000000000000f
(XEN) [    2.869400]  00000c7b11000-00000c7b18fff type=4 attr=000000000000000f
(XEN) [    2.883266]  00000c7b19000-00000c7b30fff type=3 attr=000000000000000f
(XEN) [    2.897133]  00000c7b31000-00000c7b32fff type=4 attr=000000000000000f
(XEN) [    2.910998]  00000c7b33000-00000c7b55fff type=3 attr=000000000000000f
(XEN) [    2.924867]  00000c7b56000-00000c7b60fff type=4 attr=000000000000000f
(XEN) [    2.938734]  00000c7b61000-00000c7b8cfff type=3 attr=000000000000000f
(XEN) [    2.952600]  00000c7b8d000-00000c9270fff type=4 attr=000000000000000f
(XEN) [    2.966467]  00000c9271000-00000c92d7fff type=3 attr=000000000000000f
(XEN) [    2.980334]  00000c92d8000-00000c92dbfff type=4 attr=000000000000000f
(XEN) [    2.994200]  00000c92dc000-00000c92e5fff type=3 attr=000000000000000f
(XEN) [    3.008066]  00000c92e6000-00000c9330fff type=4 attr=000000000000000f
(XEN) [    3.021935]  00000c9331000-00000c934afff type=3 attr=000000000000000f
(XEN) [    3.035802]  00000c934b000-00000c934efff type=4 attr=000000000000000f
(XEN) [    3.049667]  00000c934f000-00000c936cfff type=3 attr=000000000000000f
(XEN) [    3.063534]  00000c936d000-00000c936dfff type=4 attr=000000000000000f
(XEN) [    3.077400]  00000c936e000-00000c9374fff type=3 attr=000000000000000f
(XEN) [    3.091268]  00000c9375000-00000c937bfff type=4 attr=000000000000000f
(XEN) [    3.105133]  00000c937c000-00000c9389fff type=3 attr=000000000000000f
(XEN) [    3.119001]  00000c938a000-00000c938efff type=4 attr=000000000000000f
(XEN) [    3.132868]  00000c938f000-00000c9390fff type=3 attr=000000000000000f
(XEN) [    3.146733]  00000c9391000-00000c9392fff type=4 attr=000000000000000f
(XEN) [    3.160600]  00000c9393000-00000c9399fff type=3 attr=000000000000000f
(XEN) [    3.174469]  00000c939a000-00000c939bfff type=4 attr=000000000000000f
(XEN) [    3.188333]  00000c939c000-00000c939cfff type=3 attr=000000000000000f
(XEN) [    3.202201]  00000c939d000-00000c93a0fff type=4 attr=000000000000000f
(XEN) [    3.216068]  00000c93a1000-00000c93b7fff type=3 attr=000000000000000f
(XEN) [    3.229935]  00000c93b8000-00000c93b9fff type=4 attr=000000000000000f
(XEN) [    3.243803]  00000c93ba000-00000c93bbfff type=3 attr=000000000000000f
(XEN) [    3.257669]  00000c93bc000-00000c93bcfff type=4 attr=000000000000000f
(XEN) [    3.271536]  00000c93bd000-00000c93cbfff type=3 attr=000000000000000f
(XEN) [    3.285401]  00000c93cc000-00000c93d4fff type=4 attr=000000000000000f
(XEN) [    3.299268]  00000c93d5000-00000c93d6fff type=3 attr=000000000000000f
(XEN) [    3.313134]  00000c93d7000-00000c93d8fff type=4 attr=000000000000000f
(XEN) [    3.327002]  00000c93d9000-00000c93d9fff type=3 attr=000000000000000f
(XEN) [    3.340870]  00000c93da000-00000c93dafff type=4 attr=000000000000000f
(XEN) [    3.354735]  00000c93db000-00000c93dbfff type=3 attr=000000000000000f
(XEN) [    3.368602]  00000c93dc000-00000c9529fff type=4 attr=000000000000000f
(XEN) [    3.382471]  00000c952a000-00000c9533fff type=3 attr=000000000000000f
(XEN) [    3.396335]  00000c9534000-00000c9535fff type=4 attr=000000000000000f
(XEN) [    3.410204]  00000c9536000-00000c9539fff type=3 attr=000000000000000f
(XEN) [    3.424070]  00000c953a000-00000c953dfff type=4 attr=000000000000000f
(XEN) [    3.437935]  00000c953e000-00000c9545fff type=3 attr=000000000000000f
(XEN) [    3.451803]  00000c9546000-00000c9547fff type=4 attr=000000000000000f
(XEN) [    3.465670]  00000c9548000-00000c954bfff type=3 attr=000000000000000f
(XEN) [    3.479538]  00000c954c000-00000c954dfff type=4 attr=000000000000000f
(XEN) [    3.493403]  00000c954e000-00000c9556fff type=3 attr=000000000000000f
(XEN) [    3.507271]  00000c9557000-00000c955afff type=4 attr=000000000000000f
(XEN) [    3.521136]  00000c955b000-00000c955cfff type=3 attr=000000000000000f
(XEN) [    3.535004]  00000c955d000-00000c955ffff type=4 attr=000000000000000f
(XEN) [    3.548870]  00000c9560000-00000c956cfff type=3 attr=000000000000000f
(XEN) [    3.562738]  00000c956d000-00000c97fffff type=4 attr=000000000000000f
(XEN) [    3.576606]  00000c9800000-00000c981afff type=3 attr=000000000000000f
(XEN) [    3.590471]  00000c981b000-00000c982afff type=4 attr=000000000000000f
(XEN) [    3.604338]  00000c982b000-00000c983dfff type=3 attr=000000000000000f
(XEN) [    3.618203]  00000c983e000-00000c983ffff type=4 attr=000000000000000f
(XEN) [    3.632073]  00000c9840000-00000c9843fff type=3 attr=000000000000000f
(XEN) [    3.645938]  00000c9844000-00000c9848fff type=4 attr=000000000000000f
(XEN) [    3.659804]  00000c9849000-00000c985bfff type=3 attr=000000000000000f
(XEN) [    3.673671]  00000c985c000-00000c9860fff type=4 attr=000000000000000f
(XEN) [    3.687540]  00000c9861000-00000c9861fff type=3 attr=000000000000000f
(XEN) [    3.701405]  00000c9862000-00000c9862fff type=4 attr=000000000000000f
(XEN) [    3.715273]  00000c9863000-00000c9863fff type=3 attr=000000000000000f
(XEN) [    3.729139]  00000c9864000-00000c9866fff type=4 attr=000000000000000f
(XEN) [    3.743006]  00000c9867000-00000c9874fff type=3 attr=000000000000000f
(XEN) [    3.756872]  00000c9875000-00000c9875fff type=4 attr=000000000000000f
(XEN) [    3.770741]  00000c9876000-00000c9876fff type=3 attr=000000000000000f
(XEN) [    3.784606]  00000c9877000-00000c9882fff type=4 attr=000000000000000f
(XEN) [    3.798473]  00000c9883000-00000c988bfff type=3 attr=000000000000000f
(XEN) [    3.812340]  00000c988c000-00000c988efff type=4 attr=000000000000000f
(XEN) [    3.826205]  00000c988f000-00000c9894fff type=3 attr=000000000000000f
(XEN) [    3.840074]  00000c9895000-00000c98e1fff type=4 attr=000000000000000f
(XEN) [    3.853938]  00000c98e2000-00000c990ffff type=3 attr=000000000000000f
(XEN) [    3.867805]  00000c9910000-00000c9911fff type=4 attr=000000000000000f
(XEN) [    3.881674]  00000c9912000-00000c9913fff type=3 attr=000000000000000f
(XEN) [    3.895541]  00000c9914000-00000c9915fff type=4 attr=000000000000000f
(XEN) [    3.909408]  00000c9916000-00000c992dfff type=3 attr=000000000000000f
(XEN) [    3.923275]  00000c992e000-00000c9939fff type=4 attr=000000000000000f
(XEN) [    3.937141]  00000c993a000-00000c9960fff type=3 attr=000000000000000f
(XEN) [    3.951006]  00000c9961000-00000c9964fff type=4 attr=000000000000000f
(XEN) [    3.964874]  00000c9965000-00000c996cfff type=3 attr=000000000000000f
(XEN) [    3.978739]  00000c996d000-00000c9974fff type=4 attr=000000000000000f
(XEN) [    3.992606]  00000c9975000-00000c997efff type=3 attr=000000000000000f
(XEN) [    4.006476]  00000c997f000-00000c9988fff type=4 attr=000000000000000f
(XEN) [    4.020341]  00000c9989000-00000c99adfff type=3 attr=000000000000000f
(XEN) [    4.034209]  00000c99ae000-00000c99b7fff type=4 attr=000000000000000f
(XEN) [    4.048074]  00000c99b8000-00000c99b8fff type=3 attr=000000000000000f
(XEN) [    4.061940]  00000c99b9000-00000c99b9fff type=4 attr=000000000000000f
(XEN) [    4.075810]  00000c99ba000-00000c99c1fff type=3 attr=000000000000000f
(XEN) [    4.089674]  00000c99c2000-00000c99c4fff type=4 attr=000000000000000f
(XEN) [    4.103542]  00000c99c5000-00000c99c6fff type=3 attr=000000000000000f
(XEN) [    4.117409]  00000c99c7000-00000c99c7fff type=4 attr=000000000000000f
(XEN) [    4.131276]  00000c99c8000-00000c99d5fff type=3 attr=000000000000000f
(XEN) [    4.145141]  00000c99d6000-00000c99d9fff type=4 attr=000000000000000f
(XEN) [    4.159009]  00000c99da000-00000c99dffff type=3 attr=000000000000000f
(XEN) [    4.172877]  00000c99e0000-00000c99e5fff type=4 attr=000000000000000f
(XEN) [    4.186742]  00000c99e6000-00000c99e6fff type=3 attr=000000000000000f
(XEN) [    4.200608]  00000c99e7000-00000c99e8fff type=4 attr=000000000000000f
(XEN) [    4.214477]  00000c99e9000-00000c99fdfff type=3 attr=000000000000000f
(XEN) [    4.228343]  00000c99fe000-00000c99fefff type=4 attr=000000000000000f
(XEN) [    4.242208]  00000c99ff000-00000c9a01fff type=3 attr=000000000000000f
(XEN) [    4.256075]  00000c9a02000-00000c9a02fff type=4 attr=000000000000000f
(XEN) [    4.269944]  00000c9a03000-00000c9a12fff type=3 attr=000000000000000f
(XEN) [    4.283811]  00000c9a13000-00000c9a15fff type=4 attr=000000000000000f
(XEN) [    4.297676]  00000c9a16000-00000c9a17fff type=3 attr=000000000000000f
(XEN) [    4.311545]  00000c9a18000-00000c9a19fff type=4 attr=000000000000000f
(XEN) [    4.325410]  00000c9a1a000-00000c9a2ffff type=3 attr=000000000000000f
(XEN) [    4.339277]  00000c9a30000-00000c9a30fff type=4 attr=000000000000000f
(XEN) [    4.353143]  00000c9a31000-00000c9a31fff type=3 attr=000000000000000f
(XEN) [    4.367012]  00000c9a32000-00000c9a32fff type=4 attr=000000000000000f
(XEN) [    4.380878]  00000c9a33000-00000c9a33fff type=3 attr=000000000000000f
(XEN) [    4.394743]  00000c9a34000-00000c9a34fff type=4 attr=000000000000000f
(XEN) [    4.408612]  00000c9a35000-00000c9a35fff type=3 attr=000000000000000f
(XEN) [    4.422478]  00000c9a36000-00000c9a36fff type=4 attr=000000000000000f
(XEN) [    4.436345]  00000c9a37000-00000c9a37fff type=3 attr=000000000000000f
(XEN) [    4.450210]  00000c9a38000-00000c9a38fff type=4 attr=000000000000000f
(XEN) [    4.464077]  00000c9a39000-00000c9a4bfff type=3 attr=000000000000000f
(XEN) [    4.477945]  00000c9a4c000-00000c9a4dfff type=4 attr=000000000000000f
(XEN) [    4.491812]  00000c9a4e000-00000c9a52fff type=3 attr=000000000000000f
(XEN) [    4.505679]  00000c9a53000-00000c9a57fff type=4 attr=000000000000000f
(XEN) [    4.519544]  00000c9a58000-00000c9a5cfff type=3 attr=000000000000000f
(XEN) [    4.533411]  00000c9a5d000-00000c9a5ffff type=4 attr=000000000000000f
(XEN) [    4.547278]  00000c9a60000-00000c9a66fff type=3 attr=000000000000000f
(XEN) [    4.561146]  00000c9a67000-00000c9a69fff type=4 attr=000000000000000f
(XEN) [    4.575012]  00000c9a6a000-00000c9a73fff type=3 attr=000000000000000f
(XEN) [    4.588878]  00000c9a74000-00000c9a8afff type=4 attr=000000000000000f
(XEN) [    4.602745]  00000c9a8b000-00000c9a9cfff type=3 attr=000000000000000f
(XEN) [    4.616613]  00000c9a9d000-00000c9a9dfff type=4 attr=000000000000000f
(XEN) [    4.630480]  00000c9a9e000-00000c9a9ffff type=3 attr=000000000000000f
(XEN) [    4.644346]  00000c9aa0000-00000c9aa7fff type=4 attr=000000000000000f
(XEN) [    4.658214]  00000c9aa8000-00000c9aa8fff type=3 attr=000000000000000f
(XEN) [    4.672078]  00000c9aa9000-00000c9aa9fff type=4 attr=000000000000000f
(XEN) [    4.685945]  00000c9aaa000-00000c9aaafff type=3 attr=000000000000000f
(XEN) [    4.699811]  00000c9aab000-00000c9aacfff type=4 attr=000000000000000f
(XEN) [    4.713678]  00000c9aad000-00000c9ab1fff type=3 attr=000000000000000f
(XEN) [    4.727547]  00000c9ab2000-00000c9ab3fff type=4 attr=000000000000000f
(XEN) [    4.741412]  00000c9ab4000-00000c9ab7fff type=3 attr=000000000000000f
(XEN) [    4.755280]  00000c9ab8000-00000c9ab8fff type=4 attr=000000000000000f
(XEN) [    4.769146]  00000c9ab9000-00000c9abefff type=3 attr=000000000000000f
(XEN) [    4.783014]  00000c9abf000-00000c9abffff type=4 attr=000000000000000f
(XEN) [    4.796880]  00000c9ac0000-00000c9acbfff type=3 attr=000000000000000f
(XEN) [    4.810746]  00000c9acc000-00000c9accfff type=4 attr=000000000000000f
(XEN) [    4.824615]  00000c9acd000-00000c9acefff type=3 attr=000000000000000f
(XEN) [    4.838480]  00000c9acf000-00000c9ad0fff type=4 attr=000000000000000f
(XEN) [    4.852349]  00000c9ad1000-00000c9ad1fff type=3 attr=000000000000000f
(XEN) [    4.866214]  00000c9ad2000-00000c9ad2fff type=4 attr=000000000000000f
(XEN) [    4.880081]  00000c9ad3000-00000c9aeefff type=3 attr=000000000000000f
(XEN) [    4.893947]  00000c9aef000-00000c9af1fff type=4 attr=000000000000000f
(XEN) [    4.907815]  00000c9af2000-00000c9af3fff type=3 attr=000000000000000f
(XEN) [    4.921682]  00000c9af4000-00000c9af7fff type=4 attr=000000000000000f
(XEN) [    4.935548]  00000c9af8000-00000c9afbfff type=3 attr=000000000000000f
(XEN) [    4.949414]  00000c9afc000-00000c9afdfff type=4 attr=000000000000000f
(XEN) [    4.963280]  00000c9afe000-00000c9b07fff type=3 attr=000000000000000f
(XEN) [    4.977147]  00000c9b08000-00000c9f07fff type=4 attr=000000000000000f
(XEN) [    4.991016]  00000c9f08000-00000c9f27fff type=3 attr=000000000000000f
(XEN) [    5.004882]  00000c9f28000-00000c9f29fff type=4 attr=000000000000000f
(XEN) [    5.018748]  00000c9f2a000-00000c9f2bfff type=3 attr=000000000000000f
(XEN) [    5.032615]  00000c9f2c000-00000c9f2dfff type=4 attr=000000000000000f
(XEN) [    5.046483]  00000c9f2e000-00000c9f2efff type=3 attr=000000000000000f
(XEN) [    5.060349]  00000c9f2f000-00000c9f2ffff type=4 attr=000000000000000f
(XEN) [    5.074216]  00000c9f30000-00000c9f30fff type=3 attr=000000000000000f
(XEN) [    5.088082]  00000c9f31000-00000c9f31fff type=4 attr=000000000000000f
(XEN) [    5.101950]  00000c9f32000-00000c9f36fff type=3 attr=000000000000000f
(XEN) [    5.115815]  00000c9f37000-00000c9f3afff type=4 attr=000000000000000f
(XEN) [    5.129683]  00000c9f3b000-00000c9f3bfff type=3 attr=000000000000000f
(XEN) [    5.143550]  00000c9f3c000-00000c9f3cfff type=4 attr=000000000000000f
(XEN) [    5.157416]  00000c9f3d000-00000c9f3dfff type=3 attr=000000000000000f
(XEN) [    5.171284]  00000c9f3e000-00000ca411fff type=4 attr=000000000000000f
(XEN) [    5.185150]  00000ca412000-00000ca413fff type=3 attr=000000000000000f
(XEN) [    5.199018]  00000ca414000-00000ca415fff type=4 attr=000000000000000f
(XEN) [    5.212882]  00000ca416000-00000ca41cfff type=3 attr=000000000000000f
(XEN) [    5.226750]  00000ca41d000-00000ca41dfff type=4 attr=000000000000000f
(XEN) [    5.240616]  00000ca41e000-00000ca41efff type=3 attr=000000000000000f
(XEN) [    5.254484]  00000ca41f000-00000ca488fff type=4 attr=000000000000000f
(XEN) [    5.268351]  00000ca489000-00000ca489fff type=3 attr=000000000000000f
(XEN) [    5.282216]  00000ca48a000-00000ca48bfff type=4 attr=000000000000000f
(XEN) [    5.296083]  00000ca48c000-00000ca48cfff type=3 attr=000000000000000f
(XEN) [    5.309951]  00000ca48d000-00000ca491fff type=4 attr=000000000000000f
(XEN) [    5.323816]  00000ca492000-00000ca494fff type=3 attr=000000000000000f
(XEN) [    5.337684]  00000ca495000-00000cabc8fff type=4 attr=000000000000000f
(XEN) [    5.351551]  00000cabc9000-00000cc14cfff type=0 attr=000000000000000f
(XEN) [    5.365417]  00000cc14d000-00000cc195fff type=9 attr=000000000000000f
(XEN) [    5.379286]  00000cc196000-00000cc388fff type=10 attr=000000000000000f
(XEN) [    5.393323]  00000cc389000-00000cc389fff type=0 attr=000000000000000f
(XEN) [    5.407191]  00000cc38a000-00000cc709fff type=10 attr=000000000000000f
(XEN) [    5.421233]  00000cc70a000-00000cd179fff type=6 attr=800000000000000f
(XEN) [    5.435098]  00000cd17a000-00000cd1fefff type=5 attr=800000000000000f
(XEN) [    5.448964]  00000cd1ff000-00000cd7fffff type=4 attr=000000000000000f
(XEN) [    5.462831]  00000cd800000-00000cd8e9fff type=7 attr=000000000000000f
(XEN) [    5.476699]  00000cd8ea000-00000cd9e9fff type=4 attr=000000000000000f
(XEN) [    5.490566]  00000cd9ea000-00000cda05fff type=3 attr=000000000000000f
(XEN) [    5.504433]  00000cda06000-00000cda31fff type=4 attr=000000000000000f
(XEN) [    5.518298]  00000cda32000-00000cda44fff type=3 attr=000000000000000f
(XEN) [    5.532167]  00000cda45000-00000cdf57fff type=4 attr=000000000000000f
(XEN) [    5.546033]  00000cdf58000-00000cdf5afff type=3 attr=000000000000000f
(XEN) [    5.559900]  00000cdf5b000-00000cdf6dfff type=4 attr=000000000000000f
(XEN) [    5.573765]  00000cdf6e000-00000cdf77fff type=3 attr=000000000000000f
(XEN) [    5.587634]  00000cdf78000-00000cdf91fff type=4 attr=000000000000000f
(XEN) [    5.601501]  00000cdf92000-00000cdf97fff type=3 attr=000000000000000f
(XEN) [    5.615366]  00000cdf98000-00000cdfadfff type=4 attr=000000000000000f
(XEN) [    5.629234]  00000cdfae000-00000cdfb1fff type=3 attr=000000000000000f
(XEN) [    5.643100]  00000cdfb2000-00000cdfc5fff type=4 attr=000000000000000f
(XEN) [    5.656965]  00000cdfc6000-00000cdfcafff type=3 attr=000000000000000f
(XEN) [    5.670833]  00000cdfcb000-00000cdfdffff type=4 attr=000000000000000f
(XEN) [    5.684701]  00000cdfe0000-00000cdff1fff type=3 attr=000000000000000f
(XEN) [    5.698568]  00000cdff2000-00000cdff9fff type=4 attr=000000000000000f
(XEN) [    5.712433]  00000cdffa000-00000cdffffff type=3 attr=000000000000000f
(XEN) [    5.726299]  0000100000000-000080f33ffff type=7 attr=000000000000000f
(XEN) [    5.740167]  00000000a0000-00000000fffff type=0 attr=000000000000000f
(XEN) [    5.754036]  00000ce000000-00000cfffffff type=0 attr=000000000000000f
(XEN) [    5.767902]  00000f0000000-00000f7ffffff type=11 attr=800000000000100d
(XEN) [    5.781940]  00000fd000000-00000fedfffff type=11 attr=800000000000100d
(XEN) [    5.795982]  00000fee00000-00000fee00fff type=11 attr=8000000000000001
(XEN) [    5.810021]  00000fee01000-00000ffffffff type=11 attr=800000000000100d
(XEN) [    5.824061]  000080f340000-000082fffffff type=0 attr=000000000000000f
(XEN) [    5.837928]  0000830000000-00008501fffff type=11 attr=800000000000100d
(XEN) [    5.851967] alt table ffff82d0404a1ff8 -> ffff82d0404b3ef8
(XEN) [    5.877162] AMD-Vi: IOMMU Extended Features:
(XEN) [    5.886696] - Peripheral Page Service Request
(XEN) [    5.896402] - x2APIC
(XEN) [    5.901774] - NX bit
(XEN) [    5.907150] - Invalidate All Command
(XEN) [    5.915295] - Guest APIC
(XEN) [    5.921362] - Performance Counters
(XEN) [    5.929164] - Host Address Translation Size: 0x2
(XEN) [    5.939388] - Guest Address Translation Size: 0
(XEN) [    5.949442] - Guest CR3 Root Table Level: 0x1
(XEN) [    5.959149] - Maximum PASID: 0xf
(XEN) [    5.966604] - SMI Filter Register: 0x1
(XEN) [    5.975096] - SMI Filter Register Count: 0x1
(XEN) [    5.984630] - Guest Virtual APIC Modes: 0x1
(XEN) [    5.993990] - Dual PPR Log: 0x2
(XEN) [    6.001269] - Dual Event Log: 0x2
(XEN) [    6.008897] - User / Supervisor Page Protection
(XEN) [    6.018949] - Device Table Segmentation: 0x3
(XEN) [    6.028485] - PPR Log Overflow Early Warning
(XEN) [    6.038016] - PPR Automatic Response
(XEN) [    6.046164] - Memory Access Routing and Control: 0
(XEN) [    6.056736] - Block StopMark Message
(XEN) [    6.064885] - Performance Optimization
(XEN) [    6.073378] - MSI Capability MMIO Access
(XEN) [    6.082218] - Guest I/O Protection
(XEN) [    6.090016] - Enhanced PPR Handling
(XEN) [    6.097991] - Attribute Forward
(XEN) [    6.105269] - Invalidate IOTLB Type
(XEN) [    6.113244] - VM Table Size: 0
(XEN) [    6.120351] - Guest Access Bit Update Disable
(XEN) [    6.141186] AMD-Vi: Disabled HAP memory map sharing with IOMMU
(XEN) [    6.153840] AMD-Vi: IOMMU 0 Enabled.
(XEN) [    6.161985] I/O virtualisation enabled
(XEN) [    6.170478]  - Dom0 mode: Relaxed
(XEN) [    6.178105] Interrupt remapping enabled
(XEN) [    6.186772] nr_sockets: 1
(XEN) [    6.193012] Enabling APIC mode.  Using 2 I/O APICs
(XEN) [    6.204027] ENABLING IO-APIC IRQs
(XEN) [    6.211655]  -> Using new ACK method
(XEN) [    6.219801] ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) [    6.382485] Wallclock source: CMOS RTC
(XEN) [    7.365612] Allocated console ring of 128 KiB.
(XEN) [    7.375494] mwait-idle: does not run on family 23 model 96
(XEN) [    7.387454] HVM: ASIDs enabled.
(XEN) [    7.394732] SVM: Supported advanced features:
(XEN) [    7.404439]  - Nested Page Tables (NPT)
(XEN) [    7.413106]  - Last Branch Record (LBR) Virtualisation
(XEN) [    7.424372]  - Next-RIP Saved on #VMEXIT
(XEN) [    7.433214]  - VMCB Clean Bits
(XEN) [    7.440320]  - TLB flush by ASID
(XEN) [    7.447775]  - DecodeAssists
(XEN) [    7.454533]  - Virtual VMLOAD/VMSAVE
(XEN) [    7.462679]  - Virtual GIF
(XEN) [    7.469092]  - Pause-Intercept Filter
(XEN) [    7.477415]  - Pause-Intercept Filter Threshold
(XEN) [    7.487467]  - TSC Rate MSR
(XEN) [    7.494055]  - MSR_SPEC_CTRL virtualisation
(XEN) [    7.503414] HVM: SVM enabled
(XEN) [    7.510175] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    7.521788] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    7.838090] Brought up 16 CPUs
(XEN) [    7.846029] Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) [    7.859203] Initializing null scheduler
(XEN) [    7.867872] WARNING: This is experimental software in development.
(XEN) [    7.881218] Use at your own risk.
(XEN) [    7.888845] mcheck_poll: Machine check polling timer started.
(XEN) [    7.901324] Running stub recovery selftests...
(XEN) [    7.911199] Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038f9e0
(XEN) [    7.927666] Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038f9e0
(XEN) [    7.944136] Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038f9e0
(XEN) [    7.960600] Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038f9e0
(XEN) [    7.996812] NX (Execute Disable) protection active
(XEN) [    8.007387] d0 has maximum 3328 PIRQs
(XEN) [    8.015741] *** Building a PVH Dom0 ***
(XEN) [    8.028257] d0: identity mappings for IOMMU:
(XEN) [    8.037789]  [00000000a0, 00000000ff] RW
(XEN) [    8.046631]  [0000009bff, 0000009fff] RW
(XEN) [    8.055469]  [00000cabc9, 00000cc14c] RW
(XEN) [    8.064439]  [00000cc389, 00000cc389] RW
(XEN) [    8.073281]  [00000cc70a, 00000cd1fe] RW
(XEN) [    8.082631]  [00000ce000, 00000cffff] RW
(XEN) [    8.091473]  [00000fd000, 00000fd2ff] RW
(XEN) [    8.100311]  [00000fd304, 00000febff] RW
(XEN) [    8.109150]  [00000fec02, 00000fedff] RW
(XEN) [    8.118234]  [00000fee01, 00000fffff] RW
(XEN) [    8.127332]  [000080f340, 00008501ff] RW
(XEN) [    8.137173] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [    8.151730] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [    8.166291] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
(XEN) [    8.180851] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
(XEN) [    8.195419] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [    8.209982] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [    8.224542] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [    8.239100] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [    8.382405] Dom0 memory allocation stats:
(XEN) [    8.391420] order  0 allocations: 4
(XEN) [    8.399391] order  1 allocations: 2
(XEN) [    8.407363] order  2 allocations: 2
(XEN) [    8.415338] order  3 allocations: 2
(XEN) [    8.423312] order  4 allocations: 2
(XEN) [    8.431286] order  5 allocations: 4
(XEN) [    8.439260] order  6 allocations: 3
(XEN) [    8.447234] order  7 allocations: 5
(XEN) [    8.455207] order  8 allocations: 4
(XEN) [    8.463178] order  9 allocations: 6
(XEN) [    8.471152] order 10 allocations: 3
(XEN) [    8.479126] order 11 allocations: 6
(XEN) [    8.487099] order 12 allocations: 3
(XEN) [    8.495071] order 13 allocations: 2
(XEN) [    8.503044] order 14 allocations: 3
(XEN) [    8.511019] order 15 allocations: 1
(XEN) [    8.518992] order 16 allocations: 2
(XEN) [    8.526965] order 17 allocations: 2
(XEN) [    8.534943] order 18 allocations: 2
(XEN) [    8.884020] ELF: phdr: paddr=0x1000000 memsz=0x1b2c0d8
(XEN) [    8.895287] ELF: phdr: paddr=0x2c00000 memsz=0x899000
(XEN) [    8.906377] ELF: phdr: paddr=0x3499000 memsz=0x30018
(XEN) [    8.917299] ELF: phdr: paddr=0x34ca000 memsz=0x566000
(XEN) [    8.928393] ELF: memory: 0x1000000 -> 0x3a30000
(XEN) [    8.938447] ELF: note: PHYS32_RELOC align: 0x200000 min: 0x1000000 max: 0x3fffffff
(XEN) [    8.954564] ELF: note: PHYS32_ENTRY = 0x1000000
(XEN) [    8.964619] ELF: note: GUEST_OS = "linux"
(XEN) [    8.973632] ELF: note: GUEST_VERSION = "2.6"
(XEN) [    8.983167] ELF: note: XEN_VERSION = "xen-3.0"
(XEN) [    8.993046] ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) [    9.004138] ELF: note: INIT_P2M = 0x8000000000
(XEN) [    9.014019] ELF: note: ENTRY = 0xffffffff834dc940
(XEN) [    9.024416] ELF: note: FEATURES = "!writable_page_tables"
(XEN) [    9.036205] ELF: note: PAE_MODE = "yes"
(XEN) [    9.044868] ELF: note: L1_MFN_VALID
(XEN) [    9.052847] ELF: note: MOD_START_PFN = 0x1
(XEN) [    9.062032] ELF: note: PADDR_OFFSET = 0
(XEN) [    9.070697] ELF: note: HYPERCALL_PAGE = 0xffffffff8203b000
(XEN) [    9.082658] ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) [    9.093233] ELF: note: LOADER = "generic"
(XEN) [    9.102248] ELF: note: SUSPEND_CANCEL = 0x1
(XEN) [    9.111608] ELF: Found PVH image
(XEN) [    9.119058] ELF: addresses:
(XEN) [    9.125643]     virt_base        = 0x0
(XEN) [    9.134141]     elf_paddr_offset = 0x0
(XEN) [    9.142634]     virt_offset      = 0x0
(XEN) [    9.151124]     virt_kstart      = 0x1000000
(XEN) [    9.160659]     virt_kend        = 0x3a30000
(XEN) [    9.170189]     virt_entry       = 0x1000000
(XEN) [    9.179727]     p2m_base         = 0x8000000000
(XEN) [    9.189780] ELF: phdr 0 at 0x1000000 -> 0x2b2c0d8
(XEN) [    9.207088] ELF: phdr 1 at 0x2c00000 -> 0x3499000
(XEN) [    9.219472] ELF: phdr 2 at 0x3499000 -> 0x34c9018
(XEN) [    9.229869] ELF: phdr 3 at 0x34ca000 -> 0x379a000
(XEN) [    9.431488] Dom0 memory map:
(XEN) [    9.438246]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [    9.450203]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [    9.462510]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [    9.474475]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [    9.486777]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [    9.498742]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [    9.511044]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [    9.523004]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [    9.535312]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [    9.547794]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [    9.560101]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [    9.572404]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [    9.584711]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [    9.597023]  [00000000cd1ff000, 00000000cdfffea7] (usable)
(XEN) [    9.608983]  [00000000cdfffea8, 00000000cdffff3f] (ACPI data)
(XEN) [    9.621463]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [    9.633768]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [    9.646074]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [    9.658383]  [0000000100000000, 0000000134aa3fff] (usable)
(XEN) [    9.670341]  [0000000134aa4000, 000000080f33ffff] (unusable)
(XEN) [    9.682647]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [    9.694951] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    9.708298] Scrubbing Free RAM in background
(XEN) [    9.717833] Std. Loglevel: All
(XEN) [    9.724938] Guest Loglevel: All
(XEN) [    9.732218] ***************************************************
(XEN) [    9.745048] WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) [    9.755620] This option is intended to aid debugging of Xen by ensuring
(XEN) [    9.769832] that all output is synchronously delivered on the serial line.
(XEN) [    9.784568] However it can introduce SIGNIFICANT latencies and affect
(XEN) [    9.798436] timekeeping. It is NOT recommended for production use!
(XEN) [    9.811780] ***************************************************
(XEN) [    9.824610] 3... 2... 1...
(XEN) [   12.830906] *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) [   12.846856] common/sched/null.c:357: 0 <-- d0v0
(XEN) [   12.856934] Freed 660kB init memory
[    0.000000] Linux version 6.12.0 (root@14da08ac60ce) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924, GNU ld (GNU Binutils) 2.40) #3 SMP PREEMPT_DYNAMIC Tue Apr 22 21:53:30 UTC 2025
[    0.000000] Command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug
[    0.000000] [Firmware Bug]: TSC doesn't count with P0 frequency!
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009bff000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x00000000cabc8fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cabc9000-0x00000000cc14cfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc14d000-0x00000000cc195fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cc196000-0x00000000cc388fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cc389000-0x00000000cc389fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc38a000-0x00000000cc709fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cc70a000-0x00000000cd1fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cd1ff000-0x00000000cdfffea7] usable
[    0.000000] BIOS-e820: [mem 0x00000000cdfffea8-0x00000000cdffff3f] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000ce000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000080f33ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000080f340000-0x00000008501fffff] reserved
[    0.000000] printk: legacy bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by American Megatrends
[    0.000000] efi: ACPI=0xcc6f3000 ACPI 2.0=0xcc6f3014 TPMFinalLog=0xcc6c2000 SMBIOS=0xccfd6000 SMBIOS 3.0=0xccfd5000 (MEMATTR=0xc7a92298 unusable) ESRT=0xcc15a018
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI:  /7D785 / 7D786, BIOS 5.16 02/24/2025
[    0.000000] DMI: Memory slots populated: 2/2
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.21.
[    0.000004] HVMOP_pagetable_dying not supported
[    0.054740] tsc: Fast TSC calibration failed
[    0.062923] tsc: Detected 2894.540 MHz processor
[    0.072241] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.085451] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.096553] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
[    0.107519] MTRR map: 4 entries (3 fixed + 1 variable; max 20), built from 9 variable MTRRs
[    0.124109] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.138666] CPU MTRRs all blank - virtualized system.
[    0.148417] last_pfn = 0xcdfff max_arch_pfn = 0x400000000
[    0.162817] esrt: Reserving ESRT space from 0x00000000cc15a018 to 0x00000000cc15a050.
[    0.178106] Using GB pages for direct mapping
[    0.187605] Secure boot disabled
[    0.193700] RAMDISK: [mem 0x0a20d000-0x3618efff]
[    0.203979] ACPI: Early table checksum verification disabled
[    0.214935] ACPI: RSDP 0x00000000CDFFFEA8 000024 (v02 ALASKA)
[    0.226376] ACPI: XSDT 0x00000000CDFFFECC 00009C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.243363] ACPI: APIC 0x00000000CDFFFF68 000098 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.260348] ACPI: FACP 0x00000000CC18C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.277375] ACPI: DSDT 0x00000000CC183000 00876D (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.294322] ACPI: FACS 0x00000000CC6C0000 000040
[    0.303509] ACPI: SSDT 0x00000000CC18E000 00723C (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.320495] ACPI: MCFG 0x00000000CC181000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.337483] ACPI: SSDT 0x00000000CC17F000 000228 (v01 AMD    STD3     00000001 INTL 20120913)
[    0.354475] ACPI: VFCT 0x00000000CC171000 00D684 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.371460] ACPI: SSDT 0x00000000CC16B000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.388443] ACPI: SSDT 0x00000000CC168000 000139 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.405435] ACPI: SSDT 0x00000000CC167000 000227 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.422418] ACPI: SSDT 0x00000000CC166000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.439404] ACPI: SSDT 0x00000000CC164000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.456393] ACPI: SSDT 0x00000000CC160000 0030C8 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.473382] ACPI: SSDT 0x00000000CC15D000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.490364] ACPI: SSDT 0x00000000CC15C000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.507353] ACPI: FPDT 0x00000000CC15B000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.524334] ACPI: Reserving APIC table memory at [mem 0xcdffff68-0xcdffffff]
[    0.538378] ACPI: Reserving FACP table memory at [mem 0xcc18c000-0xcc18c113]
[    0.552420] ACPI: Reserving DSDT table memory at [mem 0xcc183000-0xcc18b76c]
[    0.566456] ACPI: Reserving FACS table memory at [mem 0xcc6c0000-0xcc6c003f]
[    0.580497] ACPI: Reserving SSDT table memory at [mem 0xcc18e000-0xcc19523b]
[    0.594538] ACPI: Reserving MCFG table memory at [mem 0xcc181000-0xcc18103b]
[    0.608575] ACPI: Reserving SSDT table memory at [mem 0xcc17f000-0xcc17f227]
[    0.622615] ACPI: Reserving VFCT table memory at [mem 0xcc171000-0xcc17e683]
[    0.636658] ACPI: Reserving SSDT table memory at [mem 0xcc16b000-0xcc16e9f3]
[    0.650696] ACPI: Reserving SSDT table memory at [mem 0xcc168000-0xcc168138]
[    0.664736] ACPI: Reserving SSDT table memory at [mem 0xcc167000-0xcc167226]
[    0.678780] ACPI: Reserving SSDT table memory at [mem 0xcc166000-0xcc166d36]
[    0.692816] ACPI: Reserving SSDT table memory at [mem 0xcc164000-0xcc1650a4]
[    0.706859] ACPI: Reserving SSDT table memory at [mem 0xcc160000-0xcc1630c7]
[    0.721483] ACPI: Reserving SSDT table memory at [mem 0xcc15d000-0xcc15d07c]
[    0.735210] ACPI: Reserving SSDT table memory at [mem 0xcc15c000-0xcc15c516]
[    0.749248] ACPI: Reserving FPDT table memory at [mem 0xcc15b000-0xcc15b043]
[    0.763390] No NUMA configuration found
[    0.770914] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
[    0.784264] NODE_DATA(0) allocated [mem 0x134a9f540-0x134aa2fff]
[    0.796254] Zone ranges:
[    0.801245]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.813557]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.825864]   Normal   [mem 0x0000000100000000-0x000000080f33ffff]
[    0.838166] Movable zone start for each node
[    0.846659] Early memory node ranges
[    0.853768]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.866248]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.878727]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.891207]   node   0: [mem 0x000000000a20d000-0x00000000cabc8fff]
[    0.903686]   node   0: [mem 0x00000000cd1ff000-0x00000000cdffefff]
[    0.916167]   node   0: [mem 0x0000000100000000-0x000000080f33ffff]
[    0.928648] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
[    0.942692] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.954320] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.966217] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.983168] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.995108] On node 0, zone DMA32: 9782 pages in unavailable ranges
[    1.051309] On node 0, zone Normal: 8193 pages in unavailable ranges
[    1.063689] On node 0, zone Normal: 3264 pages in unavailable ranges
[    1.076741] ACPI: PM-Timer IO Port: 0x808
[    1.084453] IOAPIC[0]: apic_id 17, version 17, address 0xfec00000, GSI 0-23
[    1.098300] IOAPIC[1]: apic_id 18, version 17, address 0xfec01000, GSI 24-55
[    1.112308] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.124962] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    1.137962] ACPI: Using ACPI (MADT) for SMP configuration information
[    1.150789] CPU topo: Max. logical packages:   1
[    1.159974] CPU topo: Max. logical dies:       1
[    1.169157] CPU topo: Max. dies per package:   1
[    1.178350] CPU topo: Max. threads per core:   1
[    1.187530] CPU topo: Num. cores per package:     4
[    1.197240] CPU topo: Num. threads per package:   4
[    1.206943] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    1.219091] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.234163] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.249243] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    1.264320] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[    1.279399] PM: hibernation: Registered nosave memory: [mem 0xcabc9000-0xcc14cfff]
[    1.294481] PM: hibernation: Registered nosave memory: [mem 0xcc14d000-0xcc195fff]
[    1.309559] PM: hibernation: Registered nosave memory: [mem 0xcc196000-0xcc388fff]
[    1.324638] PM: hibernation: Registered nosave memory: [mem 0xcc389000-0xcc389fff]
[    1.339721] PM: hibernation: Registered nosave memory: [mem 0xcc38a000-0xcc709fff]
[    1.354802] PM: hibernation: Registered nosave memory: [mem 0xcc70a000-0xcd1fefff]
[    1.369879] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    1.384961] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    1.400039] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xcfffffff]
[    1.415121] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
[    1.430199] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    1.445279] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
[    1.460359] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    1.475443] [mem 0xd0000000-0xefffffff] available for PCI devices
[    1.487581] Booting kernel on Xen PVH
[    1.494856] Xen version: 4.21-unstable
[    1.502309] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    1.527932] setup_percpu: NR_CPUS:64 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    1.542755] percpu: Embedded 58 pages/cpu s196632 r8192 d32744 u524288
[    1.555523] pcpu-alloc: s196632 r8192 d32744 u524288 alloc=1*2097152
[    1.568174] pcpu-alloc: [0] 0 1 2 3
[    1.575307] Kernel command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug
[    1.590411] random: crng init done
[    1.597443] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    1.613095] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.628360] Fallback order for Node 0: 0
[    1.628363] Built 1 zonelists, mobility grouping on.  Total pages: 8235162
[    1.650001] Policy zone: Normal
[    1.656238] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    1.669761] software IO TLB: area num 4.
[    1.765772] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Poking KASLR using RDRAND RDTSC...
[    1.785775] Dynamic Preempt: voluntary
[    1.792933] rcu: Preemptible hierarchical RCU implementation.
[    1.804354] rcu: 	RCU event tracing is enabled.
[    1.813366] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    1.826541] 	Trampoline variant of Tasks RCU enabled.
[    1.836593] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.851847] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.865196] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    1.883679] Using NULL legacy PIC
[    1.889951] NR_IRQS: 4352, nr_irqs: 1000, preallocated irqs: 0
[    1.901594] xen:events: Using FIFO-based ABI
(XEN) [   15.230484] d0v0: upcall vector f3
[    1.917871] xen:events: Xen HVM callback vector for event delivery is enabled
[    1.932101] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.945810] Console: colour dummy device 80x25
[    1.954612] printk: legacy console [tty0] enabled
[    1.964212] printk: legacy console [hvc0] enabled

[    1.964212] printk: legacy console [hvc0] enabled
[    1.982862] printk: legacy bootconsole [xenboot0] disabled

[    1.982862] printk: legacy bootconsole [xenboot0] disabled
[    2.004886] ACPI: Core revision 20240827

[    2.031419] Failed to register legacy timer interrupt

[    2.041329] APIC: Switch to symmetric I/O mode setup

[    2.052122] x2apic enabled

[    2.058223] APIC: Switched APIC routing to: physical x2apic

[    2.069261] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29b91d1ebc0, max_idle_ns: 440795294503 ns

[    2.090323] Calibrating delay loop (skipped), value calculated using timer frequency.. 5789.08 BogoMIPS (lpj=2894540)

[    2.091321] x86/cpu: User Mode Instruction Prevention (UMIP) activated

[    2.091321] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512

[    2.091321] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0

[    2.091321] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization

[    2.091321] Spectre V2 : Mitigation: Retpolines

[    2.091321] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch

[    2.091321] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT

[    2.091321] Spectre V2 : Enabling Speculation Barrier for firmware calls

[    2.091321] RETBleed: Mitigation: untrained return thunk

[    2.091321] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier

[    2.091321] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl

[    2.091321] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'

[    2.091321] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'

[    2.091321] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'

[    2.091321] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256

[    2.091321] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.

[    2.091321] Freeing SMP alternatives memory: 52K

[    2.091321] pid_max: default: 32768 minimum: 301

[    2.091321] LSM: initializing lsm=capability,selinux

[    2.091321] SELinux:  Initializing.

[    2.091321] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)

[    2.091321] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)

[    2.091321] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns

[    2.091321] Xen: using vcpuop timer interface

[    2.091321] installing Xen timer for CPU 0

[    2.091321] smpboot: CPU0: AMD Ryzen Embedded V2748 with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)

[    2.095364] Performance Events: PMU not available due to virtualization, using software events only.

[    2.096341] signal: max sigframe size: 1776

[    2.097343] rcu: Hierarchical SRCU implementation.

[    2.098326] rcu: 	Max phase no-delay instances is 400.

[    2.099355] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level

[    2.104328] smp: Bringing up secondary CPUs ...

[    2.106361] installing Xen timer for CPU 1

[    2.107388] smpboot: x86: Booting SMP configuration:

(XEN) [   15.899713] common/sched/null.c:357: 1 <-- d0v1
[    2.108327] .... node  #0, CPUs:      #1

[    2.112346] installing Xen timer for CPU 2

(XEN) [   15.928909] common/sched/null.c:357: 2 <-- d0v2
[    2.114407]  #2

[    2.118346] installing Xen timer for CPU 3

(XEN) [   15.953719] common/sched/null.c:357: 3 <-- d0v3
[    2.120413]  #3

[    2.124392] smp: Brought up 1 node, 4 CPUs

[    2.126328] smpboot: Total of 4 processors activated (23156.32 BogoMIPS)

[    2.128375] Memory: 2836724K/32940648K available (20480K kernel code, 2938K rwdata, 7348K rodata, 3020K init, 2456K bss, 30099964K reserved, 0K cma-reserved)

[    2.130081] devtmpfs: initialized

[    2.130349] x86/mm: Memory block size: 128MB

[    2.132933] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)

[    2.133335] ACPI: PM: Registering ACPI NVS region [mem 0xcc196000-0xcc388fff] (2043904 bytes)

[    2.134338] ACPI: PM: Registering ACPI NVS region [mem 0xcc38a000-0xcc709fff] (3670016 bytes)

[    2.135370] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns

[    2.136330] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)

[    2.137394] PM: RTC time: 04:29:34, date: 2025-04-24

[    2.138783] NET: Registered PF_NETLINK/PF_ROUTE protocol family

[    2.139341] xen:grant_table: Grant tables using version 1 layout

[    2.140344] Grant table initialized

[    2.141400] audit: initializing netlink subsys (disabled)

[    2.142350] audit: type=2000 audit(1745468975.432:1): state=initialized audit_enabled=0 res=1

[    2.142378] thermal_sys: Registered thermal governor 'step_wise'

[    2.159331] thermal_sys: Registered thermal governor 'user_space'

[    2.171338] cpuidle: using governor menu

[    2.191533] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]

[    2.208343] PCI: Using configuration type 1 for base access

[    2.219366] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.

[    2.237421] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages

[    2.238329] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page

[    2.239328] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages

[    2.240327] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page

[    2.241381] ACPI: Added _OSI(Module Device)

[    2.242328] ACPI: Added _OSI(Processor Device)

[    2.243326] ACPI: Added _OSI(3.0 _SCP Extensions)

[    2.244327] ACPI: Added _OSI(Processor Aggregator Device)

[    2.256993] ACPI: 11 ACPI AML tables successfully acquired and loaded

(XEN) [   16.393176] d0: bind: m_gsi=9 g_gsi=9
[    2.258833] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored

[    2.262070] ACPI: Interpreter enabled

[    2.262336] ACPI: PM: (supports S0 S3 S4 S5)

[    2.263327] ACPI: Using IOAPIC for interrupt routing

[    2.264548] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug

[    2.265334] PCI: Ignoring E820 reservations for host bridge windows

[    2.266685] ACPI: Enabled 6 GPEs in block 00 to 1F

[    2.268858] ACPI: \_SB_.P0S0: New power resource

[    2.269344] ACPI: \_SB_.P3S0: New power resource

[    2.270376] ACPI: \_SB_.P0S1: New power resource

[    2.271344] ACPI: \_SB_.P3S1: New power resource

[    2.278577] ACPI: \_SB_.PRWL: New power resource

[    2.279349] ACPI: \_SB_.PRWB: New power resource

[    2.280679] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])

[    2.281330] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]

[    2.282463] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability LTR]

[    2.283333] acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge

[    2.284619] PCI host bridge to bus 0000:00

[    2.285328] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]

[    2.286327] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]

[    2.287327] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]

[    2.288327] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]

[    2.289327] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]

[    2.290327] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]

[    2.291327] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]

[    2.292327] pci_bus 0000:00: root bus resource [mem 0x830000000-0xffffffffff window]

[    2.293328] pci_bus 0000:00: root bus resource [bus 00-ff]

[    2.294356] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.768556] PCI add device 0000:00:00.0
[    2.296354] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint

(XEN) [   16.793866] PCI add device 0000:00:00.2
[    2.298357] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.819172] PCI add device 0000:00:01.0
[    2.300360] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.844479] PCI add device 0000:00:02.0
[    2.302354] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    2.303378] pci 0000:00:02.1: PCI bridge to [bus 01]

[    2.304350] pci 0000:00:02.1:   bridge window [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    2.305522] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold

(XEN) [   16.906535] PCI add device 0000:00:02.1
[    2.307356] pci 0000:00:02.3: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    2.308373] pci 0000:00:02.3: PCI bridge to [bus 02]

[    2.309337] pci 0000:00:02.3:   bridge window [mem 0xfea00000-0xfeafffff]

[    2.310355] pci 0000:00:02.3: enabling Extended Tags

[    2.311510] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold

(XEN) [   16.976041] PCI add device 0000:00:02.3
[    2.313355] pci 0000:00:02.4: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    2.314372] pci 0000:00:02.4: PCI bridge to [bus 03]

[    2.315334] pci 0000:00:02.4:   bridge window [io  0xf000-0xffff]

[    2.316330] pci 0000:00:02.4:   bridge window [mem 0xfe900000-0xfe9fffff]

[    2.317355] pci 0000:00:02.4: enabling Extended Tags

[    2.318506] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold

(XEN) [   17.057852] PCI add device 0000:00:02.4
[    2.320363] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.083161] PCI add device 0000:00:08.0
[    2.322354] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port

[    2.323373] pci 0000:00:08.1: PCI bridge to [bus 04]

[    2.324334] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]

[    2.325330] pci 0000:00:08.1:   bridge window [mem 0xfe400000-0xfe7fffff]

[    2.326339] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]

[    2.327342] pci 0000:00:08.1: enabling Extended Tags

[    2.328477] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold

(XEN) [   17.180572] PCI add device 0000:00:08.1
[    2.330358] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400 PCIe Root Port

[    2.331373] pci 0000:00:08.2: PCI bridge to [bus 05]

[    2.332337] pci 0000:00:08.2:   bridge window [mem 0xfe800000-0xfe8fffff]

[    2.333353] pci 0000:00:08.2: enabling Extended Tags

[    2.334477] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold

(XEN) [   17.250083] PCI add device 0000:00:08.2
[    2.336377] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint

(XEN) [   17.275390] PCI add device 0000:00:14.0
[    2.338347] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint

(XEN) [   17.300696] PCI add device 0000:00:14.3
[    2.340366] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.326000] PCI add device 0000:00:18.0
[    2.342344] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.351309] PCI add device 0000:00:18.1
[    2.344343] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.376616] PCI add device 0000:00:18.2
[    2.346343] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.401920] PCI add device 0000:00:18.3
[    2.348343] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.427227] PCI add device 0000:00:18.4
[    2.350343] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.452534] PCI add device 0000:00:18.5
[    2.352343] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.477843] PCI add device 0000:00:18.6
[    2.354342] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   17.503148] PCI add device 0000:00:18.7
[    2.356421] pci 0000:01:00.0: [10ee:5700] type 00 class 0x120000 PCIe Endpoint

[    2.357355] pci 0000:01:00.0: BAR 0 [mem 0xffe0000000-0xffefffffff 64bit pref]

[    2.358345] pci 0000:01:00.0: BAR 2 [mem 0xfff8040000-0xfff807ffff 64bit pref]

[    2.359533] pci 0000:01:00.0: supports D1

[    2.360326] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold

(XEN) [   17.576471] PCI add device 0000:01:00.0
[    2.362370] pci 0000:01:00.1: [10ee:5701] type 00 class 0x120000 PCIe Endpoint

[    2.363355] pci 0000:01:00.1: BAR 0 [mem 0xfff8000000-0xfff803ffff 64bit pref]

[    2.364344] pci 0000:01:00.1: BAR 2 [mem 0xfff0000000-0xfff7ffffff 64bit pref]

[    2.365517] pci 0000:01:00.1: supports D1

[    2.366326] pci 0000:01:00.1: PME# supported from D0 D1 D3hot D3cold

(XEN) [   17.649791] PCI add device 0000:01:00.1
[    2.368350] pci 0000:00:02.1: PCI bridge to [bus 01]

[    2.369424] pci 0000:02:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint

(XEN) [   17.683072] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
[    2.371329] pci 0000:02:00.0: BAR 0 [mem 0xfea00000-0xfea03fff 64bit]

(XEN) [   17.710632] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.725192] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.739749] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.754312] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.768872] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.783682] PCI add device 0000:02:00.0
[    2.378339] pci 0000:00:02.3: PCI bridge to [bus 02]

[    2.379426] pci 0000:03:00.0: [10ec:8125] type 00 class 0x020000 PCIe Endpoint

(XEN) [   17.816963] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.831525] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    2.381327] pci 0000:03:00.0: BAR 0 [io  0xf000-0xf0ff]

(XEN) [   17.856655] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.871220] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
(XEN) [   17.885775] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.900334] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    2.384326] pci 0000:03:00.0: BAR 2 [mem 0xfe900000-0xfe90ffff 64bit]

(XEN) [   17.927895] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.942455] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    2.386327] pci 0000:03:00.0: BAR 4 [mem 0xfe910000-0xfe913fff 64bit]

(XEN) [   17.970015] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.984577] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    2.388558] pci 0000:03:00.0: supports D1 D2

[    2.389327] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold

(XEN) [   18.021256] PCI add device 0000:03:00.0
[    2.391446] pci 0000:00:02.4: PCI bridge to [bus 03]

[    2.392413] pci 0000:04:00.0: [1002:1636] type 00 class 0x030000 PCIe Legacy Endpoint

(XEN) [   18.056356] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    2.394326] pci 0000:04:00.0: BAR 0 [mem 0xd0000000-0xdfffffff 64bit pref]

(XEN) [   18.085119] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    2.396326] pci 0000:04:00.0: BAR 2 [mem 0xe0000000-0xe01fffff 64bit pref]

(XEN) [   18.113876] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    2.398326] pci 0000:04:00.0: BAR 4 [io  0xe000-0xe0ff]

(XEN) [   18.139341] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    2.400326] pci 0000:04:00.0: BAR 5 [mem 0xfe700000-0xfe77ffff]

(XEN) [   18.166190] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    2.402335] pci 0000:04:00.0: enabling Extended Tags

[    2.403552] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold

[    2.404418] pci 0000:04:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)

(XEN) [   18.234659] PCI add device 0000:04:00.0
[    2.406356] pci 0000:04:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint

[    2.407344] pci 0000:04:00.1: BAR 0 [mem 0xfe7c8000-0xfe7cbfff]

[    2.408379] pci 0000:04:00.1: enabling Extended Tags

[    2.409406] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold

(XEN) [   18.293940] PCI add device 0000:04:00.1
[    2.411355] pci 0000:04:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint

[    2.412358] pci 0000:04:00.2: BAR 2 [mem 0xfe600000-0xfe6fffff]

[    2.413349] pci 0000:04:00.2: BAR 5 [mem 0xfe7cc000-0xfe7cdfff]

[    2.414344] pci 0000:04:00.2: enabling Extended Tags

(XEN) [   18.351140] PCI add device 0000:04:00.2
[    2.416355] pci 0000:04:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint

(XEN) [   18.374364] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
[    2.418326] pci 0000:04:00.3: BAR 0 [mem 0xfe500000-0xfe5fffff 64bit]

(XEN) [   18.401927] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   18.416486] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   18.431043] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   18.445608] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   18.460168] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
[    2.424337] pci 0000:04:00.3: enabling Extended Tags

[    2.425413] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold

(XEN) [   18.497086] PCI add device 0000:04:00.3
[    2.427354] pci 0000:04:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint

(XEN) [   18.520313] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
[    2.429326] pci 0000:04:00.4: BAR 0 [mem 0xfe400000-0xfe4fffff 64bit]

(XEN) [   18.547873] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.562433] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.576995] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.591553] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.606111] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
[    2.435337] pci 0000:04:00.4: enabling Extended Tags

[    2.436413] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold

(XEN) [   18.643036] PCI add device 0000:04:00.4
[    2.438354] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint

[    2.439344] pci 0000:04:00.5: BAR 0 [mem 0xfe780000-0xfe7bffff]

[    2.440379] pci 0000:04:00.5: enabling Extended Tags

[    2.441406] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold

(XEN) [   18.700578] PCI add device 0000:04:00.5
[    2.443355] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint

[    2.444344] pci 0000:04:00.6: BAR 0 [mem 0xfe7c0000-0xfe7c7fff]

[    2.445378] pci 0000:04:00.6: enabling Extended Tags

[    2.446405] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold

(XEN) [   18.758130] PCI add device 0000:04:00.6
[    2.448390] pci 0000:00:08.1: PCI bridge to [bus 04]

[    2.449412] pci 0000:05:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   18.791405] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.805965] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.820530] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.835086] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.849645] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.864205] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
[    2.456327] pci 0000:05:00.0: BAR 5 [mem 0xfe801000-0xfe8017ff]

(XEN) [   18.890726] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
[    2.458337] pci 0000:05:00.0: enabling Extended Tags

[    2.459570] pci 0000:05:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)

(XEN) [   18.946366] PCI add device 0000:05:00.0
[    2.461355] pci 0000:05:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   18.969593] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.984159] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.998716] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   19.013278] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   19.027834] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   19.042399] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
[    2.468327] pci 0000:05:00.1: BAR 5 [mem 0xfe800000-0xfe8007ff]

(XEN) [   19.068915] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
[    2.470337] pci 0000:05:00.1: enabling Extended Tags

(XEN) [   19.093528] PCI add device 0000:05:00.1
[    2.472364] pci 0000:00:08.2: PCI bridge to [bus 05]

[    2.473947] ACPI: PCI: Interrupt link LNKA configured for IRQ 0

[    2.474375] ACPI: PCI: Interrupt link LNKB configured for IRQ 0

[    2.475364] ACPI: PCI: Interrupt link LNKC configured for IRQ 0

[    2.476375] ACPI: PCI: Interrupt link LNKD configured for IRQ 0

[    2.477369] ACPI: PCI: Interrupt link LNKE configured for IRQ 0

[    2.478362] ACPI: PCI: Interrupt link LNKF configured for IRQ 0

[    2.479362] ACPI: PCI: Interrupt link LNKG configured for IRQ 0

[    2.480362] ACPI: PCI: Interrupt link LNKH configured for IRQ 0

[    2.482268] xen:balloon: Initialising balloon driver

[    2.559709] iommu: Default domain type: Translated

[    2.560330] iommu: DMA domain TLB invalidation policy: lazy mode

[    2.561377] SCSI subsystem initialized

[    2.562348] libata version 3.00 loaded.

[    2.563342] ACPI: bus type USB registered

[    2.564334] usbcore: registered new interface driver usbfs

[    2.565330] usbcore: registered new interface driver hub

[    2.566331] usbcore: registered new device driver usb

[    2.567336] pps_core: LinuxPPS API ver. 1 registered

[    2.568327] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

[    2.569329] PTP clock support registered

[    2.570367] efivars: Registered efivars operations

[    2.571343] Advanced Linux Sound Architecture Driver Initialized.

[    2.572423] NetLabel: Initializing

[    2.573327] NetLabel:  domain hash size = 128

[    2.574326] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO

[    2.575337] NetLabel:  unlabeled traffic allowed by default

[    2.576364] PCI: Using ACPI for IRQ routing

[    2.585199] PCI: pci_cache_line_size set to 64 bytes

[    2.585437] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00

[    2.586328] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00

[    2.587327] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]

[    2.588327] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]

[    2.589327] e820: reserve RAM buffer [mem 0xcabc9000-0xcbffffff]

[    2.590327] e820: reserve RAM buffer [mem 0xcdfffea8-0xcfffffff]

[    2.591327] e820: reserve RAM buffer [mem 0x80f340000-0x80fffffff]

[    2.592354] pci 0000:04:00.0: vgaarb: setting as boot VGA device

[    2.593321] pci 0000:04:00.0: vgaarb: bridge control possible

[    2.593321] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none

[    2.593327] vgaarb: loaded

[    2.594422] clocksource: Switched to clocksource tsc-early

[    2.605165] VFS: Disk quotas dquot_6.6.0

[    2.613093] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)

[    2.626997] pnp: PnP ACPI init

[    2.633281] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved

[    2.646740] system 00:02: [io  0x0a00-0x0a0f] has been reserved

[    2.658512] system 00:02: [io  0x0a10-0x0a1f] has been reserved

[    2.670468] system 00:02: [io  0x0a20-0x0a2f] has been reserved

[    2.682645] pnp 00:03: [dma 0 disabled]

[    2.690470] pnp 00:04: [dma 0 disabled]

[    2.698244] system 00:05: [io  0x04d0-0x04d1] has been reserved

[    2.709986] system 00:05: [io  0x040b] has been reserved

[    2.720731] system 00:05: [io  0x04d6] has been reserved

[    2.731483] system 00:05: [io  0x0c00-0x0c01] has been reserved

[    2.743440] system 00:05: [io  0x0c14] has been reserved

[    2.754187] system 00:05: [io  0x0c50-0x0c51] has been reserved

[    2.766146] system 00:05: [io  0x0c52] has been reserved

[    2.776895] system 00:05: [io  0x0c6c] has been reserved

[    2.787642] system 00:05: [io  0x0c6f] has been reserved

[    2.798389] system 00:05: [io  0x0cd0-0x0cd1] has been reserved

[    2.810349] system 00:05: [io  0x0cd2-0x0cd3] has been reserved

[    2.822309] system 00:05: [io  0x0cd4-0x0cd5] has been reserved

[    2.834268] system 00:05: [io  0x0cd6-0x0cd7] has been reserved

[    2.846228] system 00:05: [io  0x0cd8-0x0cdf] has been reserved

[    2.858188] system 00:05: [io  0x0800-0x089f] has been reserved

[    2.870149] system 00:05: [io  0x0b00-0x0b0f] has been reserved

[    2.882105] system 00:05: [io  0x0b20-0x0b3f] has been reserved

[    2.894069] system 00:05: [io  0x0900-0x090f] has been reserved

[    2.906027] system 00:05: [io  0x0910-0x091f] has been reserved

[    2.917987] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved

[    2.932026] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved

[    2.946071] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved

[    2.959415] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved

[    2.972764] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved

[    2.986802] system 00:05: [mem 0xfec10000-0xfec10fff] could not be reserved

[    3.000844] system 00:05: [mem 0xff000000-0xffffffff] has been reserved

[    3.014917] pnp: PnP ACPI: found 6 devices

[    3.030563] PM-Timer failed consistency check  (0xffffff) - aborting.

[    3.043281] NET: Registered PF_INET protocol family

[    3.053188] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)

[    3.068538] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)

[    3.085398] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)

[    3.101005] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)

[    3.116972] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)

[    3.131911] TCP: Hash tables configured (established 32768 bind 32768)

[    3.145037] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)

[    3.158545] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)

[    3.172947] NET: Registered PF_UNIX/PF_LOCAL protocol family

[    3.184572] RPC: Registered named UNIX socket transport module.

[    3.196338] RPC: Registered udp transport module.

[    3.205859] RPC: Registered tcp transport module.

[    3.215393] RPC: Registered tcp-with-tls transport module.

[    3.226489] RPC: Registered tcp NFSv4.1 backchannel transport module.

[    3.239772] pci 0000:00:02.1: PCI bridge to [bus 01]

[    3.249553] pci 0000:00:02.1:   bridge window [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    3.265840] pci 0000:00:02.3: PCI bridge to [bus 02]

[    3.275894] pci 0000:00:02.3:   bridge window [mem 0xfea00000-0xfeafffff]

[    3.289590] pci 0000:00:02.4: PCI bridge to [bus 03]

[    3.299638] pci 0000:00:02.4:   bridge window [io  0xf000-0xffff]

[    3.311949] pci 0000:00:02.4:   bridge window [mem 0xfe900000-0xfe9fffff]

[    3.325647] pci 0000:00:08.1: PCI bridge to [bus 04]

[    3.335694] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]

[    3.347998] pci 0000:00:08.1:   bridge window [mem 0xfe400000-0xfe7fffff]

[    3.361694] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]

[    3.377297] pci 0000:00:08.2: PCI bridge to [bus 05]

[    3.387353] pci 0000:00:08.2:   bridge window [mem 0xfe800000-0xfe8fffff]

[    3.401045] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]

[    3.413515] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]

[    3.425995] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]

[    3.438475] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]

[    3.450958] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]

[    3.464824] pci_bus 0000:00: resource 9 [mem 0xd0000000-0xfebfffff window]

[    3.478691] pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]

[    3.492729] pci_bus 0000:00: resource 11 [mem 0x830000000-0xffffffffff window]

[    3.507291] pci_bus 0000:01: resource 2 [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    3.522543] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]

[    3.535196] pci_bus 0000:03: resource 0 [io  0xf000-0xffff]

[    3.546467] pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]

[    3.559121] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]

[    3.570383] pci_bus 0000:04: resource 1 [mem 0xfe400000-0xfe7fffff]

[    3.583040] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]

[    3.597600] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]

[    3.610332] pci 0000:01:00.0: CLS mismatch (64 != 484), using 64 bytes

[    3.623441] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0

[    3.636251] pci 0000:04:00.1: quirk_gpu_hda+0x0/0x10 took 12522 usecs

[    3.649252] pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec

[    3.664504] pci 0000:04:00.3: quirk_ryzen_xhci_d3hot+0x0/0x40 took 14895 usecs

[    3.679236] pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec

[    3.694329] pci 0000:04:00.4: quirk_ryzen_xhci_d3hot+0x0/0x40 took 14739 usecs

[    3.708963] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)

[    3.709027] Unpacking initramfs...

[    3.721876] software IO TLB: mapped [mem 0x00000000c6bc9000-0x00000000cabc9000] (64MB)

[    3.744802] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b91d1ebc0, max_idle_ns: 440795294503 ns

[    3.764917] clocksource: Switched to clocksource tsc

[    3.780734] Initialise system trusted keyrings

[    3.789628] workingset: timestamp_bits=56 max_order=20 bucket_order=0

[    3.802739] NFS: Registering the id_resolver key type

[    3.812707] Key type id_resolver registered

[    3.821192] Key type id_legacy registered

[    3.829437] 9p: Installing v9fs 9p2000 file system support

[    3.849456] Key type asymmetric registered

[    3.857526] Asymmetric key parser 'x509' registered

[    3.867409] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)

[    3.882286] io scheduler mq-deadline registered

[    3.891459] io scheduler kyber registered

[    3.975305] Freeing initrd memory: 720392K

[    3.983738] pcieport 0000:00:02.1: PME: Signaling with IRQ 43

[    3.995329] pcieport 0000:00:02.3: PME: Signaling with IRQ 44

[    4.006917] pcieport 0000:00:02.4: PME: Signaling with IRQ 45

[    4.018548] pcieport 0000:00:08.1: PME: Signaling with IRQ 46

[    4.030166] pcieport 0000:00:08.2: PME: Signaling with IRQ 47

[    4.041734] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0

[    4.058349] ACPI: button: Power Button [PWRB]

[    4.067191] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1

[    4.082103] ACPI: button: Power Button [PWRF]

[    4.090951] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)

[    4.105905] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input2

[    4.126027] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    4.140769] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    4.154811] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    4.169386] thermal LNXTHERM:00: registered as thermal_zone0

[    4.180540] ACPI: thermal: Thermal Zone [THRM] (20 C)

[    4.190843] thermal LNXTHERM:01: registered as thermal_zone1

[    4.202203] ACPI: thermal: Thermal Zone [WDTF] (0 C)

[    4.212642] xen:xen_evtchn: Event-channel device installed

[    4.223858] xen_mcelog: Failed to get CPU numbers

[    4.233194] xen_pciback: backend is vpci

[    4.241313] xen_acpi_processor: Uploading Xen processor PM info

[    4.254247] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

[    4.266799] 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A

[    4.281775] hpet_acpi_add: no address or irqs in _CRS

[    4.291793] Non-volatile memory driver v1.3

[    4.300199] Linux agpgart interface v0.103

[    4.308895] ACPI: bus type drm_connector registered

[    4.319667] loop: module loaded

[    4.325845] ahci 0000:05:00.0: version 3.0

[    4.334226] ahci 0000:05:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

[    4.350225] ahci 0000:05:00.0: 1/1 ports implemented (port mask 0x1)

[    4.363046] ahci 0000:05:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part

[    4.381503] scsi host0: ahci

[    4.387130] ata1: SATA max UDMA/133 abar m2048@0xfe801000 port 0xfe801100 irq 50 lpm-pol 3

[    4.403859] ahci 0000:05:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

[    4.419860] ahci 0000:05:00.1: 1/1 ports implemented (port mask 0x1)

[    4.432685] ahci 0000:05:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part

[    4.450868] scsi host1: ahci

[    4.456488] ata2: SATA max UDMA/133 abar m2048@0xfe800000 port 0xfe800100 irq 52 lpm-pol 3

[    4.473281] Rounding down aligned max_sectors from 4294967295 to 4294967288

[    4.487285] db_root: cannot open: /etc/target

[    4.496089] tun: Universal TUN/TAP device driver, 1.6

[    4.506322] e100: Intel(R) PRO/100 Network Driver

[    4.515750] e100: Copyright(c) 1999-2006 Intel Corporation

[    4.526845] e1000: Intel(R) PRO/1000 Network Driver

[    4.536715] e1000: Copyright (c) 1999-2006 Intel Corporation.

[    4.548334] e1000e: Intel(R) PRO/1000 Network Driver

[    4.558387] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.

[    4.570354] Intel(R) 2.5G Ethernet Linux Driver

[    4.579535] Copyright(c) 2018 Intel Corporation.

[    4.588898] sky2: driver version 1.30

(XEN) [   21.644361] d0v3 unable to fixup memory read from 0xfe91000c size 4: -1
(XEN) [   21.658572] d0v3 unable to fixup memory write to 0xfe910000 size 4: -1
(XEN) [   21.672610] d0v3 unable to fixup memory write to 0xfe910004 size 4: -1
(XEN) [   21.686653] d0v3 unable to fixup memory write to 0xfe910008 size 4: -1
(XEN) [   21.700688] d0v3 unable to fixup memory read from 0xfe910008 size 4: -1
(XEN) [   21.714901] d0v3 unable to fixup memory write to 0xfe91000c size 4: -1
(XEN) [   21.728942] d0v3 unable to fixup memory write to 0xfe91001c size 4: -1
(XEN) [   21.742984] d0v3 unable to fixup memory write to 0xfe91002c size 4: -1
(XEN) [   21.757025] d0v3 unable to fixup memory write to 0xfe91003c size 4: -1
(XEN) [   21.771065] d0v3 unable to fixup memory write to 0xfe91004c size 4: -1
(XEN) [   21.785105] d0v3 unable to fixup memory write to 0xfe91005c size 4: -1
(XEN) [   21.799145] d0v3 unable to fixup memory write to 0xfe91006c size 4: -1
(XEN) [   21.813186] d0v3 unable to fixup memory write to 0xfe91007c size 4: -1
[    4.770321] a(XEN) [   21.829996] d0v3 unable to fixup memory write to 0xfe91008c size 4: -1
ta1: SATA link d(XEN) [   21.846811] d0v3 unable to fixup memory write to 0xfe91009c size 4: -1
own (SStatus 0 S(XEN) [   21.863626] d0v3 unable to fixup memory write to 0xfe9100ac size 4: -1
Control 300)

(XEN) [   21.880268] d0v3 unable to fixup memory write to 0xfe9100bc size 4: -1
(XEN) [   21.894306] d0v3 unable to fixup memory write to 0xfe9100cc size 4: -1
(XEN) [   21.908346] d0v3 unable to fixup memory write to 0xfe9100dc size 4: -1
(XEN) [   21.922385] d0v3 unable to fixup memory write to 0xfe9100ec size 4: -1
(XEN) [   21.936427] d0v3 unable to fixup memory write to 0xfe9100fc size 4: -1
(XEN) [   21.950468] d0v3 unable to fixup memory write to 0xfe91010c size 4: -1
(XEN) [   21.964503] d0v3 unable to fixup memory write to 0xfe91011c size 4: -1
(XEN) [   21.978546] d0v3 unable to fixup memory write to 0xfe91012c size 4: -1
(XEN) [   21.992583] d0v3 unable to fixup memory write to 0xfe91013c size 4: -1
(XEN) [   22.006623] d0v3 unable to fixup memory write to 0xfe91014c size 4: -1
(XEN) [   22.020664] d0v3 unable to fixup memory write to 0xfe91015c size 4: -1
(XEN) [   22.034706] d0v3 unable to fixup memory write to 0xfe91016c size 4: -1
(XEN) [   22.048747] d0v3 unable to fixup memory write to 0xfe91017c size 4: -1
(XEN) [   22.062784] d0v3 unable to fixup memory write to 0xfe91018c size 4: -1
(XEN) [   22.076823] d0v3 unable to fixup memory write to 0xfe91019c size 4: -1
(XEN) [   22.090867] d0v3 unable to fixup memory write to 0xfe9101ac size 4: -1
(XEN) [   22.104904] d0v3 unable to fixup memory write to 0xfe9101bc size 4: -1
(XEN) [   22.118947] d0v3 unable to fixup memory write to 0xfe9101cc size 4: -1
(XEN) [   22.132987] d0v3 unable to fixup memory write to 0xfe9101dc size 4: -1
(XEN) [   22.147028] d0v3 unable to fixup memory write to 0xfe9101ec size 4: -1
(XEN) [   22.161066] d0v3 unable to fixup memory write to 0xfe9101fc size 4: -1
[    4.817990] a(XEN) [   22.177879] d0v1 unable to fixup memory read from 0xfe5fe00c size 4: -1
ta2: SATA link d(XEN) [   22.194865] d0v1 unable to fixup memory read from 0xfe5fe01c size 4: -1
own (SStatus 0 S(XEN) [   22.211855] d0v1 unable to fixup memory read from 0xfe5fe02c size 4: -1
Control 300)

(XEN) [   22.228670] d0v1 unable to fixup memory read from 0xfe5fe03c size 4: -1
(XEN) [   22.242884] d0v1 unable to fixup memory read from 0xfe5fe04c size 4: -1
[    5.132690] m(XEN) [   22.259871] d0v1 unable to fixup memory write to 0xfe5fe000 size 4: -1
odprobe (73) use(XEN) [   22.276682] d0v1 unable to fixup memory write to 0xfe5fe004 size 4: -1
d greatest stack(XEN) [   22.293495] d0v1 unable to fixup memory write to 0xfe5fe008 size 4: -1
 depth: 13720 by(XEN) [   22.310306] d0v1 unable to fixup memory read from 0xfe5fe008 size 4: -1
tes left

(XEN) [   22.326431] d0v1 unable to fixup memory write to 0xfe5fe010 size 4: -1
(XEN) [   22.340467] d0v1 unable to fixup memory write to 0xfe5fe014 size 4: -1
[    5.132874] r(XEN) [   22.357280] d0v1 unable to fixup memory write to 0xfe5fe018 size 4: -1
8169 0000:03:00.(XEN) [   22.374098] d0v1 unable to fixup memory read from 0xfe5fe018 size 4: -1
0 eth0: RTL8125B(XEN) [   22.391084] d0v1 unable to fixup memory write to 0xfe5fe020 size 4: -1
, dc:9c:52:27:ae(XEN) [   22.407899] d0v1 unable to fixup memory write to 0xfe5fe024 size 4: -1
:c4, XID 641, IR(XEN) [   22.424712] d0v1 unable to fixup memory write to 0xfe5fe028 size 4: -1
Q 54

(XEN) [   22.439962] d0v1 unable to fixup memory read from 0xfe5fe028 size 4: -1
[    5.132877] r(XEN) [   22.456947] d0v1 unable to fixup memory write to 0xfe5fe030 size 4: -1
8169 0000:03:00.(XEN) [   22.473766] d0v1 unable to fixup memory write to 0xfe5fe034 size 4: -1
0 eth0: jumbo fe(XEN) [   22.490574] d0v1 unable to fixup memory write to 0xfe5fe038 size 4: -1
atures [frames: (XEN) [   22.507390] d0v1 unable to fixup memory read from 0xfe5fe038 size 4: -1
9194 bytes, tx c(XEN) [   22.524380] d0v1 unable to fixup memory write to 0xfe5fe040 size 4: -1
hecksumming: ko](XEN) [   22.541188] d0v1 unable to fixup memory write to 0xfe5fe044 size 4: -1


(XEN) [   22.555751] d0v1 unable to fixup memory write to 0xfe5fe048 size 4: -1
(XEN) [   22.569790] d0v1 unable to fixup memory read from 0xfe5fe048 size 4: -1
[    5.132885] x(XEN) [   22.586775] d0v1 unable to fixup memory write to 0xfe5fe00c size 4: -1
en_netfront: Ini(XEN) [   22.603588] d0v1 unable to fixup memory write to 0xfe5fe01c size 4: -1
tialising Xen vi(XEN) [   22.620405] d0v1 unable to fixup memory write to 0xfe5fe02c size 4: -1
rtual ethernet d(XEN) [   22.637215] d0v1 unable to fixup memory write to 0xfe5fe03c size 4: -1
river

(XEN) [   22.652643] d0v1 unable to fixup memory write to 0xfe5fe04c size 4: -1
(XEN) [   22.666685] d0v1 unable to fixup memory write to 0xfe5fe05c size 4: -1
[    5.133046] x(XEN) [   22.683497] d0v1 unable to fixup memory write to 0xfe5fe06c size 4: -1
hci_hcd 0000:04:(XEN) [   22.700309] d0v1 unable to fixup memory write to 0xfe5fe07c size 4: -1
00.3: xHCI Host (XEN) [   22.717122] d0v1 unable to fixup memory write to 0xfe5fe000 size 4: -1
Controller

(XEN) [   22.733416] d0v1 unable to fixup memory write to 0xfe5fe004 size 4: -1
(XEN) [   22.747456] d0v1 unable to fixup memory write to 0xfe5fe008 size 4: -1
(XEN) [   22.761496] d0v1 unable to fixup memory read from 0xfe5fe008 size 4: -1
(XEN) [   22.775713] d0v1 unable to fixup memory write to 0xfe5fe000 size 4: -1
(XEN) [   22.789751] d0v1 unable to fixup memory write to 0xfe5fe004 size 4: -1
(XEN) [   22.803795] d0v1 unable to fixup memory write to 0xfe5fe008 size 4: -1
(XEN) [   22.817831] d0v1 unable to fixup memory read from 0xfe5fe008 size 4: -1
(XEN) [   22.832043] d0v1 unable to fixup memory write to 0xfe5fe00c size 4: -1
[    5.133094] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1

[    5.133220] xhci_hcd 0000:04:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010

[    5.803322] xhci_hcd 0000:04:00.3: xHCI Host Controller

[    5.847115] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2

[    5.861963] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed

[    5.876200] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12

[    5.892818] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    5.907374] usb usb1: Product: xHCI Host Controller

[    5.917255] usb usb1: Manufacturer: Linux 6.12.0 xhci-hcd

[    5.928177] usb usb1: SerialNumber: 0000:04:00.3

[    5.937632] hub 1-0:1.0: USB hub found

[    5.945173] hub 1-0:1.0: 4 ports detected

[    5.953373] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.

[    5.969610] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12

[    5.986241] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.000799] usb usb2: Product: xHCI Host Controller

[    6.010677] usb usb2: Manufacturer: Linux 6.12.0 xhci-hcd

[    6.021602] usb usb2: SerialNumber: 0000:04:00.3

[    6.031074] hub 2-0:1.0: USB hub found

[    6.038596] hub 2-0:1.0: 2 ports detected

[    6.046844] xhci_hcd 0000:04:00.4: xHCI Host Controller

[    6.057362] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3

[    6.072291] xhci_hcd 0000:04:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010

(XEN) [   23.133477] d0v0 unable to fixup memory read from 0xfe4fe00c size 4: -1
(XEN) [   23.147685] d0v0 unable to fixup memory read from 0xfe4fe01c size 4: -1
(XEN) [   23.161902] d0v0 unable to fixup memory read from 0xfe4fe02c size 4: -1
(XEN) [   23.176117] d0v0 unable to fixup memory read from 0xfe4fe03c size 4: -1
(XEN) [   23.190325] d0v0 unable to fixup memory read from 0xfe4fe04c size 4: -1
(XEN) [   23.204544] d0v0 unable to fixup memory write to 0xfe4fe000 size 4: -1
(XEN) [   23.218579] d0v0 unable to fixup memory write to 0xfe4fe004 size 4: -1
(XEN) [   23.232622] d0v0 unable to fixup memory write to 0xfe4fe008 size 4: -1
(XEN) [   23.246660] d0v0 unable to fixup memory read from 0xfe4fe008 size 4: -1
(XEN) [   23.260876] d0v0 unable to fixup memory write to 0xfe4fe010 size 4: -1
(XEN) [   23.274915] d0v0 unable to fixup memory write to 0xfe4fe014 size 4: -1
(XEN) [   23.288953] d0v0 unable to fixup memory write to 0xfe4fe018 size 4: -1
(XEN) [   23.302996] d0v0 unable to fixup memory read from 0xfe4fe018 size 4: -1
(XEN) [   23.317207] d0v0 unable to fixup memory write to 0xfe4fe020 size 4: -1
(XEN) [   23.331249] d0v0 unable to fixup memory write to 0xfe4fe024 size 4: -1
(XEN) [   23.345291] d0v0 unable to fixup memory write to 0xfe4fe028 size 4: -1
(XEN) [   23.359329] d0v0 unable to fixup memory read from 0xfe4fe028 size 4: -1
(XEN) [   23.373541] d0v0 unable to fixup memory write to 0xfe4fe030 size 4: -1
(XEN) [   23.387583] d0v0 unable to fixup memory write to 0xfe4fe034 size 4: -1
(XEN) [   23.401626] d0v0 unable to fixup memory write to 0xfe4fe038 size 4: -1
(XEN) [   23.415664] d0v0 unable to fixup memory read from 0xfe4fe038 size 4: -1
(XEN) [   23.429919] d0v3 unable to fixup memory write to 0xfe4fe040 size 4: -1
(XEN) [   23.443957] d0v3 unable to fixup memory write to 0xfe4fe044 size 4: -1
(XEN) [   23.457998] d0v3 unable to fixup memory write to 0xfe4fe048 size 4: -1
(XEN) [   23.472040] d0v3 unable to fixup memory read from 0xfe4fe048 size 4: -1
(XEN) [   23.486252] d0v3 unable to fixup memory write to 0xfe4fe00c size 4: -1
(XEN) [   23.500294] d0v3 unable to fixup memory write to 0xfe4fe01c size 4: -1
(XEN) [   23.514331] d0v3 unable to fixup memory write to 0xfe4fe02c size 4: -1
(XEN) [   23.528375] d0v3 unable to fixup memory write to 0xfe4fe03c size 4: -1
(XEN) [   23.542413] d0v3 unable to fixup memory write to 0xfe4fe04c size 4: -1
(XEN) [   23.556455] d0v3 unable to fixup memory write to 0xfe4fe05c size 4: -1
(XEN) [   23.570494] d0v3 unable to fixup memory write to 0xfe4fe06c size 4: -1
(XEN) [   23.584535] d0v3 unable to fixup memory write to 0xfe4fe07c size 4: -1
(XEN) [   23.598575] d0v3 unable to fixup memory write to 0xfe4fe000 size 4: -1
(XEN) [   23.612616] d0v3 unable to fixup memory write to 0xfe4fe004 size 4: -1
(XEN) [   23.626652] d0v3 unable to fixup memory write to 0xfe4fe008 size 4: -1
(XEN) [   23.640692] d0v3 unable to fixup memory read from 0xfe4fe008 size 4: -1
(XEN) [   23.654905] d0v3 unable to fixup memory write to 0xfe4fe000 size 4: -1
(XEN) [   23.668946] d0v3 unable to fixup memory write to 0xfe4fe004 size 4: -1
(XEN) [   23.682988] d0v3 unable to fixup memory write to 0xfe4fe008 size 4: -1
(XEN) [   23.697029] d0v3 unable to fixup memory read from 0xfe4fe008 size 4: -1
(XEN) [   23.711242] d0v3 unable to fixup memory write to 0xfe4fe00c size 4: -1
[    6.682456] xhci_hcd 0000:04:00.4: xHCI Host Controller

[    6.693259] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4

[    6.707881] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed

[    6.722107] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12

[    6.738723] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.753285] usb usb3: Product: xHCI Host Controller

[    6.763168] usb usb3: Manufacturer: Linux 6.12.0 xhci-hcd

[    6.774085] usb usb3: SerialNumber: 0000:04:00.4

[    6.783801] hub 3-0:1.0: USB hub found

[    6.791136] hub 3-0:1.0: 4 ports detected

[    6.799381] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.

[    6.815574] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12

[    6.832211] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.846771] usb usb4: Product: xHCI Host Controller

[    6.856644] usb usb4: Manufacturer: Linux 6.12.0 xhci-hcd

[    6.867571] usb usb4: SerialNumber: 0000:04:00.4

[    6.877234] hub 4-0:1.0: USB hub found

[    6.884579] hub 4-0:1.0: 2 ports detected

[    6.892782] usbcore: registered new interface driver usblp

[    6.903823] usbcore: registered new interface driver usb-storage

[    6.915957] i8042: PNP: No PS/2 controller found.

[    6.925472] i8042: Probing ports directly.

[    6.934661] i8042: No controller found

[    6.942132] rtc_cmos 00:01: RTC can wake from S4

[    6.951464] rtc_cmos 00:01: registered as rtc0

[    6.960385] rtc_cmos 00:01: no alarms, y3k, 114 bytes nvram

[    6.971653] fail to initialize ptp_kvm

[    6.971763] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)

[    6.991784] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev

[    7.009599] amd_pstate: The CPPC feature is supported but currently disabled by the BIOS.

[    7.009599] Please enable it if your BIOS has the CPPC option.

[    7.037967] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled

[    7.053362] hid: raw HID events driver (C) Jiri Kosina

[    7.063533] usbcore: registered new interface driver usbhid

[    7.074735] usbhid: USB HID core driver

[    7.082831] snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002)

(XEN) [   24.138596] 0000:04:00.1: not mapping BAR [fe7c8, fe7cb] invalid position
[    7.110330] snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002)

(XEN) [   24.166330] 0000:04:00.6: not mapping BAR [fe7c0, fe7c7] invalid position
[    7.138389] Initializing XFRM netlink socket

[    7.141193] snd_hda_intel 0000:04:00.1: Cannot probe codecs, giving up

[    7.146778] N(XEN) [   24.205592] arch/x86/hvm/vmsi.c:886:d0v2 0000:04:00.1: PIRQ 3320: unsupported address 0
ET: Registered P(XEN) [   24.225353] arch/x86/hvm/vmsi.c:886:d0v2 0000:04:00.1: PIRQ 3320: unsupported address 0
F_INET6 protocol(XEN) [   24.245112] arch/x86/hvm/vmsi.c:886:d0v2 0000:04:00.1: PIRQ 3320: unsupported address 0
 family

[    7.221240] Segment Routing with IPv6

[    7.228407] In-situ OAM (IOAM) with IPv6

[    7.236459] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver

[    7.248489] NET: Registered PF_PACKET protocol family

[    7.258596] 9pnet: Installing 9P2000 support

[    7.267247] Key type dns_resolver registered

[    7.276561] IPI shorthand broadcast: enabled

[    7.286343] sched_clock: Marking stable (7141006567, 144551004)->(11008036798, -3722479227)

[    7.303039] registered taskstats version 1

[    7.311177] Loading compiled-in X.509 certificates

[    7.321679] Demotion targets for Node 0: null

[    7.330402] PM:   Magic number: 5:140:465

[    7.338486] printk: legacy console [netcon0] enabled

[    7.348430] netconsole: network logging started

[    7.358028] cfg80211: Loading compiled-in X.509 certificates for regulatory database

[    7.374609] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'

[    7.385862] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'

[    7.400327] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2

[    7.405576] ALSA device list:

[    7.417645] cfg80211: failed to load regulatory.db

[    7.433423]   No soundcards found.

[    7.440824] Freeing unused kernel image (initmem) memory: 3020K

[    7.452497] Write protecting the kernel read-only data: 28672k

[    7.464595] Freeing unused kernel image (rodata/data gap) memory: 844K

[    7.507492] x86/mm: Checked W+X mappings: passed, no W+X pages found.

[    7.520196] Run /init as init process

[    7.527642]   with arguments:

[    7.533706]     /init

[    7.538391]   with environment:

[    7.544801]     HOME=/

[    7.549653]     TERM=linux



   OpenRC 0.48 is starting up Linux 6.12.0 (x86_64)



 * Mounting /proc ...[    7.572118] f [ ok ]stabinfo (90) us

ed greatest stack depth: 13408 bytes left

 * Mounting /run ... [ ok ]

 * /run/openrc: creating directory

 * /run/lock: creating directory

 * /run/lock: correcting owner

 * Mounting xenfs ... [ ok ]

 * Caching service dependencies ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/devfs start

 * Mounting devtmpfs on /dev ... [ ok ]

 * Mounting /dev/mqueue ... [ ok ]

 * Mounting /dev/pts ... [ ok ]

 * Mounting /dev/shm ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/dmesg start

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/sysfs start

 * Mounting /sys ... [ ok ]

 * Mounting debug filesystem ... [ ok ]

 * Mounting config filesystem ... [ ok ]

 * Mounting SELinux filesystem ... [ ok ]

 * Mounting efivarfs filesystem ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/udev start

 * Starting udev ... * start-stop-daemon: fopen `/run/udev.pid': No such file or directory

 * Detaching to start `/sbin/udevd' ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/udev-trigger start

 * Generating a rule to create a /dev/root symlink ... [ ok ]

 * Populating /dev with existing devices through uevents ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/hwdrivers start

 * Loading hardware drivers ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/loopback start

 * Bringing up network interface lo ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/udev-settle start

 * Waiting for uevents to be processed ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/modules start

 * Loading modules ... *   Processing /etc/modules

 [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/hwclock start

 * Setting system clock using the hardware clock [UTC] ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/fsck start

 * Checking local filesystems  ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/root start

 * Remounting filesystems ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/localmount start

 * Mounting local filesystems ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/bootmisc start

 * Migrating /var/lock to /run/lock ... [ ok ]

 * Creating user login records ... [ ok ]

 * Cleaning /tmp directory ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/hostname start

 * Setting hostname ... [ ok ]

 * Executing: /lib/rc/sh/openrc-run.sh /lib/rc/sh/openrc-run.sh /etc/init.d/local start

 * Starting local ... *   Executing "/etc/local.d/xen.start" ... [ ok ]

 [ ok ]




Welcome to Alpine Linux 3.18


Kernel 6.12.0 on an x86_64 (/dev/hvc0)





runner-t2s2atxr-project-62921861-concurrent-0 login: root

Welcome to Alpine!



The Alpine Wiki contains a large amount of how-to guides and general

information about administrating Alpine systems.

See <https://wiki.alpinelinux.org/>.



You can setup the system with the command: setup-alpine



You may change this message by editing /etc/motd.



login[772]: root login on 'hvc0'

runner-t2s2atxr-project-62921861-concurrent-0:~# ls /dev/nmvm*e*

ls: /dev/nvme*: No such file or directory

runner-t2s2atxr-project-62921861-concurrent-0:~# (XEN) [   83.074771] *** Serial input to Xen (type 'CTRL-a' three times to switch input)
(XEN) [   84.764600] arch/x86/hvm/vmsi.c:886:d0v1 0000:04:00.6: PIRQ 3319: unsupported address 0
(XEN) [   84.781587] arch/x86/hvm/vmsi.c:886:d0v1 0000:04:00.6: PIRQ 3319: unsupported address 0
(XEN) [   84.798576] arch/x86/hvm/vmsi.c:886:d0v1 0000:04:00.6: PIRQ 3319: unsupported address 0
(XEN) [   87.035145] 'h' pressed -> showing installed handlers
(XEN) [   87.046237] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Wed Apr 23 20:16:28 UTC 2025
(XEN) [   87.071716] Latest ChangeSet:
(XEN) [   87.078825] build-id: 8aabeb63b20a347976fbd5f38d7ab356c307c41e
(XEN) [   87.091478]  key '*' (ascii '2a') => print all diagnostics
(XEN) [   87.103438]  key '+' (ascii '2b') => increase log level threshold
(XEN) [   87.116610]  key '-' (ascii '2d') => decrease log level threshold
(XEN) [   87.129785]  key '0' (ascii '30') => dump Dom0 registers
(XEN) [   87.141398]  key 'A' (ascii '41') => toggle alternative key handling
(XEN) [   87.155089]  key 'G' (ascii '47') => toggle host/guest log level adjustment
(XEN) [   87.169998]  key 'H' (ascii '48') => dump heap info
(XEN) [   87.180743]  key 'I' (ascii '49') => dump HVM irq info
(XEN) [   87.192012]  key 'M' (ascii '4d') => dump MSI state
(XEN) [   87.202757]  key 'N' (ascii '4e') => trigger an NMI
(XEN) [   87.213506]  key 'O' (ascii '4f') => toggle shadow audits
(XEN) [   87.225290]  key 'Q' (ascii '51') => dump PCI devices
(XEN) [   87.236383]  key 'R' (ascii '52') => reboot machine
(XEN) [   87.247132]  key 'S' (ascii '53') => reset shadow pagetables
(XEN) [   87.259437]  key 'V' (ascii '56') => dump IOMMU intremap tables
(XEN) [   87.272263]  key 'a' (ascii '61') => dump timer queues
(XEN) [   87.283531]  key 'c' (ascii '63') => dump ACPI Cx structures
(XEN) [   87.295839]  key 'd' (ascii '64') => dump registers
(XEN) [   87.306586]  key 'e' (ascii '65') => dump evtchn info
(XEN) [   87.317679]  key 'g' (ascii '67') => print grant table usage
(XEN) [   87.329986]  key 'h' (ascii '68') => show this message
(XEN) [   87.341251]  key 'i' (ascii '69') => dump interrupt bindings
(XEN) [   87.353557]  key 'm' (ascii '6d') => memory info
(XEN) [   87.363786]  key 'n' (ascii '6e') => NMI statistics
(XEN) [   87.374532]  key 'o' (ascii '6f') => dump iommu page tables
(XEN) [   87.386664]  key 'q' (ascii '71') => dump domain (and guest debug) info
(XEN) [   87.400880]  key 'r' (ascii '72') => dump run queues
(XEN) [   87.411799]  key 's' (ascii '73') => dump softtsc stats
(XEN) [   87.423241]  key 't' (ascii '74') => display multi-cpu clock info
(XEN) [   87.436413]  key 'u' (ascii '75') => dump NUMA info
(XEN) [   87.447160]  key 'v' (ascii '76') => dump AMD-V VMCBs
(XEN) [   87.458252]  key 'w' (ascii '77') => synchronously dump console ring buffer (dmesg)
(XEN) [   87.474546]  key 'x' (ascii '78') => print livepatch info
(XEN) [   87.486334]  key 'z' (ascii '7a') => dump IOAPIC info
(XEN) [   97.988054] '*' pressed -> firing all diagnostic keyhandlers
(XEN) [   98.000361] [d: dump registers]
(XEN) [   98.007641] 'd' pressed -> dumping registers
(XEN) [   98.017173]
(XEN) [   98.021162] *** Dumping CPU8 host state: ***
(XEN) [   98.030693] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [   98.045599] CPU:    8
(XEN) [   98.051148] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [   98.070561] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [   98.082522] rax: ffff8307cfd6fe48   rbx: ffff8307cb743e38   rcx: 0000000000000001
(XEN) [   98.098467] rdx: 0000000000000000   rsi: ffff8307cfd6fef8   rdi: 0000000000000048
(XEN) [   98.114415] rbp: ffff8307cfd6fe48   rsp: ffff8307cfd6fe48   r8:  00000000ffffff01
(XEN) [   98.130362] r9:  ffff8307cb743bb0   r10: 00000000ffffffff   r11: 000000000000000a
(XEN) [   98.146306] r12: ffff8307cb743dc0   r13: 0000000000000008   r14: 00000016cc314fa4
(XEN) [   98.162255] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [   98.178202] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [   98.189987] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [   98.205934] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [   98.220842] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [   98.240949]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [   98.257764] Xen stack trace from rsp=ffff8307cfd6fe48:
(XEN) [   98.269028]    ffff8307cfd6feb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db400
(XEN) [   98.285150]    ffff8307cfd6fea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [   98.301269]    0000000000000008 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [   98.317388]    ffff82d0404b8760 ffff8307cfd6fee8 ffff82d040322606 ffff82d04032251d
(XEN) [   98.333510]    ffff8307cb740000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [   98.349629]    ffff8307cfd6fde0 ffff82d040325539 3a19436360181b7b 4339d3aeb40a9eac
(XEN) [   98.365750]    ecf537471d2e9a73 a7b90668710a5210 e00f34efb9ad8b0d cf22117e43f8d6b4
(XEN) [   98.381871]    e67fa563ba789087 5da98f3d124c020f 561accdff2018569 4ad3b9311a4fba14
(XEN) [   98.397989]    4f12e6a383a01aa8 2c15e79e83236cdb 37a25941ffa72cb1 c61aa6b691104801
(XEN) [   98.414109]    108d8081d32d3cfa 3182b60b6eb33559 b33d9509d998a52a 4c270e8f8ea285bb
(XEN) [   98.430231]    8a8514e12a227aa7 aeaec6fcf0bddbd3 45438994610bd80e 1ab73ab851b476d4
(XEN) [   98.446349]    d9e0b398b76daa21 81bbf9ae5a98f6a8 312ac3d02fc26651 0000e01000000008
(XEN) [   98.462470]    ffff8307cb740000 000000378f7a1000 00000000003506e0 0000000000000000
(XEN) [   98.478590]    0000000000000000 0000000200000000 c100bc1100000002
(XEN) [   98.491764] Xen call trace:
(XEN) [   98.498352]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [   98.516376]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [   98.534578]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [   98.549484]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [   98.562484]
(XEN) [   98.566473] *** Dumping CPU0 host state: ***
(XEN) [   98.576005] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [   98.590910] CPU:    0
(XEN) [   98.596457] RIP:    e008:[<ffff82d040235375>] _spin_unlock_irqrestore+0x21/0x27
(XEN) [   98.612059] RFLAGS: 0000000000000206   CONTEXT: hypervisor
(XEN) [   98.624018] rax: ffff82d0405d4088   rbx: 0000000000000200   rcx: 0000000000000008
(XEN) [   98.639964] rdx: ffff8307cfdb7fff   rsi: ffff8307cb714568   rdi: ffff8307cb714560
(XEN) [   98.655911] rbp: ffff8307cfdb7e28   rsp: ffff8307cfdb7e20   r8:  ffff82d0405fcc01
(XEN) [   98.671859] r9:  ffff8307cb714560   r10: ffff8307cfdb7dc0   r11: ffff82d04034c98d
(XEN) [   98.687804] r12: 0000000000000206   r13: ffff82d0404cc878   r14: ffff8307cfdb7fff
(XEN) [   98.703752] r15: 0000000000000000   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [   98.719698] cr3: 00000007cb7cc000   cr2: 00005635b96283cd
(XEN) [   98.731484] fsb: 0000000000000000   gsb: ffff888115000000   gss: 0000000000000000
(XEN) [   98.747432] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [   98.762339] Xen code around <ffff82d040235375> (_spin_unlock_irqrestore+0x21/0x27):
(XEN) [   98.778631]  fd ff ff 48 09 1c 24 9d <48> 8b 5d f8 c9 c3 0f b7 47 02 66 39 07 0f 95 c0
(XEN) [   98.795445] Xen stack trace from rsp=ffff8307cfdb7e20:
(XEN) [   98.806713]    000000008e0e1099 ffff8307cfdb7e50 ffff82d04034d285 ffff82d0405db000
(XEN) [   98.822831]    ffffffffffffffff ffff82d0405db000 ffff8307cfdb7e68 ffff82d04034e840
(XEN) [   98.838951]    ffff82d0405db000 ffff8307cfdb7ea0 ffff82d04023481a 0000000000000000
(XEN) [   98.855072]    0000000000007fff ffff82d0405db000 ffff82d0405d4230 ffff82d0404b8760
(XEN) [   98.871192]    ffff8307cfdb7eb0 ffff82d0402348ad ffff8307cfdb7ee8 ffff82d0403225af
(XEN) [   98.887315]    ffff82d04032251d ffff8307cb349000 ffff8307cfdb7ef8 ffff8307cfda0000
(XEN) [   98.903434]    0000000000000000 ffff8307cfdb7e18 ffff82d0403254cd 000000000355f6c0
(XEN) [   98.919553]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [   98.935672]    ffffffff82c0c940 000000000bfd28b8 00000012e3303a40 0000000000000001
(XEN) [   98.951794]    0000000000037e34 ffff888115000000 00000000b0e27b53 0000000000000000
(XEN) [   98.967913]    ffffffff8298aec1 0000000000037e34 0000beef0000beef ffffffff8203fd4f
(XEN) [   98.984034]    000000bf0000beef 0000000000000206 ffffffff82c03e88 000000000000beef
(XEN) [   99.000154]    000000000000beef 000000000000beef 000000000000beef 000000000000beef
(XEN) [   99.016274]    0000e01000000000 ffff8307cfcdf000 0000000000000000 00000000003506e0
(XEN) [   99.032394]    0000000000000000 0000000000000000 0000000200000000 0000001000000002
(XEN) [   99.048514] Xen call trace:
(XEN) [   99.055101]    [<ffff82d040235375>] R _spin_unlock_irqrestore+0x21/0x27
(XEN) [   99.069316]    [<ffff82d04034d285>] F arch/x86/time.c#platform_time_calibration+0x5c/0x63
(XEN) [   99.086649]    [<ffff82d04034e840>] F arch/x86/time.c#local_time_calibration+0x19a/0x19c
(XEN) [   99.103809]    [<ffff82d04023481a>] F common/softirq.c#__do_softirq+0x93/0xbd
(XEN) [   99.119061]    [<ffff82d0402348ad>] F do_softirq+0x13/0x15
(XEN) [   99.131023]    [<ffff82d0403225af>] F arch/x86/domain.c#idle_loop+0x92/0xeb
(XEN) [   99.145927]    [<ffff82d0403254cd>] F context_switch+0x9ff/0xa10
(XEN) [   99.158930]
(XEN) [   99.162917] *** Dumping CPU1 host state: ***
(XEN) [   99.172448] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [   99.187356] CPU:    1
(XEN) [   99.192903] RIP:    e008:[<ffff82d04020454b>] svm_stgi_label+0/0x15
(XEN) [   99.206424] RFLAGS: 0000000000000246   CONTEXT: hypervisor (d0v1)
(XEN) [   99.219596] rax: 0000000000000002   rbx: ffff83080f1ff000   rcx: 0000000000000001
(XEN) [   99.235543] rdx: 0000000000000002   rsi: 0000000000000000   rdi: 0000000000000000
(XEN) [   99.251489] rbp: 00007cf8302700e7   rsp: ffff8307cfd8fef8   r8:  0000000000000000
(XEN) [   99.267438] r9:  0000000000000000   r10: 0000000000000000   r11: 0000000000000000
(XEN) [   99.283385] r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) [   99.299330] r15: 0000000000000000   cr0: 0000000080050033   cr4: 00000000003506e0
(XEN) [   99.315278] cr3: 00000007cb7b4000   cr2: 00007f56c19c6748
(XEN) [   99.327062] fsb: 0000000000000000   gsb: ffff888115080000   gss: 0000000000000000
(XEN) [   99.343011] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [   99.357918] Xen code around <ffff82d04020454b> (svm_stgi_label):
(XEN) [   99.370918]  24 00 01 00 00 0f 01 dc <e8> fd ac 09 00 e9 77 fe ff ff fb e8 3f 03 03 00
(XEN) [   99.387729] Xen stack trace from rsp=ffff8307cfd8fef8:
(XEN) [   99.398997]    0000000000000000 0000000000000003 ffffffff82ddc0c0 0000000000000002
(XEN) [   99.415119]    ffff888100b6fc98 0000000000000000 0000000000000000 0000004dee731040
(XEN) [   99.431237]    000000000000000f 000000000005c57c 000000080f1fb000 0000000000000cf8
(XEN) [   99.447357]    0000000000000414 ffffffff8298aec1 0000000000000414 0000beef0000beef
(XEN) [   99.463478]    ffffffff82041a53 000000bf0000beef 0000000000000093 ffffc900000e7e50
(XEN) [   99.479599]    000000000000beef 849100f1388cbeef 5e13536e83dfbeef 4c05a05274cdbeef
(XEN) [   99.495717]    08d4bed966e3beef 0000e01000000001 ffff83080f1ff000 000000378f7bd000
(XEN) [   99.511837]    00000000003506e0 0000000000000000 0000000000000000 0000000200000000
(XEN) [   99.527959]    6100901000000002
(XEN) [   99.535239] Xen call trace:
(XEN) [   99.541827]    [<ffff82d04020454b>] R svm_stgi_label+0/0x15
(XEN) [   99.553958]
(XEN) [   99.557946] *** Dumping CPU1 guest state (d0v1): ***
(XEN) [   99.568867] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [   99.583773] CPU:    1
(XEN) [   99.589320] RIP:    0010:[<ffffffff82041a53>]
(XEN) [   99.599027] RFLAGS: 0000000000000093   CONTEXT: hvm guest (d0v1)
(XEN) [   99.612025] rax: 000000080f1fb000   rbx: 0000000000000000   rcx: 0000000000000cf8
(XEN) [   99.627974] rdx: 0000000000000414   rsi: ffffffff8298aec1   rdi: 0000000000000414
(XEN) [   99.643918] rbp: ffff888100b6fc98   rsp: ffffc900000e7e50   r8:  000000000005c57c
(XEN) [   99.659865] r9:  000000000000000f   r10: 0000004dee731040   r11: 0000000000000000
(XEN) [   99.675814] r12: 0000000000000002   r13: ffffffff82ddc0c0   r14: 0000000000000003
(XEN) [   99.691760] r15: 0000000000000000   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [   99.707705] cr3: 0000000002c32000   cr2: 0000000000000000
(XEN) [   99.719493] fsb: 0000000000000000   gsb: ffff888115080000   gss: 0000000000000000
(XEN) [   99.735439] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [   99.750348]
(XEN) [   99.754335] *** Dumping CPU2 host state: ***
(XEN) [   99.763867] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [   99.778774] CPU:    2
(XEN) [   99.784320] RIP:    e008:[<ffff82d0402043d7>] svm_asm_do_resume+0x17/0x18b
(XEN) [   99.799052] RFLAGS: 0000000000000246   CONTEXT: hypervisor (d0v2)
(XEN) [   99.812226] rax: ffff8307cb7e8000   rbx: ffff83080f1f5000   rcx: 0000000000000000
(XEN) [   99.828172] rdx: 0000000000000000   rsi: ffff8307cfd86a28   rdi: ffff82c000251200
(XEN) [   99.844122] rbp: 00007cf8348c80e7   rsp: ffff8307cb737ef8   r8:  0000000000000000
(XEN) [   99.860066] r9:  ffff8307cfd86a20   r10: 0000000000000000   r11: 0000000000000000
(XEN) [   99.876014] r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) [   99.891961] r15: 0000000000000000   cr0: 0000000080050033   cr4: 00000000003506e0
(XEN) [   99.907908] cr3: 00000007cb7b3000   cr2: 00007fff428e4ff8
(XEN) [   99.919694] fsb: 0000000000000000   gsb: ffff888115100000   gss: 0000000000000000
(XEN) [   99.935643] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [   99.950548] Xen code around <ffff82d0402043d7> (svm_asm_do_resume+0x17/0x18b):
(XEN) [   99.965977]  09 00 e8 35 76 09 00 fb <e8> 56 db 02 00 8b 43 04 48 8d 15 1a 6c 3d 00 31
(XEN) [   99.982787] Xen stack trace from rsp=ffff8307cb737ef8:
(XEN) [   99.994054]    0000000000000000 0000000000000003 ffffffff82ddc0c0 0000000000000002
(XEN) [  100.010174]    ffff888100b70498 0000000000000000 0000000000000000 000000132e875640
(XEN) [  100.026297]    000000000000000f 000000000001422c 0000000000000000 0000000000000cf8
(XEN) [  100.042416]    0000000000000414 ffffffff8298aec1 0000000000000414 0000beef0000beef
(XEN) [  100.058536]    ffffffff82041a53 000000bf0000beef 0000000000000093 ffffc900000efe50
(XEN) [  100.074655]    000000000000beef 43fcb71e7869beef df1cf03ff38ebeef 737f0b8b6e2ebeef
(XEN) [  100.090774]    9d247efd9b77beef 0000e01000000002 ffff83080f1f5000 000000378f7ad000
(XEN) [  100.106897]    00000000003506e0 0000000000000000 0000000000000000 0000000200000000
(XEN) [  100.123016]    42007d1000000002
(XEN) [  100.130298] Xen call trace:
(XEN) [  100.136884]    [<ffff82d0402043d7>] R svm_asm_do_resume+0x17/0x18b
(XEN) [  100.150231]
(XEN) [  100.154217] *** Dumping CPU2 guest state (d0v2): ***
(XEN) [  100.165136] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  100.180043] CPU:    2
(XEN) [  100.185591] RIP:    0010:[<ffffffff82041a53>]
(XEN) [  100.195297] RFLAGS: 0000000000000093   CONTEXT: hvm guest (d0v2)
(XEN) [  100.208298] rax: 0000000000000000   rbx: 0000000000000000   rcx: 0000000000000cf8
(XEN) [  100.224245] rdx: 0000000000000414   rsi: ffffffff8298aec1   rdi: 0000000000000414
(XEN) [  100.240189] rbp: ffff888100b70498   rsp: ffffc900000efe50   r8:  000000000001422c
(XEN) [  100.256136] r9:  000000000000000f   r10: 000000132e875640   r11: 0000000000000000
(XEN) [  100.272085] r12: 0000000000000002   r13: ffffffff82ddc0c0   r14: 0000000000000003
(XEN) [  100.288032] r15: 0000000000000000   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [  100.303976] cr3: 0000000002c32000   cr2: 0000000000000000
(XEN) [  100.315764] fsb: 0000000000000000   gsb: ffff888115100000   gss: 0000000000000000
(XEN) [  100.331710] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [  100.346619]
(XEN) [  100.350605] *** Dumping CPU3 host state: ***
(XEN) [  100.360137] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  100.375043] CPU:    3
(XEN) [  100.380590] RIP:    e008:[<ffff82d04020454b>] svm_stgi_label+0/0x15
(XEN) [  100.394112] RFLAGS: 0000000000000246   CONTEXT: hypervisor (d0v3)
(XEN) [  100.407285] rax: 0000000000000002   rbx: ffff83080f1eb000   rcx: 0000000000000001
(XEN) [  100.423232] rdx: 0000000000000002   rsi: 0000000000000000   rdi: 0000000000000000
(XEN) [  100.439178] rbp: 00007cf8348d80e7   rsp: ffff8307cb727ef8   r8:  0000000000000000
(XEN) [  100.455124] r9:  0000000000000000   r10: 0000000000000000   r11: 0000000000000000
(XEN) [  100.471072] r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) [  100.487019] r15: 0000000000000000   cr0: 0000000080050033   cr4: 00000000003506e0
(XEN) [  100.502965] cr3: 00000007cb7b2000   cr2: 00007fe00316f09d
(XEN) [  100.514753] fsb: 0000000000000000   gsb: ffff888115180000   gss: 0000000000000000
(XEN) [  100.530700] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  100.545604] Xen code around <ffff82d04020454b> (svm_stgi_label):
(XEN) [  100.558607]  24 00 01 00 00 0f 01 dc <e8> fd ac 09 00 e9 77 fe ff ff fb e8 3f 03 03 00
(XEN) [  100.575418] Xen stack trace from rsp=ffff8307cb727ef8:
(XEN) [  100.586687]    0000000000000000 0000000000000003 ffffffff82ddc0c0 0000000000000002
(XEN) [  100.602806]    ffff888100b70898 0000000000000000 0000000000000000 0000004dee731040
(XEN) [  100.618925]    000000000000000f 00000000000188a4 000000080f1e8000 0000000000000cf8
(XEN) [  100.635047]    0000000000000414 ffffffff8298aec1 0000000000000414 0000beef0000beef
(XEN) [  100.651166]    ffffffff82041a53 000000bf0000beef 0000000000000093 ffffc900000f7e50
(XEN) [  100.667286]    000000000000beef b16ece20699cbeef 06a9d9381999beef 25f5f775d8b5beef
(XEN) [  100.683406]    d8442b160f28beef 0000e01000000003 ffff83080f1eb000 000000378b159000
(XEN) [  100.699527]    00000000003506e0 0000000000000000 0000000000000000 0000000200000000
(XEN) [  100.715646]    9600f31000000002
(XEN) [  100.722926] Xen call trace:
(XEN) [  100.729513]    [<ffff82d04020454b>] R svm_stgi_label+0/0x15
(XEN) [  100.741646]
(XEN) [  100.745632] *** Dumping CPU3 guest state (d0v3): ***
(XEN) [  100.756555] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  100.771462] CPU:    3
(XEN) [  100.777008] RIP:    0010:[<ffffffff82041a53>]
(XEN) [  100.786715] RFLAGS: 0000000000000093   CONTEXT: hvm guest (d0v3)
(XEN) [  100.799713] rax: 000000080f1e8000   rbx: 0000000000000000   rcx: 0000000000000cf8
(XEN) [  100.815661] rdx: 0000000000000414   rsi: ffffffff8298aec1   rdi: 0000000000000414
(XEN) [  100.831606] rbp: ffff888100b70898   rsp: ffffc900000f7e50   r8:  00000000000188a4
(XEN) [  100.847554] r9:  000000000000000f   r10: 0000004dee731040   r11: 0000000000000000
(XEN) [  100.863503] r12: 0000000000000002   r13: ffffffff82ddc0c0   r14: 0000000000000003
(XEN) [  100.879448] r15: 0000000000000000   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [  100.895394] cr3: 0000000002c32000   cr2: 0000000000000000
(XEN) [  100.907181] fsb: 0000000000000000   gsb: ffff888115180000   gss: 0000000000000000
(XEN) [  100.923127] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [  100.938034]
(XEN) [  100.942020] *** Dumping CPU4 host state: ***
(XEN) [  100.951554] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  100.966462] CPU:    4
(XEN) [  100.972008] RIP:    e008:[<ffff82d04022e342>] common/page_alloc.c#node_to_scrub+0x2d/0x1ab
(XEN) [  100.989516] RFLAGS: 0000000000000286   CONTEXT: hypervisor
(XEN) [  101.001474] rax: 0000000000000004   rbx: 0000000000000004   rcx: 0000000000000000
(XEN) [  101.017421] rdx: ffff82d0404b6600   rsi: ffffffffffffff01   rdi: 0000000000000001
(XEN) [  101.033369] rbp: ffff8307cb777e38   rsp: ffff8307cb777e08   r8:  ffff8307cb77e2a0
(XEN) [  101.049316] r9:  0000000000000001   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  101.065263] r12: 0000000000007fff   r13: ffff82d0405db000   r14: 0000000000000000
(XEN) [  101.081209] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  101.097156] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  101.108942] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  101.124891] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  101.139796] Xen code around <ffff82d04022e342> (common/page_alloc.c#node_to_scrub+0x2d/0x1ab):
(XEN) [  101.157996]  82 28 00 44 0f b6 34 02 <41> 80 fe ff b8 00 00 00 00 44 0f 44 f0 41 0f b6
(XEN) [  101.174809] Xen stack trace from rsp=ffff8307cb777e08:
(XEN) [  101.186077]    ffff0107cb778220 0000000000000004 0000000000007fff ffff82d0405db000
(XEN) [  101.202196]    ffff82d0405d4230 ffff82d0404b8760 ffff8307cb777eb0 ffff82d04022fdfa
(XEN) [  101.218316]    ffff82d04034e5e4 00000004cb777e68 ffff82d04034e74e ffff82d0405db200
(XEN) [  101.234437]    ffff8307cb777ea0 ffff82d04023482a 0000000000000004 0000000000007fff
(XEN) [  101.250558]    0000000000000004 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  101.266678]    ffff82d0404b8760 ffff8307cb777ee8 ffff82d0403225db ffff82d04032251d
(XEN) [  101.282799]    ffff8307cb77b000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  101.298916]    ffff8307cb777de8 ffff82d040325539 48e1c6c128fdd97b 2728265ad4cf5a27
(XEN) [  101.315037]    ef0f02784b933539 c413aad6e0ea26d0 6aed1dc4d4b5747a 374b01cc795293b2
(XEN) [  101.331156]    72494c2f8469c779 5d1150def7497abc 03ee3775849865ec b407cf9dd0997837
(XEN) [  101.347277]    873f09fc5f762a54 e7d2f7d211a9672d 1f18d7695fbf9135 c090dddb282d8b24
(XEN) [  101.363398]    b605e66b738a3dfe 38e3ed995ee06102 37371cdd2d8a92f3 700509db9e545b82
(XEN) [  101.379518]    b3126b8beb35cd7b 5b6c33d92b1841f4 9c4a5760cff7820e 55212312185eb49c
(XEN) [  101.395640]    fc7a92f44c2015ab 45d3b280b273fbd7 ec90a37d768d8aad 0000e01000000004
(XEN) [  101.411758]    ffff8307cb77b000 000000378b1a9000 00000000003506e0 0000000000000000
(XEN) [  101.427879]    0000000000000000 0000000200000000 91009b1000000002
(XEN) [  101.441051] Xen call trace:
(XEN) [  101.447639]    [<ffff82d04022e342>] R common/page_alloc.c#node_to_scrub+0x2d/0x1ab
(XEN) [  101.463759]    [<ffff82d04022fdfa>] F scrub_free_pages+0x2a/0x41b
(XEN) [  101.476931]    [<ffff82d0403225db>] F arch/x86/domain.c#idle_loop+0xbe/0xeb
(XEN) [  101.491838]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  101.504839]
(XEN) [  101.508825] *** Dumping CPU5 host state: ***
(XEN) [  101.518359] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  101.533268] CPU:    5
(XEN) [  101.538812] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  101.558228] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  101.570187] rax: ffff8307cb767e48   rbx: ffff8307cb778d78   rcx: 0000000000000001
(XEN) [  101.586135] rdx: 0000000000000000   rsi: ffff8307cb767ef8   rdi: 0000000000000048
(XEN) [  101.602080] rbp: ffff8307cb767e48   rsp: ffff8307cb767e48   r8:  00000000ffffff01
(XEN) [  101.618026] r9:  ffff8307cb778af0   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  101.633973] r12: ffff8307cb778d00   r13: 0000000000000005   r14: 00000017808d3037
(XEN) [  101.649920] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  101.665869] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  101.677653] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  101.693602] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  101.708509] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [  101.728614]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [  101.745429] Xen stack trace from rsp=ffff8307cb767e48:
(XEN) [  101.756695]    ffff8307cb767eb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db280
(XEN) [  101.772815]    ffff8307cb767ea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  101.788934]    0000000000000005 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  101.805055]    ffff82d0404b8760 ffff8307cb767ee8 ffff82d040322606 ffff82d04032251d
(XEN) [  101.821176]    ffff8307cb76d000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  101.837296]    ffff8307cb767de8 ffff82d040325539 03fe730241d2401f aa93d06837c14d31
(XEN) [  101.853415]    4de685d04069f673 4e270d0b2d79791e a1cba849606cde68 26565efad753c8aa
(XEN) [  101.869535]    8e606f2abd10ccf8 51ac6f92e2a4123a 49249c9fd991bab9 b2e5242ed316b972
(XEN) [  101.885655]    98b8d48db1fa3233 58f2ba4f61adb2c9 6682965105f1d8fc 2b7c6c4464862b64
(XEN) [  101.901774]    5bca12bb180decbf 79b298a7ae09af36 8880d8ab23f90570 ad53a2ae1c4dcec2
(XEN) [  101.917897]    c9c15d3ef8ee5b9e d9820e245efeabb0 4ac1504996af0a42 e1277617fa1c367f
(XEN) [  101.934016]    1b2078a775642d56 31c0bff8da31273c cedb42b49defdc67 0000e01000000005
(XEN) [  101.950136]    ffff8307cb76d000 000000378b195000 00000000003506e0 0000000000000000
(XEN) [  101.966255]    0000000000000000 0000000200000000 2800ca1100000002
(XEN) [  101.979431] Xen call trace:
(XEN) [  101.986017]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  102.004044]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [  102.022245]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  102.037149]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  102.050150]
(XEN) [  102.054135] *** Dumping CPU6 host state: ***
(XEN) [  102.063669] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  102.078576] CPU:    6
(XEN) [  102.084125] RIP:    e008:[<ffff82d04022fdd1>] scrub_free_pages+0x1/0x41b
(XEN) [  102.098510] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  102.110471] rax: 0000000000000300   rbx: 0000000000000006   rcx: 0000000000000000
(XEN) [  102.126416] rdx: 0000000000000000   rsi: ffffffffffffff01   rdi: 0000000000000006
(XEN) [  102.142364] rbp: ffff8307cb74fee8   rsp: ffff8307cb74feb0   r8:  ffff8307cb75a2a0
(XEN) [  102.158311] r9:  0000000000000001   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  102.174257] r12: 0000000000007fff   r13: ffff82d0405db000   r14: ffff82d0405d4230
(XEN) [  102.190204] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  102.206151] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  102.217937] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  102.233884] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  102.248792] Xen code around <ffff82d04022fdd1> (scrub_free_pages+0x1/0x41b):
(XEN) [  102.263873]  bb f4 ff ff ff eb b0 55 <48> 89 e5 41 57 41 56 41 55 41 54 53 48 83 ec 40
(XEN) [  102.280684] Xen stack trace from rsp=ffff8307cb74feb0:
(XEN) [  102.291951]    ffff8307cb74fee8 ffff82d0403225db ffff82d04032251d ffff8307cb757000
(XEN) [  102.308072]    0000000000000000 0000000000000001 ffff82d0404b8760 ffff8307cb74fde8
(XEN) [  102.324191]    ffff82d040325539 ebd9586e78c58efe e396b3b857eb16b3 7fa06776dbf6c6ca
(XEN) [  102.340313]    c2e1a671e11124d1 5929c29785048829 53f3c5bf997b610f 9fd9e30d8598c94c
(XEN) [  102.356432]    308838594b7925ea 1be539522e997f4c 365c0779bc4a3b3a c1dc487444149489
(XEN) [  102.372553]    f597674439d1e423 b9e73847001cef72 f8d32c405edf58b6 f9750886fe907779
(XEN) [  102.388674]    06e879325524168d 4f134176ab0565a0 bf541d83cff75eb4 a07f9b28eb555fcd
(XEN) [  102.404793]    a4809202d0eb99b6 9ad02551a3fd25ab e1a16cf59a62b68b f9639dd61a5bc70b
(XEN) [  102.420912]    4217deeeabf60d62 5ed3a75347c73b0d 0000e01000000006 ffff8307cb757000
(XEN) [  102.437034]    000000378b185000 00000000003506e0 0000000000000000 0000000000000000
(XEN) [  102.453151]    0000000200000000 5700211000000002
(XEN) [  102.463378] Xen call trace:
(XEN) [  102.469968]    [<ffff82d04022fdd1>] R scrub_free_pages+0x1/0x41b
(XEN) [  102.482966]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  102.495965]
(XEN) [  102.499953] *** Dumping CPU7 host state: ***
(XEN) [  102.509488] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  102.524393] CPU:    7
(XEN) [  102.529940] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  102.549354] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  102.561314] rax: ffff8307cfd7fe48   rbx: ffff8307cb743358   rcx: 0000000000000001
(XEN) [  102.577261] rdx: 0000000000000000   rsi: ffff8307cfd7fef8   rdi: 0000000000000048
(XEN) [  102.593208] rbp: ffff8307cfd7fe48   rsp: ffff8307cfd7fe48   r8:  00000000ffffff01
(XEN) [  102.609154] r9:  ffff8307cb7430d0   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  102.625101] r12: ffff8307cb7432e0   r13: 0000000000000007   r14: 00000017c2d6bb72
(XEN) [  102.641047] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  102.656994] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  102.668782] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  102.684729] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  102.699636] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [  102.719741]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [  102.736557] Xen stack trace from rsp=ffff8307cfd7fe48:
(XEN) [  102.747821]    ffff8307cfd7feb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db380
(XEN) [  102.763942]    ffff8307cfd7fea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  102.780061]    0000000000000007 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  102.796181]    ffff82d0404b8760 ffff8307cfd7fee8 ffff82d040322606 ffff82d04032251d
(XEN) [  102.812302]    ffff8307cb752000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  102.828423]    ffff8307cfd7fde8 ffff82d040325539 c4125b96cb918eff 893ed52f1a1148d5
(XEN) [  102.844542]    16e55867330e2e20 55d93ef777ce71ed 8698cae089bb8d12 8e709329c1a6c2e6
(XEN) [  102.860661]    ffd351acfdddd30b fbb44bbd0874d624 01e738734fe1aa9c f1c605f3ecb85d31
(XEN) [  102.876782]    893315a0eece83a7 4a06207ceb2772ca 8f81a1df7a4d1759 0bb413d1b23440dd
(XEN) [  102.892902]    22774780a514eb37 2a2a0e817028f928 2db14ec1609a15ec 8452a0f24bd932f7
(XEN) [  102.909024]    b29a3cfe976d8f73 87d5b12efd5e7640 e1e49ec67badc4e2 3e5aabf0e42e4682
(XEN) [  102.925142]    34e69c5c9a3d311a 8aba2395afb62bbb 0120e5b75261ef7e 0000e01000000007
(XEN) [  102.941264]    ffff8307cb752000 000000378b171000 00000000003506e0 0000000000000000
(XEN) [  102.957384]    0000000000000000 0000000200000000 3300481100000002
(XEN) [  102.970556] Xen call trace:
(XEN) [  102.977143]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  102.995169]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [  103.013371]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  103.028278]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  103.041276]
(XEN) [  103.045264] *** Dumping CPU9 host state: ***
(XEN) [  103.054799] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  103.069705] CPU:    9
(XEN) [  103.075252] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  103.094664] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  103.106626] rax: ffff8307cfd5fe48   rbx: ffff8307cfd63928   rcx: 0000000000000001
(XEN) [  103.122572] rdx: 0000000000000000   rsi: ffff8307cfd5fef8   rdi: 0000000000000048
(XEN) [  103.138519] rbp: ffff8307cfd5fe48   rsp: ffff8307cfd5fe48   r8:  00000000ffffff01
(XEN) [  103.154464] r9:  ffff8307cfd636a0   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  103.170412] r12: ffff8307cfd638b0   r13: 0000000000000009   r14: 00000017c2d6b7cb
(XEN) [  103.186359] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  103.202307] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  103.214091] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  103.230040] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  103.244947] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [  103.265052]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [  103.281866] Xen stack trace from rsp=ffff8307cfd5fe48:
(XEN) [  103.293133]    ffff8307cfd5feb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db480
(XEN) [  103.309254]    ffff8307cfd5fea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  103.325371]    0000000000000009 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  103.341494]    ffff82d0404b8760 ffff8307cfd5fee8 ffff82d040322606 ffff82d04032251d
(XEN) [  103.357613]    ffff8307cfd62000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  103.373734]    ffff8307cfd5fde8 ffff82d040325539 6c5639ab6a142a72 7f57db4dfed158da
(XEN) [  103.389853]    624f24563cbcd8df bb4ef1b15f2fabde 8acbc34341467398 8f5a5046f63d3b0d
(XEN) [  103.405972]    5da172d6ea63ff6d e09df0c2317d13ac f8c020a0e4fb85c8 7564026333b36707
(XEN) [  103.422094]    9ba3b730bf9d284e a51c7e1d0c714e01 e83c3d5c98f6fa4e bf14e452d7056b6c
(XEN) [  103.438213]    b5f4e083f78532e8 749f73ceecfa2d49 1e92d06bd2509bd1 f21f177be0442025
(XEN) [  103.454335]    6a2424f6820432d9 b5d508f5c3afbfcc a5524a5e92eb1ddb 6c0280daefa064ff
(XEN) [  103.470455]    984e8ea73a48d96a f0bec5c09882b589 1c0bbd014acc4d9f 0000e01000000009
(XEN) [  103.486575]    ffff8307cfd62000 000000378f791000 00000000003506e0 0000000000000000
(XEN) [  103.502696]    0000000000000000 0000000200000000 9e00e61100000002
(XEN) [  103.515867] Xen call trace:
(XEN) [  103.522453]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  103.540481]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [  103.558680]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  103.573587]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  103.586588]
(XEN) [  103.590576] *** Dumping CPU10 host state: ***
(XEN) [  103.600281] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  103.615189] CPU:    10
(XEN) [  103.620907] RIP:    e008:[<ffff82d040234788>] common/softirq.c#__do_softirq+0x1/0xbd
(XEN) [  103.637375] RFLAGS: 0000000000000202   CONTEXT: hypervisor
(XEN) [  103.649335] rax: 0000000000000246   rbx: 000000000000000a   rcx: ffff8307cfd51540
(XEN) [  103.665283] rdx: ffff82d0405db000   rsi: 0000000000000bfd   rdi: 0000000000000000
(XEN) [  103.681229] rbp: ffff8307cfd4feb0   rsp: ffff8307cfd4fea0   r8:  00000000fffff830
(XEN) [  103.697176] r9:  ffff8307cfd54390   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  103.713123] r12: 0000000000007fff   r13: ffff82d0405db000   r14: ffff82d0405d4230
(XEN) [  103.729070] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  103.745017] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  103.756803] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  103.772751] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  103.787658] Xen code around <ffff82d040234788> (common/softirq.c#__do_softirq+0x1/0xbd):
(XEN) [  103.804817]  02 00 e8 cf fe ff ff 55 <48> 89 e5 41 57 41 56 41 55 41 54 53 49 89 fc 49
(XEN) [  103.821631] Xen stack trace from rsp=ffff8307cfd4fea0:
(XEN) [  103.832897]    ffff8307cfd4feb0 ffff82d0402348ad ffff8307cfd4fee8 ffff82d0403225af
(XEN) [  103.849017]    ffff82d04032251d ffff8307cfd55000 0000000000000000 0000000000000001
(XEN) [  103.865137]    ffff82d0404b8760 ffff8307cfd4fde8 ffff82d040325539 523510cff378e586
(XEN) [  103.881256]    4546883447c9270c 4cdef8a32cc7b4ca 68930553131903c1 98aee091d4586537
(XEN) [  103.897378]    afec0e71e2687726 e3e2900a99f6d330 0282cce9e762d153 7bb6e49fac19de4f
(XEN) [  103.913498]    1500df03c1691798 3642d9e85787f385 f541ae9442110dd4 54c88470ada1a00e
(XEN) [  103.929617]    7f47988ccf0c2558 ed39c7c8fd07410f 65c95c88bbb78749 441a309c1e8744dd
(XEN) [  103.945737]    6dd5e2c294deb7a7 43070d84360c4a8a df8aa092146a274d 7f9ea001aa4087bc
(XEN) [  103.961859]    1cb4389d8fa4035d d860c900514db389 290128fa6c5963a6 8492bb9bb8ed6bf2
(XEN) [  103.977979]    0000e0100000000a ffff8307cfd55000 000000378f77d000 00000000003506e0
(XEN) [  103.994099]    0000000000000000 0000000000000000 0000000200000000 a3000c1000000002
(XEN) [  104.010217] Xen call trace:
(XEN) [  104.016806]    [<ffff82d040234788>] R common/softirq.c#__do_softirq+0x1/0xbd
(XEN) [  104.031884]    [<ffff82d0403225af>] F arch/x86/domain.c#idle_loop+0x92/0xeb
(XEN) [  104.046791]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  104.059791]
(XEN) [  104.063777] *** Dumping CPU11 host state: ***
(XEN) [  104.073485] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  104.088393] CPU:    11
(XEN) [  104.094111] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  104.113525] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  104.125487] rax: ffff8307cfd37e48   rbx: ffff8307cfd3c088   rcx: 0000000000000001
(XEN) [  104.141432] rdx: 0000000000000000   rsi: ffff8307cfd37ef8   rdi: 0000000000000048
(XEN) [  104.157379] rbp: ffff8307cfd37e48   rsp: ffff8307cfd37e48   r8:  00000000ffffff01
(XEN) [  104.173325] r9:  ffff8307cfd54c80   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  104.189274] r12: ffff8307cfd3c010   r13: 000000000000000b   r14: 000000181e6ae569
(XEN) [  104.205219] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  104.221167] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  104.232953] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  104.248900] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  104.263808] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [  104.283913]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [  104.300728] Xen stack trace from rsp=ffff8307cfd37e48:
(XEN) [  104.311992]    ffff8307cfd37eb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db580
(XEN) [  104.328115]    ffff8307cfd37ea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  104.344235]    000000000000000b 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  104.360356]    ffff82d0404b8760 ffff8307cfd37ee8 ffff82d040322606 ffff82d04032251d
(XEN) [  104.376474]    ffff8307cfd3f000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  104.392594]    ffff8307cfd37de8 ffff82d040325539 937187638b3adf77 33b6bb136c0b253f
(XEN) [  104.408713]    dcf4f2aff7ae2b57 5930d95cca50f32e e0bbd66f1363aa29 5662009554e38df5
(XEN) [  104.424834]    64160f6ee2573f6d 70b0c4dca985fb60 45472ac2c195f96d 06d02642b9786013
(XEN) [  104.440954]    128dfcbc9f312843 39b455ee3a28d162 eb158ca999410cda 31680dcd00ecf893
(XEN) [  104.457075]    568278e3e5dc3130 e2181933ea8eb1ea 0274bac244271fdf 31af4cd47b9d1609
(XEN) [  104.473194]    54245a99f1f47cae 2c6d926d9294557b 7faa5bb399c37dd7 5a19d90211114ed9
(XEN) [  104.489315]    b3e522124f635398 d28b1c51607d7481 a117052696a455c9 0000e0100000000b
(XEN) [  104.505434]    ffff8307cfd3f000 000000378f76d000 00000000003506e0 0000000000000000
(XEN) [  104.521556]    0000000000000000 0000000200000000 9e00cf1100000002
(XEN) [  104.534730] Xen call trace:
(XEN) [  104.541316]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  104.559344]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [  104.577543]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  104.592450]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  104.605449]
(XEN) [  104.609434] *** Dumping CPU12 host state: ***
(XEN) [  104.619143] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  104.634049] CPU:    12
(XEN) [  104.639768] RIP:    e008:[<ffff82d040234788>] common/softirq.c#__do_softirq+0x1/0xbd
(XEN) [  104.656235] RFLAGS: 0000000000000202   CONTEXT: hypervisor
(XEN) [  104.668195] rax: 0000000000000246   rbx: 000000000000000c   rcx: ffff8307cfd2d540
(XEN) [  104.684144] rdx: ffff82d0405db000   rsi: 0000000000000bfd   rdi: 0000000000000000
(XEN) [  104.700088] rbp: ffff8307cfd27eb0   rsp: ffff8307cfd27ea0   r8:  00000000fffff830
(XEN) [  104.716037] r9:  ffff8307cfd3c770   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  104.731983] r12: 0000000000007fff   r13: ffff82d0405db000   r14: ffff82d0405d4230
(XEN) [  104.747930] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  104.763877] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  104.775663] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  104.791610] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  104.806518] Xen code around <ffff82d040234788> (common/softirq.c#__do_softirq+0x1/0xbd):
(XEN) [  104.823678]  02 00 e8 cf fe ff ff 55 <48> 89 e5 41 57 41 56 41 55 41 54 53 49 89 fc 49
(XEN) [  104.840492] Xen stack trace from rsp=ffff8307cfd27ea0:
(XEN) [  104.851759]    ffff8307cfd27eb0 ffff82d0402348ad ffff8307cfd27ee8 ffff82d0403225af
(XEN) [  104.867876]    ffff82d04032251d ffff8307cfd39000 0000000000000000 0000000000000001
(XEN) [  104.883997]    ffff82d0404b8760 ffff8307cfd27de8 ffff82d040325539 88a2f0ca07441757
(XEN) [  104.900119]    ff644c024d611169 259cdcbf6482d957 3e32b1a957a26af1 9422399ee5fdff03
(XEN) [  104.916238]    c931d0c4341a920b fa10b2e8bfa595fd 5a579682bf728142 bbd857151bcd119c
(XEN) [  104.932357]    78bd51a4df534d34 e876b466f88b3495 185289824774a94e 758a42a15ba569cf
(XEN) [  104.948478]    2c762621117069a3 fe613feeebac7f02 f80a455720278a4e 931476fa1962fd0d
(XEN) [  104.964599]    88375533a19647fa b496b8daec4b596a 2733ab0ca8e605d5 822233a8e651f18d
(XEN) [  104.980717]    770588896c84c587 2e1770617cdf05db 950764d21cb7e2eb a1fd023da987dba8
(XEN) [  104.996838]    0000e0100000000c ffff8307cfd39000 000000378f759000 00000000003506e0
(XEN) [  105.012957]    0000000000000000 0000000000000000 0000000200000000 6400b31000000002
(XEN) [  105.029078] Xen call trace:
(XEN) [  105.035666]    [<ffff82d040234788>] R common/softirq.c#__do_softirq+0x1/0xbd
(XEN) [  105.050746]    [<ffff82d0403225af>] F arch/x86/domain.c#idle_loop+0x92/0xeb
(XEN) [  105.065654]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  105.078653]
(XEN) [  105.082640] *** Dumping CPU13 host state: ***
(XEN) [  105.092347] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  105.107254] CPU:    13
(XEN) [  105.112972] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  105.132385] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  105.144346] rax: ffff8307cfd17e48   rbx: ffff8307cfd1b618   rcx: 0000000000000001
(XEN) [  105.160292] rdx: 0000000000000000   rsi: ffff8307cfd17ef8   rdi: 0000000000000048
(XEN) [  105.176239] rbp: ffff8307cfd17e48   rsp: ffff8307cfd17e48   r8:  00000000ffffff01
(XEN) [  105.192187] r9:  ffff8307cfd1b390   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  105.208134] r12: ffff8307cfd1b5a0   r13: 000000000000000d   r14: 000000185b25823b
(XEN) [  105.224081] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  105.240027] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  105.251815] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  105.267760] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  105.282667] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [  105.302773]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [  105.319586] Xen stack trace from rsp=ffff8307cfd17e48:
(XEN) [  105.330855]    ffff8307cfd17eb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db680
(XEN) [  105.346976]    ffff8307cfd17ea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  105.363095]    000000000000000d 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  105.379216]    ffff82d0404b8760 ffff8307cfd17ee8 ffff82d040322606 ffff82d04032251d
(XEN) [  105.395333]    ffff8307cfd28000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  105.411454]    ffff8307cfd17de8 ffff82d040325539 f78cdf3d5ba94151 cf76dc4149f10284
(XEN) [  105.427574]    c0346aeba337d4c1 902fd7249a2a1268 1eaa35b9a73dedf9 ea4663586f8a837c
(XEN) [  105.443695]    7a5f832950a2f03b a704a5b712c2a994 da0c89692c893296 62ae3e75a71baa43
(XEN) [  105.459814]    227eca57698d1839 188b4231d2491ea1 a741b0348e29e1fd f6756bd79b7ec632
(XEN) [  105.475935]    31944cb33b214724 f23ca4a5dc6973e7 af486669b8818e5b c80851f51ddc36f1
(XEN) [  105.492056]    31f91ae153189133 301d3c350bff71b0 e1a1ead3dce78c10 fc1ca7597b5623bd
(XEN) [  105.508176]    0e853ae075a67bdf fb7be4525ee6300a 92e845cd0849cba2 0000e0100000000d
(XEN) [  105.524297]    ffff8307cfd28000 000000378f749000 00000000003506e0 0000000000000000
(XEN) [  105.540416]    0000000000000000 0000000200000000 d100af1100000002
(XEN) [  105.553588] Xen call trace:
(XEN) [  105.560175]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  105.578204]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [  105.596403]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  105.611310]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  105.624308]
(XEN) [  105.628296] *** Dumping CPU14 host state: ***
(XEN) [  105.638005] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  105.652910] CPU:    14
(XEN) [  105.658631] RIP:    e008:[<ffff82d04034d722>] get_s_time_fixed+0x37/0x45
(XEN) [  105.673018] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  105.684977] rax: 0000000090697195   rbx: ffff8307cfd0a2a0   rcx: 0000000000000000
(XEN) [  105.700924] rdx: 000000000000007e   rsi: 0000000000000010   rdi: 0000000000000000
(XEN) [  105.716871] rbp: ffff8307cfd07e10   rsp: ffff8307cfd07e08   r8:  ffff82d0404b5e00
(XEN) [  105.732816] r9:  0000000000000001   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  105.748765] r12: ffff8307cb7ff010   r13: 0000000000000000   r14: ffff82d0405d4230
(XEN) [  105.764712] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  105.780659] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  105.792444] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  105.808392] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  105.823299] Xen code around <ffff82d04034d722> (get_s_time_fixed+0x37/0x45):
(XEN) [  105.838379]  8b 5d f8 c9 c3 0f 01 f9 <66> 90 48 c1 e2 20 48 89 d7 48 09 c7 eb d9 55 48
(XEN) [  105.855191] Xen stack trace from rsp=ffff8307cfd07e08:
(XEN) [  105.866459]    ffff8307cfd09540 ffff8307cfd07e20 ffff82d04034d9fc ffff8307cfd07e48
(XEN) [  105.882578]    ffff82d040286af2 000000000000000e ffff8307cb7ff010 000000000000000e
(XEN) [  105.898698]    ffff8307cfd07eb0 ffff82d040285352 ffff82d04034e74e ffff82d0405db700
(XEN) [  105.914818]    ffff8307cfd07ea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  105.930937]    000000000000000e 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  105.947058]    ffff82d0404b8760 ffff8307cfd07ee8 ffff82d040322606 ffff82d04032251d
(XEN) [  105.963180]    ffff8307cfd0e000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  105.979299]    ffff8307cfd07de8 ffff82d040325539 b51fad5946f617e7 72627fc52fa04956
(XEN) [  105.995420]    7e75a73548ed284b e56f2a064a23886c f12b4e084d681884 f2c5addbd4181005
(XEN) [  106.011541]    469b50c19c754381 2a4944075d5381ce 36062788e42b4dee 2b84be69e09dd7f5
(XEN) [  106.027660]    df3bbf66330abf9b aa574b623d296103 a0964f42cfa68343 7db66f86ddd52f84
(XEN) [  106.043780]    eb0c2f0f10791bd3 b56aacc5b849a136 d35e4cf1dacf2d61 57ea15c6cce94f0a
(XEN) [  106.059901]    a8c4123736e7faef efc0f0d87cee3252 9125c23a0882ebfa 5ee589cfd5ddd7b2
(XEN) [  106.076020]    f278c611bfb9739b 13bff1b47176ce1b 4b426bc8faa02c4f 0000e0100000000e
(XEN) [  106.092139]    ffff8307cfd0e000 000000378f735000 00000000003506e0 0000000000000000
(XEN) [  106.108262]    0000000000000000 0000000200000000 4100611000000002
(XEN) [  106.121432] Xen call trace:
(XEN) [  106.128020]    [<ffff82d04034d722>] R get_s_time_fixed+0x37/0x45
(XEN) [  106.141019]    [<ffff82d04034d9fc>] F get_s_time+0xe/0x10
(XEN) [  106.152808]    [<ffff82d040286af2>] F arch/x86/acpi/cpuidle_menu.c#menu_select+0x4f/0x223
(XEN) [  106.170140]    [<ffff82d040285352>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x77/0x5ce
(XEN) [  106.188166]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  106.203073]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  106.216075]
(XEN) [  106.220060] *** Dumping CPU15 host state: ***
(XEN) [  106.229767] ----[ Xen-4.21-unstable  x86_64  debug=y  Tainted:   C    ]----
(XEN) [  106.244676] CPU:    15
(XEN) [  106.250395] RIP:    e008:[<ffff82d04028507f>] arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  106.269809] RFLAGS: 0000000000000246   CONTEXT: hypervisor
(XEN) [  106.281767] rax: ffff8307cb7f7e48   rbx: ffff8307cb7ffac8   rcx: 0000000000000001
(XEN) [  106.297714] rdx: 0000000000000000   rsi: ffff8307cb7f7ef8   rdi: 0000000000000048
(XEN) [  106.313662] rbp: ffff8307cb7f7e48   rsp: ffff8307cb7f7e48   r8:  00000000ffffff01
(XEN) [  106.329607] r9:  ffff8307cb7ff840   r10: 00000000ffffffff   r11: ffff82d04034c98d
(XEN) [  106.345556] r12: ffff8307cb7ffa50   r13: 000000000000000f   r14: 0000001897e01721
(XEN) [  106.361502] r15: ffff82d0404b8760   cr0: 000000008005003b   cr4: 00000000003506e0
(XEN) [  106.377449] cr3: 00000000c6ac8000   cr2: 0000000000000000
(XEN) [  106.389237] fsb: 0000000000000000   gsb: 0000000000000000   gss: 0000000000000000
(XEN) [  106.405182] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0000   cs: e008
(XEN) [  106.420090] Xen code around <ffff82d04028507f> (arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135):
(XEN) [  106.440195]  00 00 f3 0f ae e9 fb f4 <8b> 86 fc 00 00 00 80 a6 04 01 00 00 fe 89 f9 66
(XEN) [  106.457008] Xen stack trace from rsp=ffff8307cb7f7e48:
(XEN) [  106.468277]    ffff8307cb7f7eb0 ffff82d0402856cb ffff82d04034e74e ffff82d0405db780
(XEN) [  106.484395]    ffff8307cb7f7ea0 0000000000000000 0000000000000000 0000000000000000
(XEN) [  106.500517]    000000000000000f 0000000000007fff ffff82d0405db000 ffff82d0405d4230
(XEN) [  106.516638]    ffff82d0404b8760 ffff8307cb7f7ee8 ffff82d040322606 ffff82d04032251d
(XEN) [  106.532756]    ffff8307cb7fc000 0000000000000000 0000000000000001 ffff82d0404b8760
(XEN) [  106.548876]    ffff8307cb7f7de8 ffff82d040325539 761edc6f2b44edb9 d29e4d0d34e3e360
(XEN) [  106.564997]    5c57af997be8add1 1153e7ba16868718 9f635e2719ac9ab4 b9fbc2f1fc4d79a8
(XEN) [  106.581116]    ca58047bc39921d1 4fddc304ed2ca3e3 bc187b44833b09fb f4df630f25a34acd
(XEN) [  106.597238]    1ae46271e0f26944 c579ccf7d17354c3 88eb9a67b4931ddb 1e335b3ac1df193c
(XEN) [  106.613357]    71060606f2bf05b4 6fd59bf3855a5395 2d05ad8cebccb843 1ee1801f137293be
(XEN) [  106.629477]    1a90a053b3744b84 3540d94e9d87949a 88a384e7e8912eca 9195664da353538e
(XEN) [  106.645598]    510e9166967a72cb add98316f544c468 04e5ff3e7d0b60d8 0000e0100000000f
(XEN) [  106.661718]    ffff8307cb7fc000 000000378b225000 00000000003506e0 0000000000000000
(XEN) [  106.677837]    0000000000000000 0000000200000000 dd00c01100000002
(XEN) [  106.691011] Xen call trace:
(XEN) [  106.697596]    [<ffff82d04028507f>] R arch/x86/acpi/cpu_idle.c#acpi_idle_do_entry+0x11e/0x135
(XEN) [  106.715624]    [<ffff82d0402856cb>] F arch/x86/acpi/cpu_idle.c#acpi_processor_idle+0x3f0/0x5ce
(XEN) [  106.733824]    [<ffff82d040322606>] F arch/x86/domain.c#idle_loop+0xe9/0xeb
(XEN) [  106.748731]    [<ffff82d040325539>] F continue_running+0x5b/0x5d
(XEN) [  106.761731]
(XEN) [  106.765719] [0: dump Dom0 registers]
(XEN) [  106.773866] '0' pressed -> dumping Dom0's registers
(XEN) [  106.784611] *** Dumping Dom0 vcpu#0 state: ***
(XEN) [  106.794493] RIP:    0010:[<ffffffff8203fd4f>]
(XEN) [  106.804198] RFLAGS: 0000000000000206   CONTEXT: hvm guest (d0v0)
(XEN) [  106.817200] rax: ffff888115000000   rbx: ffffffff82c0c940   rcx: 00000014f30c1040
(XEN) [  106.833146] rdx: 0000000000000000   rsi: ffffffff8298aec1   rdi: 0000000000037f94
(XEN) [  106.849092] rbp: 0000000000000000   rsp: ffffffff82c03e88   r8:  0000000000037f94
(XEN) [  106.865040] r9:  00000014f30c1040   r10: 00000014f30c1040   r11: 0000000000000000
(XEN) [  106.880987] r12: 0000000000000000   r13: 0000000000000000   r14: 0000000000000000
(XEN) [  106.896934] r15: 000000000355f6c0   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [  106.912880] cr3: 0000000032042000   cr2: 0000000000000000
(XEN) [  106.924668] fsb: 0000000000000000   gsb: ffff888115000000   gss: 0000000000000000
(XEN) [  106.940614] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [  106.955521] Guest stack trace from sp=ffffffff82c03e88:
(XEN) [  106.966959]    ffffffff82041659 ffffffff82041942 ffffffff810f5de3 0000000000000000
(XEN) [  106.983081]    328529eca998d400 00000000000000ed 0000000000000000 0000000000000000
(XEN) [  106.999199]    0000000000000032 0000000000000000 ffffffff810f6024 0000000000000002
(XEN) [  107.015320]    ffffffff8204203c 0000000000000000 ffffffff834caeab ffffffff835b4020
(XEN) [  107.031442]    000000000355f6c0 00000000000000b0 0000000000000000 0000000000000000
(XEN) [  107.047561]    0000000000000000 ffffffff834dcdb8 ffffffff834dcebc 0000000000000000
(XEN) [  107.063681]    0000000000000000 ffffffff8103d456 0000000000000000 0000000000000000
(XEN) [  107.079801]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.095921]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.112042]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.128160]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.144282]    0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.157456] *** Dumping Dom0 vcpu#1 state: ***
(XEN) [  107.167334] RIP:    0010:[<ffffffff82041a53>]
(XEN) [  107.177042] RFLAGS: 0000000000000093   CONTEXT: hvm guest (d0v1)
(XEN) [  107.190042] rax: 0000000000000000   rbx: 0000000000000000   rcx: 0000000000000cf8
(XEN) [  107.205987] rdx: 0000000000000414   rsi: ffffffff8298aec1   rdi: 0000000000000414
(XEN) [  107.221936] rbp: ffff888100b6fc98   rsp: ffffc900000e7e50   r8:  000000000005d084
(XEN) [  107.237882] r9:  000000000000000f   r10: 00000014f93efa40   r11: 0000000000000000
(XEN) [  107.253828] r12: 0000000000000002   r13: ffffffff82ddc0c0   r14: 0000000000000003
(XEN) [  107.269775] r15: 0000000000000000   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [  107.285722] cr3: 0000000002c32000   cr2: 0000000000000000
(XEN) [  107.297509] fsb: 0000000000000000   gsb: ffff888115080000   gss: 0000000000000000
(XEN) [  107.313456] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [  107.328364] Guest stack trace from sp=ffffc900000e7e50:
(XEN) [  107.339803]    ffffffff82041b09 0000000100000087 efed7df7654a2000 ffff888100a7a000
(XEN) [  107.355924]    0000000000000003 ffffffff82ddc0c0 ffffffff82ddc210 0000000000000003
(XEN) [  107.372045]    ffffffff82040e65 00000014fbba7fc6 ffff888100a7a000 ffffffff82ddc0c0
(XEN) [  107.388164]    0000000000000003 ffff888100a7a000 0000000000000003 0000000000000000
(XEN) [  107.404284]    ffffffff81c02c18 ffff888100279f80 0000000000000001 ffffffff82ddc0c0
(XEN) [  107.420402]    ffffffff810f5dca 0100000000000000 efed7df7654a2000 0000000000000093
(XEN) [  107.436525]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.452645]    ffffffff810f6024 0000000000000001 ffffffff81070d9c 0000000000000000
(XEN) [  107.468764]    ffffffff8103d456 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.484885]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.501004]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.517124]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.533245]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.549363]    0000000000000000 0000000000000000
(XEN) [  107.559593] *** Dumping Dom0 vcpu#2 state: ***
(XEN) [  107.569470] RIP:    0010:[<ffffffff82041a53>]
(XEN) [  107.579177] RFLAGS: 0000000000000093   CONTEXT: hvm guest (d0v2)
(XEN) [  107.592178] rax: 0000000000000000   rbx: 0000000000000000   rcx: 0000000000000004
(XEN) [  107.608125] rdx: 0000000000000415   rsi: ffffffff8298aec1   rdi: 0000000000000415
(XEN) [  107.624072] rbp: ffff888100b704cc   rsp: ffffc900000efe50   r8:  0000000000014cac
(XEN) [  107.640018] r9:  000000000000000f   r10: 0000004dee731040   r11: 0000000000000000
(XEN) [  107.655965] r12: 0000000000000003   r13: ffffffff82ddc0c0   r14: 0000000000000003
(XEN) [  107.671913] r15: 0000000000000000   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [  107.687860] cr3: 0000000002c32000   cr2: 0000000000000000
(XEN) [  107.699646] fsb: 0000000000000000   gsb: ffff888115100000   gss: 0000000000000000
(XEN) [  107.715592] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [  107.730499] Guest stack trace from sp=ffffc900000efe50:
(XEN) [  107.741939]    ffffffff82041b09 00000000000efeb0 1201f1562d38a200 ffff888100ca0800
(XEN) [  107.758058]    0000000000000003 ffffffff82ddc0c0 ffffffff82ddc210 0000000000000003
(XEN) [  107.774179]    ffffffff82040e65 00000015134e8aa6 ffff888100ca0800 ffffffff82ddc0c0
(XEN) [  107.790298]    0000000000000003 ffff888100ca0800 0000000000000003 0000000000000000
(XEN) [  107.806420]    ffffffff81c02c18 ffff88810027af40 0000000000000002 ffffffff82ddc0c0
(XEN) [  107.822541]    ffffffff810f5dca 0100000000000000 1201f1562d38a200 0000000000000093
(XEN) [  107.838658]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.854781]    ffffffff810f6024 0000000000000002 ffffffff81070d9c 0000000000000000
(XEN) [  107.870902]    ffffffff8103d456 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.887020]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.903141]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.919260]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.935379]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  107.951502]    0000000000000000 0000000000000000
(XEN) [  107.961728] *** Dumping Dom0 vcpu#3 state: ***
(XEN) [  107.971608] RIP:    0010:[<ffffffff82041a53>]
(XEN) [  107.981315] RFLAGS: 0000000000000093   CONTEXT: hvm guest (d0v3)
(XEN) [  107.994313] rax: 0000000000000000   rbx: 0000000000000000   rcx: 0000000000000cf8
(XEN) [  108.010262] rdx: 0000000000000414   rsi: ffffffff8298aec1   rdi: 0000000000000414
(XEN) [  108.026208] rbp: ffff888100b70898   rsp: ffffc900000f7e50   r8:  000000000001895c
(XEN) [  108.042155] r9:  000000000000000f   r10: 000000169e4b1040   r11: 0000000000000000
(XEN) [  108.058101] r12: 0000000000000002   r13: ffffffff82ddc0c0   r14: 0000000000000003
(XEN) [  108.074049] r15: 0000000000000000   cr0: 0000000080050033   cr4: 0000000000350ef0
(XEN) [  108.089995] cr3: 0000000002c32000   cr2: 0000000000000000
(XEN) [  108.101783] fsb: 0000000000000000   gsb: ffff888115180000   gss: 0000000000000000
(XEN) [  108.117730] ds: 0000   es: 0000   fs: 0000   gs: 0000   ss: 0018   cs: 0010
(XEN) [  108.132635] Guest stack trace from sp=ffffc900000f7e50:
(XEN) [  108.144076]    ffffffff82041b09 00000001000f7eb0 851ee176dd26dd00 ffff88810c56c800
(XEN) [  108.160195]    0000000000000003 ffffffff82ddc0c0 ffffffff82ddc210 0000000000000003
(XEN) [  108.176316]    ffffffff82040e65 000000151fa24be6 ffff88810c56c800 ffffffff82ddc0c0
(XEN) [  108.192435]    0000000000000003 ffff88810c56c800 0000000000000003 0000000000000000
(XEN) [  108.208556]    ffffffff81c02c18 ffff88810027bf00 0000000000000003 ffffffff82ddc0c0
(XEN) [  108.224676]    ffffffff810f5dca 0100000000000000 851ee176dd26dd00 0000000000000093
(XEN) [  108.240797]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  108.256917]    ffffffff810f6024 0000000000000003 ffffffff81070d9c 0000000000000000
(XEN) [  108.273037]    ffffffff8103d456 0000000000000000 0000000000000000 0000000000000000
(XEN) [  108.289157]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  108.305278]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  108.321396]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  108.337516]    0000000000000000 0000000000000000 0000000000000000 0000000000000000
(XEN) [  108.353637]    0000000000000000 0000000000000000
(XEN) [  108.363864] [H: dump heap info]
(XEN) [  108.371143] 'H' pressed -> dumping heap info (now = 108370105433)
(XEN) [  108.384317] heap[node=0][zone=0] -> 0 pages
(XEN) [  108.393676] heap[node=0][zone=1] -> 0 pages
(XEN) [  108.403038] heap[node=0][zone=2] -> 0 pages
(XEN) [  108.412398] heap[node=0][zone=3] -> 0 pages
(XEN) [  108.421759] heap[node=0][zone=4] -> 0 pages
(XEN) [  108.431117] heap[node=0][zone=5] -> 0 pages
(XEN) [  108.440478] heap[node=0][zone=6] -> 0 pages
(XEN) [  108.449839] heap[node=0][zone=7] -> 0 pages
(XEN) [  108.459197] heap[node=0][zone=8] -> 0 pages
(XEN) [  108.468558] heap[node=0][zone=9] -> 256 pages
(XEN) [  108.478263] heap[node=0][zone=10] -> 512 pages
(XEN) [  108.488145] heap[node=0][zone=11] -> 1024 pages
(XEN) [  108.498200] heap[node=0][zone=12] -> 2048 pages
(XEN) [  108.508251] heap[node=0][zone=13] -> 4096 pages
(XEN) [  108.518305] heap[node=0][zone=14] -> 8192 pages
(XEN) [  108.528357] heap[node=0][zone=15] -> 16384 pages
(XEN) [  108.538586] heap[node=0][zone=16] -> 31729 pages
(XEN) [  108.548811] heap[node=0][zone=17] -> 65536 pages
(XEN) [  108.559040] heap[node=0][zone=18] -> 131072 pages
(XEN) [  108.569439] heap[node=0][zone=19] -> 262144 pages
(XEN) [  108.579840] heap[node=0][zone=20] -> 309091 pages
(XEN) [  108.590239] heap[node=0][zone=21] -> 1048576 pages
(XEN) [  108.600811] heap[node=0][zone=22] -> 2097152 pages
(XEN) [  108.611387] heap[node=0][zone=23] -> 3057648 pages
(XEN) [  108.621958] heap[node=0][zone=24] -> 61917 pages
(XEN) [  108.632185] heap[node=0][zone=25] -> 0 pages
(XEN) [  108.641718] heap[node=0][zone=26] -> 0 pages
(XEN) [  108.651251] heap[node=0][zone=27] -> 0 pages
(XEN) [  108.660788] heap[node=0][zone=28] -> 0 pages
(XEN) [  108.670320] heap[node=0][zone=29] -> 0 pages
(XEN) [  108.679852] heap[node=0][zone=30] -> 0 pages
(XEN) [  108.689385] heap[node=0][zone=31] -> 0 pages
(XEN) [  108.698918] heap[node=0][zone=32] -> 0 pages
(XEN) [  108.708452] heap[node=0][zone=33] -> 0 pages
(XEN) [  108.717986] heap[node=0][zone=34] -> 0 pages
(XEN) [  108.727520] heap[node=0][zone=35] -> 0 pages
(XEN) [  108.737052] heap[node=0][zone=36] -> 0 pages
(XEN) [  108.746586] heap[node=0][zone=37] -> 0 pages
(XEN) [  108.756121] heap[node=0][zone=38] -> 0 pages
(XEN) [  108.765654] heap[node=0][zone=39] -> 0 pages
(XEN) [  108.775187] heap[node=0][zone=40] -> 0 pages
(XEN) [  108.784721] [I: dump HVM irq info]
(XEN) [  108.792520] 'I' pressed -> dumping HVM irq info
(XEN) [  108.802575] Domain 0:
(XEN) [  108.808121] PCI 0x00000000000000000000000000000000 ISA 0x00000000 ROUTE 0 0 0 0
(XEN) [  108.823721] GSI [0 - 7] 00 00 00 00 00 00 00 00
(XEN) [  108.833774] GSI [8 - f] 00 00 00 00 00 00 00 00
(XEN) [  108.843828] GSI [10 - 17] 00 00 00 00 00 00 00 00
(XEN) [  108.854228] GSI [18 - 1f] 00 00 00 00 00 00 00 00
(XEN) [  108.864628] GSI [20 - 27] 00 00 00 00 00 00 00 00
(XEN) [  108.875028] GSI [28 - 2f] 00 00 00 00 00 00 00 00
(XEN) [  108.885429] GSI [30 - 37] 00 00 00 00 00 00 00 00
(XEN) [  108.895829] Link 00 00 00 00
(XEN) [  108.902587] Callback via 0:0, not asserted
(XEN) [  108.911775] [M: dump MSI state]
(XEN) [  108.919055] MSI information:
(XEN) [  108.925816]  MSI     56 vec=30  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  108.943321]  MSI     57 vec=a8  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  108.960828]  MSI     58 vec=b0  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  108.978334]  MSI     59 vec=b8  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  108.995843]  MSI     60 vec=c0  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  109.013350]  MSI     61 vec=c8  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  109.030857]  MSI     62 vec=d0  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  109.048360]  MSI     63 vec=d8  fixed  edge   assert phys    cpu dest=00000000 mask=0/  /?
(XEN) [  109.065868]  MSI     64 vec=29  fixed  edge   assert phys    cpu dest=00000002 mask=0/ G/?
(XEN) [  109.083377]  MSI     65 vec=31  fixed  edge   assert phys    cpu dest=00000003 mask=0/ G/?
(XEN) [  109.100882] vPCI MSI/MSI-X d0
(XEN) [  109.107816] 0000:05:00.1 MSI
(XEN) [  109.114576]   enabled: 1 64-bit: 1 vectors max: 2 enabled: 1
(XEN) [  109.126882] vec=0x21  fixed  edge deassert phys  fixed dest_id=6 pirq: 3321
(XEN) [  109.141789] 0000:05:00.0 MSI
(XEN) [  109.148550]   enabled: 1 64-bit: 1 vectors max: 2 enabled: 1
(XEN) [  109.160857] vec=0x21  fixed  edge deassert phys  fixed dest_id=4 pirq: 3322
(XEN) [  109.175765] 0000:04:00.6 MSI
(XEN) [  109.182523]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  109.194829] vec=00  fixed  edge deassert phys  fixed dest_id=0 pirq: 3319
(XEN) [  109.209391] 0000:04:00.4 MSI-X
(XEN) [  109.216497]   entries: 8 maskall: 0 enabled: 1
(XEN) [  109.226376]      0 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.243016]      1 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.259657]      2 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.276296]      3 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.292936]      4 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.309577]      5 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.326218]      6 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.342856]      7 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.359499] 0000:04:00.3 MSI-X
(XEN) [  109.366603]   entries: 8 maskall: 0 enabled: 1
(XEN) [  109.376485]      0 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.393124]      1 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.409765]      2 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.426404]      3 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.443044]      4 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.459684]      5 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.476325]      6 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.492964]      7 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.509607] 0000:04:00.1 MSI
(XEN) [  109.516364]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  109.528671] vec=00  fixed  edge deassert phys  fixed dest_id=0 pirq: 3320
(XEN) [  109.543234] 0000:03:00.0 MSI-X
(XEN) [  109.550340]   entries: 32 maskall: 0 enabled: 1
(XEN) [  109.560393]      0 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.577033]      1 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.593673]      2 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.610313]      3 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.626953]      4 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.643594]      5 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.660233]      6 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.676874]      7 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.693512]      8 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.710153]      9 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.726794]     10 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.743435]     11 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.760073]     12 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.776713]     13 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.793353]     14 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.809995]     15 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.826634]     16 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.843273]     17 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.859915]     18 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.876555]     19 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.893195]     20 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.909836]     21 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.926477]     22 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.943116]     23 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.959756]     24 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.976397]     25 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  109.993035]     26 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  110.009675]     27 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  110.026316]     28 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  110.042957]     29 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  110.059595]     30 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  110.076238]     31 vec=00  fixed  edge deassert phys  fixed dest_id=0 mask=1 pirq: -1
(XEN) [  110.092878] 0000:00:08.2 MSI
(XEN) [  110.099635]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  110.111943] vec=0x21  fixed  edge deassert phys  fixed dest_id=2 pirq: 3323
(XEN) [  110.126850] 0000:00:08.1 MSI
(XEN) [  110.133612]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  110.145918] vec=0x21  fixed  edge deassert phys  fixed dest_id=0 pirq: 3324
(XEN) [  110.160823] 0000:00:02.4 MSI
(XEN) [  110.167584]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  110.179889] vec=0x20  fixed  edge deassert phys  fixed dest_id=6 pirq: 3325
(XEN) [  110.194798] 0000:00:02.3 MSI
(XEN) [  110.201558]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  110.213863] vec=0x20  fixed  edge deassert phys  fixed dest_id=4 pirq: 3326
(XEN) [  110.228771] 0000:00:02.1 MSI
(XEN) [  110.235531]   enabled: 1 64-bit: 1 vectors max: 1 enabled: 1
(XEN) [  110.247839] vec=0x20  fixed  edge deassert phys  fixed dest_id=2 pirq: 3327
(XEN) [  110.262744] [Q: dump PCI devices]
(XEN) [  110.270372] ==== PCI devices ====
(XEN) [  110.277997] ==== segment 0000 ====
(XEN) [  110.285797] 0000:05:00.1 - d0 - node -1  - MSIs < 63 >
(XEN) [  110.297064] 0000:05:00.0 - d0 - node -1  - MSIs < 62 >
(XEN) [  110.308331] 0000:04:00.6 - d0 - node -1  - MSIs < 65 >
(XEN) [  110.319597] 0000:04:00.5 - d0 - node -1
(XEN) [  110.328439] 0000:04:00.4 - d0 - node -1
(XEN) [  110.337279] 0000:04:00.3 - d0 - node -1
(XEN) [  110.346117] 0000:04:00.2 - d0 - node -1
(XEN) [  110.354958] 0000:04:00.1 - d0 - node -1  - MSIs < 64 >
(XEN) [  110.366224] 0000:04:00.0 - d0 - node -1
(XEN) [  110.375065] 0000:03:00.0 - d0 - node -1
(XEN) [  110.383906] 0000:02:00.0 - d0 - node -1
(XEN) [  110.392744] 0000:01:00.1 - d0 - node -1
(XEN) [  110.401587] 0000:01:00.0 - d0 - node -1
(XEN) [  110.410427] 0000:00:18.7 - d0 - node -1
(XEN) [  110.419266] 0000:00:18.6 - d0 - node -1
(XEN) [  110.428107] 0000:00:18.5 - d0 - node -1
(XEN) [  110.436946] 0000:00:18.4 - d0 - node -1
(XEN) [  110.445786] 0000:00:18.3 - d0 - node -1
(XEN) [  110.454626] 0000:00:18.2 - d0 - node -1
(XEN) [  110.463467] 0000:00:18.1 - d0 - node -1
(XEN) [  110.472306] 0000:00:18.0 - d0 - node -1
(XEN) [  110.481146] 0000:00:14.3 - d0 - node -1
(XEN) [  110.489984] 0000:00:14.0 - d0 - node -1
(XEN) [  110.498827] 0000:00:08.2 - d0 - node -1  - MSIs < 61 >
(XEN) [  110.510093] 0000:00:08.1 - d0 - node -1  - MSIs < 60 >
(XEN) [  110.521359] 0000:00:08.0 - d0 - node -1
(XEN) [  110.530198] 0000:00:02.4 - d0 - node -1  - MSIs < 59 >
(XEN) [  110.541467] 0000:00:02.3 - d0 - node -1  - MSIs < 58 >
(XEN) [  110.552735] 0000:00:02.1 - d0 - node -1  - MSIs < 57 >
(XEN) [  110.564000] 0000:00:02.0 - d0 - node -1
(XEN) [  110.572841] 0000:00:01.0 - d0 - node -1
(XEN) [  110.581680] 0000:00:00.0 - d0 - node -1
(XEN) [  110.590520] 0000:00:00.2 - d[XEN] - node -1
(XEN) [  110.600053] [S: reset shadow pagetables]
(XEN) [  110.608895] 'S' pressed -> blowing all shadow tables
(XEN) [  110.619814] [a: dump timer queues]
(XEN) [  110.627613] Dumping timer queues:
(XEN) [  110.635239] CPU00:
(XEN) [  110.640268]   ex=      149099us timer=ffff82d0405fcca0 cb=arch/x86/time.c#time_calibration(0000000000000000)
(XEN) [  110.660895]   ex=    17288486us timer=ffff82d0405e4e40 cb=arch/x86/cpu/mcheck/amd_nonfatal.c#mce_amd_work_fn(0000000000000000)
(XEN) [  110.684642]   ex=      456798us timer=ffff8307cb349070 cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff8307cb349000)
(XEN) [  110.707347]   ex=86399807202792us timer=ffff82d0405e5560 cb=arch/x86/cpu/amd.c#fam17_disable_c6(0000000000000000)
(XEN) [  110.728840]   ex=    46721287us timer=ffff82d0405fcc00 cb=arch/x86/time.c#plt_overflow(0000000000000000)
(XEN) [  110.748773] CPU01:
(XEN) [  110.753801]   ex=      133423us timer=ffff8307cfd91420 cb=drivers/cpufreq/cpufreq_ondemand.c#do_dbs_timer(ffff8307cfd91460)
(XEN) [  110.777030]   ex=      456799us timer=ffff83080f1ff070 cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83080f1ff000)
(XEN) [  110.799735] CPU02:
(XEN) [  110.804763]   ex=      193423us timer=ffff8307cfd81420 cb=drivers/cpufreq/cpufreq_ondemand.c#do_dbs_timer(ffff8307cfd81460)
(XEN) [  110.827987]   ex=     3704799us timer=ffff83080f1f5070 cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83080f1f5000)
(XEN) [  110.850694] CPU03:
(XEN) [  110.855722]   ex=      456798us timer=ffff83080f1eb070 cb=common/sched/core.c#vcpu_singleshot_timer_fn(ffff83080f1eb000)
(XEN) [  110.878428] CPU04:
(XEN) [  110.883456] CPU05:
(XEN) [  110.888484] CPU06:
(XEN) [  110.893508] CPU07:
(XEN) [  110.898534] CPU08:
(XEN) [  110.903564] CPU09:
(XEN) [  110.908589] CPU10:
(XEN) [  110.913617] CPU11:
(XEN) [  110.918643] CPU12:
(XEN) [  110.923669] CPU13:
(XEN) [  110.928697] CPU14:
(XEN) [  110.933721] CPU15:
(XEN) [  110.938749] [c: dump ACPI Cx structures]
(XEN) [  110.947590] 'c' pressed -> printing ACPI Cx structures
(XEN) [  110.958856] max state: unlimited
(XEN) [  110.966309] ==cpu0==
(XEN) [  110.971685]    *C1:	type[C1] latency[  1] usage[    4313] method[  FFH] duration[10938494087]
(XEN) [  110.989711]     C2:	type[C2] latency[400] usage[     487] method[ HALT] duration[74192282198]
(XEN) [  111.007737]     C0:	usage[    4800] duration[25839870738]
(XEN) [  111.019525] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.028189] CC3[0] CC6[0] CC7[0]
(XEN) [  111.035642] ==cpu1==
(XEN) [  111.041017]     C1:	type[C1] latency[  1] usage[    3876] method[  FFH] duration[2812652213]
(XEN) [  111.058869]     C2:	type[C2] latency[400] usage[     329] method[ HALT] duration[9625565745]
(XEN) [  111.076725]    *C0:	usage[    4206] duration[98601762808]
(XEN) [  111.088510] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.097178] CC3[0] CC6[0] CC7[0]
(XEN) [  111.104630] ==cpu2==
(XEN) [  111.110005]     C1:	type[C1] latency[  1] usage[    6533] method[  FFH] duration[2682138670]
(XEN) [  111.127858]     C2:	type[C2] latency[400] usage[     290] method[ HALT] duration[10516557502]
(XEN) [  111.145883]    *C0:	usage[    6824] duration[97910271926]
(XEN) [  111.157671] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.166337] CC3[0] CC6[0] CC7[0]
(XEN) [  111.173791] ==cpu3==
(XEN) [  111.179164]     C1:	type[C1] latency[  1] usage[    4843] method[  FFH] duration[2939439887]
(XEN) [  111.197019]     C2:	type[C2] latency[400] usage[     304] method[ HALT] duration[10282595646]
(XEN) [  111.215046]    *C0:	usage[    5148] duration[97956091950]
(XEN) [  111.226832] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.235499] CC3[0] CC6[0] CC7[0]
(XEN) [  111.242953] ==cpu4==
(XEN) [  111.248324]     C1:	type[C1] latency[  1] usage[      38] method[  FFH] duration[812241379]
(XEN) [  111.266004]    *C2:	type[C2] latency[400] usage[     160] method[ HALT] duration[102253349431]
(XEN) [  111.284204]     C0:	usage[     198] duration[8181696068]
(XEN) [  111.295820] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.304486] CC3[0] CC6[0] CC7[0]
(XEN) [  111.311939] ==cpu5==
(XEN) [  111.317312]     C1:	type[C1] latency[  1] usage[      34] method[  FFH] duration[780587416]
(XEN) [  111.334991]    *C2:	type[C2] latency[400] usage[     158] method[ HALT] duration[102900454766]
(XEN) [  111.353193]     C0:	usage[     192] duration[7635232328]
(XEN) [  111.364805] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.373473] CC3[0] CC6[0] CC7[0]
(XEN) [  111.380925] ==cpu6==
(XEN) [  111.386300]     C1:	type[C1] latency[  1] usage[      36] method[  FFH] duration[761939445]
(XEN) [  111.403980]    *C2:	type[C2] latency[400] usage[     154] method[ HALT] duration[102175700361]
(XEN) [  111.422179]     C0:	usage[     190] duration[8447622165]
(XEN) [  111.433794] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.442461] CC3[0] CC6[0] CC7[0]
(XEN) [  111.449914] ==cpu7==
(XEN) [  111.455286]     C1:	type[C1] latency[  1] usage[      29] method[  FFH] duration[751974250]
(XEN) [  111.472968]    *C2:	type[C2] latency[400] usage[     154] method[ HALT] duration[103027337398]
(XEN) [  111.491166]     C0:	usage[     183] duration[7674937685]
(XEN) [  111.502781] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.511448] CC3[0] CC6[0] CC7[0]
(XEN) [  111.518902] ==cpu8==
(XEN) [  111.524275]     C1:	type[C1] latency[  1] usage[   76692] method[  FFH] duration[17682070204]
(XEN) [  111.542302]     C2:	type[C2] latency[400] usage[     202] method[ HALT] duration[80257053570]
(XEN) [  111.560328]    *C0:	usage[   76895] duration[13584111226]
(XEN) [  111.572114] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.580781] CC3[0] CC6[0] CC7[0]
(XEN) [  111.588234] ==cpu9==
(XEN) [  111.593606]     C1:	type[C1] latency[  1] usage[      25] method[  FFH] duration[724003971]
(XEN) [  111.611289]    *C2:	type[C2] latency[400] usage[     149] method[ HALT] duration[103152954107]
(XEN) [  111.629488]     C0:	usage[     174] duration[7715611227]
(XEN) [  111.641101] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.649767] CC3[0] CC6[0] CC7[0]
(XEN) [  111.657220] ==cpu10==
(XEN) [  111.662768]     C1:	type[C1] latency[  1] usage[      27] method[  FFH] duration[710574922]
(XEN) [  111.680448]    *C2:	type[C2] latency[400] usage[     143] method[ HALT] duration[102720534372]
(XEN) [  111.698649]     C0:	usage[     170] duration[8230622522]
(XEN) [  111.710261] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.718930] CC3[0] CC6[0] CC7[0]
(XEN) [  111.726383] ==cpu11==
(XEN) [  111.731928]     C1:	type[C1] latency[  1] usage[      25] method[  FFH] duration[710573717]
(XEN) [  111.749608]    *C2:	type[C2] latency[400] usage[     143] method[ HALT] duration[103262904238]
(XEN) [  111.767809]     C0:	usage[     168] duration[7757413356]
(XEN) [  111.779421] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.788090] CC3[0] CC6[0] CC7[0]
(XEN) [  111.795543] ==cpu12==
(XEN) [  111.801089]     C1:	type[C1] latency[  1] usage[    3496] method[  FFH] duration[1229553014]
(XEN) [  111.818944]     C2:	type[C2] latency[400] usage[     129] method[ HALT] duration[101252968739]
(XEN) [  111.837143]    *C0:	usage[    3626] duration[9317532450]
(XEN) [  111.848757] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.857423] CC3[0] CC6[0] CC7[0]
(XEN) [  111.864876] ==cpu13==
(XEN) [  111.870421]     C1:	type[C1] latency[  1] usage[   12646] method[  FFH] duration[2686575580]
(XEN) [  111.888278]    *C2:	type[C2] latency[400] usage[     134] method[ HALT] duration[101201836924]
(XEN) [  111.906476]     C0:	usage[   12780] duration[7980974280]
(XEN) [  111.918088] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.926757] CC3[0] CC6[0] CC7[0]
(XEN) [  111.934211] ==cpu14==
(XEN) [  111.939756]     C1:	type[C1] latency[  1] usage[      24] method[  FFH] duration[662957948]
(XEN) [  111.957436]    *C2:	type[C2] latency[400] usage[     140] method[ HALT] duration[102866437993]
(XEN) [  111.975638]     C0:	usage[     164] duration[8409323244]
(XEN) [  111.987249] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  111.995917] CC3[0] CC6[0] CC7[0]
(XEN) [  112.003371] ==cpu15==
(XEN) [  112.008917]     C1:	type[C1] latency[  1] usage[      18] method[  FFH] duration[112617613]
(XEN) [  112.026599]    *C2:	type[C2] latency[400] usage[     140] method[ HALT] duration[104057321456]
(XEN) [  112.044797]     C0:	usage[     158] duration[7837941124]
(XEN) [  112.056412] PC2[0] PC3[0] PC6[0] PC7[0]
(XEN) [  112.065079] CC3[0] CC6[0] CC7[0]
(XEN) [  112.072531] [e: dump evtchn info]
(XEN) [  112.080158] 'e' pressed -> dumping event-channel info
(XEN) [  112.091251] Event channel information for domain 0:
(XEN) [  112.101999] Polling vCPUs: {}
(XEN) [  112.108931]     port [p/m/s]
(XEN) [  112.115692]        1 [0/0/  -   ]: s=5 n=0 x=0 v=0
(XEN) [  112.126265]        2 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [  112.136145]        3 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [  112.146026]        4 [0/0/  -   ]: s=6 n=0 x=0
(XEN) [  112.155905]        5 [0/0/  -   ]: s=5 n=1 x=0 v=0
(XEN) [  112.166478]        6 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [  112.176358]        7 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [  112.186237]        8 [0/0/  -   ]: s=6 n=1 x=0
(XEN) [  112.196118]        9 [0/0/  -   ]: s=5 n=2 x=0 v=0
(XEN) [  112.206690]       10 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [  112.216571]       11 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [  112.226451]       12 [0/0/  -   ]: s=6 n=2 x=0
(XEN) [  112.236333]       13 [0/0/  -   ]: s=5 n=3 x=0 v=0
(XEN) [  112.246907]       14 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [  112.256786]       15 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [  112.266665]       16 [0/0/  -   ]: s=6 n=3 x=0
(XEN) [  112.276546]       17 [0/0/  -   ]: s=2 n=1 x=0 d=0
(XEN) [  112.287118]       18 [0/0/  -   ]: s=5 n=2 x=0 v=9
(XEN) [  112.297694]       19 [0/0/  -   ]: s=5 n=3 x=0 v=2
(XEN) [  112.308266] [g: print grant table usage]
(XEN) [  112.317107] gnttab_usage_print_all [ key 'g' pressed
(XEN) [  112.328026]       -------- active --------       -------- shared --------
(XEN) [  112.342585] [ref] localdom mfn      pin          localdom gmfn     flags
(XEN) [  112.356974] grant-table for remote d0 (v1)
(XEN) [  112.366161]   1 frames (64 max), 0 maptrack frames (1024 max)
(XEN) [  112.378641] no active grant table entries
(XEN) [  112.387654] gnttab_usage_print_all ] done
(XEN) [  112.396668] [i: dump interrupt bindings]
(XEN) [  112.405505] IRQ information:
(XEN) [  112.412266]    IRQ:   0 vec:f0 IO-APIC-edge    status=000 aff:{0}/{0} arch/x86/time.c#timer_interrupt()
(XEN) [  112.432028]    IRQ:   1 vec:38 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.448666]    IRQ:   3 vec:40 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.465308]    IRQ:   4 vec:f1 IO-APIC-edge    status=000 aff:{0-15}/{0-15} drivers/char/ns16550.c#ns16550_interrupt()
(XEN) [  112.487666]    IRQ:   5 vec:48 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.504307]    IRQ:   6 vec:50 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.520947]    IRQ:   7 vec:58 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.537588]    IRQ:   8 vec:60 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.554228]    IRQ:   9 vec:68 IO-APIC-level   status=010 aff:{0}/{0} in-flight=0 d0:  9(-M-)
(XEN) [  112.572255]    IRQ:  10 vec:70 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.588896]    IRQ:  11 vec:78 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.605535]    IRQ:  12 vec:88 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.622176]    IRQ:  13 vec:90 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.638814]    IRQ:  14 vec:98 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.655457]    IRQ:  15 vec:a0 IO-APIC-edge    status=002 aff:{0}/{0} mapped, unbound
(XEN) [  112.672096]    IRQ:  56 vec:30 AMD-IOMMU-MSI   status=000 aff:{0-15}/{0} drivers/passthrough/amd/iommu_init.c#iommu_interrupt_handler()
(XEN) [  112.697401]    IRQ:  57 vec:a8 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3327(-M-)
(XEN) [  112.715603]    IRQ:  58 vec:b0 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3326(-M-)
(XEN) [  112.733802]    IRQ:  59 vec:b8 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3325(-M-)
(XEN) [  112.752002]    IRQ:  60 vec:c0 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3324(-M-)
(XEN) [  112.770201]    IRQ:  61 vec:c8 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3323(-M-)
(XEN) [  112.788401]    IRQ:  62 vec:d0 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3322(-M-)
(XEN) [  112.806603]    IRQ:  63 vec:d8 PCI-MSI         status=030 aff:{0}/{0} in-flight=0 d0:3321(-M-)
(XEN) [  112.824804]    IRQ:  64 vec:29 PCI-MSI         status=002 aff:{2}/{2} mapped, unbound
(XEN) [  112.841445]    IRQ:  65 vec:31 PCI-MSI         status=002 aff:{3}/{3} mapped, unbound
(XEN) [  112.858083] Direct vector information:
(XEN) [  112.866577]    0x22 -> irq_move_cleanup_interrupt()
(XEN) [  112.877324]    0xf9 -> arch/x86/apic.c#pmu_interrupt()
(XEN) [  112.888592]    0xfa -> arch/x86/apic.c#apic_timer_interrupt()
(XEN) [  112.901072]    0xfb -> call_function_interrupt()
(XEN) [  112.911298]    0xfc -> event_check_interrupt()
(XEN) [  112.921176]    0xfd -> invalidate_interrupt()
(XEN) [  112.930884]    0xfe -> arch/x86/apic.c#error_interrupt()
(XEN) [  112.942496]    0xff -> arch/x86/apic.c#spurious_interrupt()
(XEN) [  112.954632] IO-APIC interrupt information:
(XEN) [  112.963818]     IRQ  0 Vec240:
(XEN) [  112.970926]       Apic 0x00, Pin  2: vec=f0 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  112.992939]     IRQ  1 Vec 56:
(XEN) [  113.000045]       Apic 0x00, Pin  1: vec=38 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.022060]     IRQ  3 Vec 64:
(XEN) [  113.029166]       Apic 0x00, Pin  3: vec=40 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.051178]     IRQ  4 Vec241:
(XEN) [  113.058284]       Apic 0x00, Pin  4: vec=f1 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:08
(XEN) [  113.080298]     IRQ  5 Vec 72:
(XEN) [  113.087405]       Apic 0x00, Pin  5: vec=48 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.109418]     IRQ  6 Vec 80:
(XEN) [  113.116524]       Apic 0x00, Pin  6: vec=50 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.138538]     IRQ  7 Vec 88:
(XEN) [  113.145644]       Apic 0x00, Pin  7: vec=58 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.167658]     IRQ  8 Vec 96:
(XEN) [  113.174765]       Apic 0x00, Pin  8: vec=60 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.196779]     IRQ  9 Vec104:
(XEN) [  113.203888]       Apic 0x00, Pin  9: vec=68 delivery=Fixed dest=P status=0 polarity=1 irr=0 trig=L mask=0 dest_id:00
(XEN) [  113.225901]     IRQ 10 Vec112:
(XEN) [  113.233007]       Apic 0x00, Pin 10: vec=70 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.255021]     IRQ 11 Vec120:
(XEN) [  113.262128]       Apic 0x00, Pin 11: vec=78 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.284141]     IRQ 12 Vec136:
(XEN) [  113.291246]       Apic 0x00, Pin 12: vec=88 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.313260]     IRQ 13 Vec144:
(XEN) [  113.320368]       Apic 0x00, Pin 13: vec=90 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.342381]     IRQ 14 Vec152:
(XEN) [  113.349488]       Apic 0x00, Pin 14: vec=98 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.371501]     IRQ 15 Vec160:
(XEN) [  113.378607]       Apic 0x00, Pin 15: vec=a0 delivery=Fixed dest=P status=0 polarity=0 irr=0 trig=E mask=0 dest_id:00
(XEN) [  113.400620] [m: memory info]
(XEN) [  113.407382] Physical memory information:
(XEN) [  113.416220]     Xen heap: 0kB free
(XEN) [  113.424020]     heap[09]: 1024kB free
(XEN) [  113.432341]     heap[10]: 2048kB free
(XEN) [  113.440663]     heap[11]: 4096kB free
(XEN) [  113.448980]     heap[12]: 8192kB free
(XEN) [  113.457300]     heap[13]: 16384kB free
(XEN) [  113.465795]     heap[14]: 32768kB free
(XEN) [  113.474289]     heap[15]: 65536kB free
(XEN) [  113.482781]     heap[16]: 126916kB free
(XEN) [  113.491448]     heap[17]: 262144kB free
(XEN) [  113.500115]     heap[18]: 524288kB free
(XEN) [  113.508781]     heap[19]: 1048576kB free
(XEN) [  113.517621]     heap[20]: 1236364kB free
(XEN) [  113.526463]     heap[21]: 4194304kB free
(XEN) [  113.535302]     heap[22]: 8388608kB free
(XEN) [  113.544143]     heap[23]: 12230592kB free
(XEN) [  113.553156]     heap[24]: 247668kB free
(XEN) [  113.561824]     Dom heap: 28389508kB free
(XEN) [  113.570835] [n: NMI statistics]
(XEN) [  113.578117] CPU	NMI
(XEN) [  113.583315]   0	  2
(XEN) [  113.588516]   1	  0
(XEN) [  113.593715]   2	  0
(XEN) [  113.598915]   3	  0
(XEN) [  113.604117]   4	  0
(XEN) [  113.609315]   5	  0
(XEN) [  113.614515]   6	  0
(XEN) [  113.619717]   7	  0
(XEN) [  113.624915]   8	  0
(XEN) [  113.630115]   9	  0
(XEN) [  113.635317]  10	  0
(XEN) [  113.640515]  11	  0
(XEN) [  113.645716]  12	  0
(XEN) [  113.650917]  13	  0
(XEN) [  113.656118]  14	  0
(XEN) [  113.661315]  15	  0
(XEN) [  113.666517] d0v0: NMI neither pending nor masked
(XEN) [  113.676745] [q: dump domain (and guest debug) info]
(XEN) [  113.687490] 'q' pressed -> dumping domain info (now = 113686452405)
(XEN) [  113.701009] General information for domain 0:
(XEN) [  113.710717]     refcnt=3 dying=0 pause_count=0
(XEN) [  113.720597]     nr_pages=1048511 xenheap_pages=2 dirty_cpus={0-3} max_pages=4294967295
(XEN) [  113.737410]     handle=00000000-0000-0000-0000-000000000000 vm_assist=00000020
(XEN) [  113.752837]     paging assistance: hap refcounts translate external
(XEN) [  113.766530] Rangesets belonging to domain 0:
(XEN) [  113.776062]     Interrupts { 1-55, 57-65 }
(XEN) [  113.785251]     I/O Memory { 0-effff, f8000-fd2ff, fd304-febff, fec02-fedff, fee01-ffcfffff, 100000000-fffffffff }
(XEN) [  113.806918]     I/O Ports  { 22-3f, 44-60, 62-80, 90-91, 93-9f, a2-bf, e0-e8, ea-ef, f1-3f7, 400-4cf, 4d2-807, 80c-cf8, cfa-cfb, d00-ffff }
(XEN) [  113.832917]     log-dirty  { }
(XEN) [  113.840025] Memory pages belonging to domain 0:
(XEN) [  113.850077]     DomPage list too long to display
(XEN) [  113.860303]     PoD entries=0 cachesize=0
(XEN) [  113.869318]     XenPage 00000000000cd1ff: caf=c000000000000001, taf=e400000000000001
(XEN) [  113.885784]     XenPage 00000000007cb34a: caf=c000000000000001, taf=e400000000000001
(XEN) [  113.902251] NODE affinity for domain 0: [0]
(XEN) [  113.911610] VCPU information and callbacks for domain 0:
(XEN) [  113.923226]   UNIT0 affinities: hard={0-15} soft={0-15}
(XEN) [  113.934665]     VCPU0: CPU0 [has=F] poll=0 upcall_pend=00 upcall_mask=00 dirty_cpu=0
(XEN) [  113.951132]     pause_count=0 pause_flags=1
(XEN) [  113.960492]     paging assistance: hap, 4 levels
(XEN) [  113.970718] No periodic timer
(XEN) [  113.977653]   UNIT1 affinities: hard={0-15} soft={0-15}
(XEN) [  113.989091]     VCPU1: CPU1 [has=T] poll=0 upcall_pend=00 upcall_mask=00 dirty_cpu=1
(XEN) [  114.005558]     pause_count=0 pause_flags=0
(XEN) [  114.014918]     paging assistance: hap, 4 levels
(XEN) [  114.025147] No periodic timer
(XEN) [  114.032079]   UNIT2 affinities: hard={0-15} soft={0-15}
(XEN) [  114.043520]     VCPU2: CPU2 [has=T] poll=0 upcall_pend=00 upcall_mask=00 dirty_cpu=2
(XEN) [  114.059986]     pause_count=0 pause_flags=0
(XEN) [  114.069345]     paging assistance: hap, 4 levels
(XEN) [  114.079572] No periodic timer
(XEN) [  114.086505]   UNIT3 affinities: hard={0-15} soft={0-15}
(XEN) [  114.097948]     VCPU3: CPU3 [has=T] poll=0 upcall_pend=00 upcall_mask=00 dirty_cpu=3
(XEN) [  114.114413]     pause_count=0 pause_flags=0
(XEN) [  114.123772]     paging assistance: hap, 4 levels
(XEN) [  114.134000] No periodic timer
(XEN) [  114.140935] Notifying guest 0:0 (virq 1, port 0)
(XEN) [  114.151160] Notifying guest 0:1 (virq 1, port 0)
(XEN) [  114.161387] Notifying guest 0:2 (virq 1, port 0)
(XEN) [  114.171615] Notifying guest 0:3 (virq 1, port 0)
(XEN) [  114.181840] [r: dump run queues]
(XEN) [  114.189295] sched_smt_power_savings: disabled
(XEN) [  114.199001] NOW=114188256967
(XEN) [  114.205761] Online Cpus: 0-15
(XEN) [  114.212694] Cpupool 0:
(XEN) [  114.218415] Cpus: 0-15
(XEN) [  114.224132] Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) [  114.237308] Scheduler: null Scheduler (null)
(XEN) [  114.246840] 	cpus_free = 4-15
(XEN) [  114.253773] Domain info:
(XEN) [  114.259841] 	Domain: 0
(XEN) [  114.265560] 	  1: [0.0] pcpu=0
(XEN) [  114.272669] 	  2: [0.1] pcpu=1
(XEN) [  114.279774] 	  3: [0.2] pcpu=2
(XEN) [  114.286880] 	  4: [0.3] pcpu=3
(XEN) [  114.293988] Waitqueue:
(XEN) [  114.299881] CPUs info:
(XEN) [  114.305600] CPU[00] current=d[IDLE]v0, curr=d[IDLE]v0, prev=NULL
(XEN) [  114.318603] CPU[00] sibling={0-1}, core={0-15}, unit=d0v0
(XEN) [  114.330387] CPU[01] current=d0v1, curr=d0v1, prev=NULL
(XEN) [  114.341655] CPU[01] sibling={0-1}, core={0-15}, unit=d0v1
(XEN) [  114.353443] 	run: [0.1] pcpu=1
(XEN) [  114.360549] CPU[02] current=d0v2, curr=d0v2, prev=NULL
(XEN) [  114.371815] CPU[02] sibling={2-3}, core={0-15}, unit=d0v2
(XEN) [  114.383601] 	run: [0.2] pcpu=2
(XEN) [  114.390710] CPU[03] current=d0v3, curr=d0v3, prev=NULL
(XEN) [  114.401976] CPU[03] sibling={2-3}, core={0-15}, unit=d0v3
(XEN) [  114.413761] 	run: [0.3] pcpu=3
(XEN) [  114.420867] CPU[04] current=d[IDLE]v4, curr=d[IDLE]v4, prev=NULL
(XEN) [  114.433869] CPU[04] sibling={4-5}, core={0-15}
(XEN) [  114.443748] CPU[05] current=d[IDLE]v5, curr=d[IDLE]v5, prev=NULL
(XEN) [  114.456749] CPU[05] sibling={4-5}, core={0-15}
(XEN) [  114.466629] CPU[06] current=d[IDLE]v6, curr=d[IDLE]v6, prev=NULL
(XEN) [  114.479628] CPU[06] sibling={6-7}, core={0-15}
(XEN) [  114.489508] CPU[07] current=d[IDLE]v7, curr=d[IDLE]v7, prev=NULL
(XEN) [  114.502509] CPU[07] sibling={6-7}, core={0-15}
(XEN) [  114.512390] CPU[08] current=d[IDLE]v8, curr=d[IDLE]v8, prev=NULL
(XEN) [  114.525389] CPU[08] sibling={8-9}, core={0-15}
(XEN) [  114.535271] CPU[09] current=d[IDLE]v9, curr=d[IDLE]v9, prev=NULL
(XEN) [  114.548271] CPU[09] sibling={8-9}, core={0-15}
(XEN) [  114.558149] CPU[10] current=d[IDLE]v10, curr=d[IDLE]v10, prev=NULL
(XEN) [  114.571495] CPU[10] sibling={10-11}, core={0-15}
(XEN) [  114.581723] CPU[11] current=d[IDLE]v11, curr=d[IDLE]v11, prev=NULL
(XEN) [  114.595070] CPU[11] sibling={10-11}, core={0-15}
(XEN) [  114.605297] CPU[12] current=d[IDLE]v12, curr=d[IDLE]v12, prev=NULL
(XEN) [  114.618644] CPU[12] sibling={12-13}, core={0-15}
(XEN) [  114.628869] CPU[13] current=d[IDLE]v13, curr=d[IDLE]v13, prev=NULL
(XEN) [  114.642218] CPU[13] sibling={12-13}, core={0-15}
(XEN) [  114.652445] CPU[14] current=d[IDLE]v14, curr=d[IDLE]v14, prev=NULL
(XEN) [  114.665791] CPU[14] sibling={14-15}, core={0-15}
(XEN) [  114.676019] CPU[15] current=d[IDLE]v15, curr=d[IDLE]v15, prev=NULL
(XEN) [  114.689364] CPU[15] sibling={14-15}, core={0-15}
(XEN) [  114.699590] [s: dump softtsc stats]
(XEN) [  114.727541] TSC marked as reliable, warp = 0 (count=2)
(XEN) [  114.738808] No domains have emulated TSC
(XEN) [  114.747647] [t: display multi-cpu clock info]
(XEN) [  114.757354] Synced stime skew: max=792ns avg=792ns samples=1 current=792ns
(XEN) [  114.772087] Synced cycles skew: max=2146 avg=2146 samples=1 current=2146
(XEN) [  114.786473] [u: dump NUMA info]
(XEN) [  114.793754] 'u' pressed -> dumping numa info (now = 114792716297)
(XEN) [  114.806929] NODE0 start->0 size->8450880 free->7097377
(XEN) [  114.818196] CPU0...15 -> NODE0
(XEN) [  114.825300] Memory location of each domain:
(XEN) [  114.834661] d0 (total: 1048511):
(XEN) [  114.844258]     Node 0: 1048511
(XEN) [  114.851537] [v: dump AMD-V VMCBs]
(XEN) [  114.859163] *********** VMCB Areas **************
(XEN) [  114.869562]
(XEN) [  114.873549] >>> Domain 0 <<<
(XEN) [  114.880308] 	VCPU 0
(XEN) [  114.885511] Dumping guest's current state at key_handler...
(XEN) [  114.897644] Size of VMCB = 4096, paddr = 00000007cb345000, vaddr = ffff8307cb345000
(XEN) [  114.913936] cr_intercepts = 0xfef3fef3 dr_intercepts = 0xffffffff exception_intercepts = 0x60082
(XEN) [  114.932482] general1_intercepts = 0xbdc4000f general2_intercepts = 0x6f7f
(XEN) [  114.947044] iopm_base_pa = 0x7cb354000 msrpm_base_pa = 0x7cb342000 tsc_offset = 0xffffffc3387175c5
(XEN) [  114.965937] tlb_control = 0 vintr = 0x10f0001 int_stat = 0
(XEN) [  114.977898] event_inj 0000000000000000, valid? 0, ec? 0, type 0, vector 0
(XEN) [  114.992458] exitcode = 0x78 exit_int_info = 0
(XEN) [  115.002165] exitinfo1 = 0 exitinfo2 = 0
(XEN) [  115.010830] asid = 0x7b8 np_ctrl = 0x1: NP
(XEN) [  115.020016] virtual vmload/vmsave = 0, virt_ext = 0
(XEN) [  115.030765] cpl = 0 efer = 0x1d01 star = 0x23001000000000 lstar = 0xffffffff82200080
(XEN) [  115.047231] CR0 = 0x000000008005003b CR2 = 0x00005635b96283cd
(XEN) [  115.059712] CR3 = 0x0000000032042000 CR4 = 0x0000000000350ef0
(XEN) [  115.072191] RSP = 0xffffffff82c03e88  RIP = 0xffffffff8203fd4e
(XEN) [  115.084843] RAX = 0xffff888115000000  RFLAGS=0x0000000000000202
(XEN) [  115.097672] DR6 = 0x00000000ffff0ff0, DR7 = 0x0000000000000400
(XEN) [  115.110323] CSTAR = 0xffffffff82201fa0 SFMask = 0x0000000000257fd5
(XEN) [  115.123673] KernGSBase = 0x0000000000000000 PAT = 0x0407050600070106
(XEN) [  115.137366] SSP = 0x0000000000000000 S_CET = 0x0000000000000000 ISST = 0x0000000000000000
(XEN) [  115.154697] H_CR3 = 0x00000007cb7d7000 CleanBits = 0xfffffff7
(XEN) [  115.167179]        sel attr  limit   base
(XEN) [  115.176191]   CS: 0010 029b ffffffff 0000000000000000
(XEN) [  115.187284]   DS: 0000 0000 00000000 0000000000000000
(XEN) [  115.198380]   SS: 0018 0c93 ffffffff 0000000000000000
(XEN) [  115.209472]   ES: 0000 0000 00000000 0000000000000000
(XEN) [  115.220565]   FS: 0000 0000 00000000 0000000000000000
(XEN) [  115.231657]   GS: 0000 0000 00000000 ffff888115000000
(XEN) [  115.242751] GDTR: 0000 0000 0000007f fffffe0000001000
(XEN) [  115.253847] LDTR: 0000 0000 00000000 fffffe0000000000
(XEN) [  115.264939] IDTR: 0000 0000 00000fff fffffe0000000000
(XEN) [  115.276032]   TR: 0040 0089 00004087 fffffe0000003000
(XEN) [  115.287127] 	VCPU 1
(XEN) [  115.292327] Dumping guest's current state at key_handler...
(XEN) [  115.304459] Size of VMCB = 4096, paddr = 000000080f1fb000, vaddr = ffff83080f1fb000
(XEN) [  115.320753] cr_intercepts = 0xfef3fef3 dr_intercepts = 0xffffffff exception_intercepts = 0x60002
(XEN) [  115.339299] general1_intercepts = 0xbdc4000f general2_intercepts = 0x6f7f
(XEN) [  115.353859] iopm_base_pa = 0x7cb354000 msrpm_base_pa = 0x80f1f8000 tsc_offset = 0xffffffc3387175c5
(XEN) [  115.372754] tlb_control = 0 vintr = 0x10f0001 int_stat = 0
(XEN) [  115.384712] event_inj 0000000000000000, valid? 0, ec? 0, type 0, vector 0
(XEN) [  115.399274] exitcode = 0x60 exit_int_info = 0
(XEN) [  115.408978] exitinfo1 = 0 exitinfo2 = 0
(XEN) [  115.417646] asid = 0x681 np_ctrl = 0x1: NP
(XEN) [  115.426832] virtual vmload/vmsave = 0, virt_ext = 0
(XEN) [  115.437581] cpl = 0 efer = 0x1d01 star = 0x23001000000000 lstar = 0xffffffff82200080
(XEN) [  115.454046] CR0 = 0x0000000080050033 CR2 = 0x00007f56c19c6748
(XEN) [  115.466528] CR3 = 0x0000000002c32000 CR4 = 0x0000000000350ef0
(XEN) [  115.479005] RSP = 0xffffc900000e7e50  RIP = 0xffffffff82041a53
(XEN) [  115.491660] RAX = 0x0000000000000000  RFLAGS=0x0000000000000093
(XEN) [  115.504487] DR6 = 0x00000000ffff0ff0, DR7 = 0x0000000000000400
(XEN) [  115.517140] CSTAR = 0xffffffff82201fa0 SFMask = 0x0000000000257fd5
(XEN) [  115.530489] KernGSBase = 0x0000000000000000 PAT = 0x0407050600070106
(XEN) [  115.544182] SSP = 0x0000000000000000 S_CET = 0x0000000000000000 ISST = 0x0000000000000000
(XEN) [  115.561513] H_CR3 = 0x00000007cb7d7000 CleanBits = 0xfffffff7
(XEN) [  115.573994]        sel attr  limit   base
(XEN) [  115.583007]   CS: 0010 029b ffffffff 0000000000000000
(XEN) [  115.594103]   DS: 0000 0000 00000000 0000000000000000
(XEN) [  115.605193]   SS: 0018 0c93 ffffffff 0000000000000000
(XEN) [  115.616288]   ES: 0000 0000 00000000 0000000000000000
(XEN) [  115.627381]   FS: 0000 0000 00000000 0000000000000000
(XEN) [  115.638476]   GS: 0000 0000 00000000 ffff888115080000
(XEN) [  115.649568] GDTR: 0000 0000 0000007f fffffe000003c000
(XEN) [  115.660660] LDTR: 0000 0000 00000000 fffffe0000000000
(XEN) [  115.671755] IDTR: 0000 0000 00000fff fffffe0000000000
(XEN) [  115.682850]   TR: 0040 0089 00004087 fffffe000003e000
(XEN) [  115.693941] 	VCPU 2
(XEN) [  115.699143] Dumping guest's current state at key_handler...
(XEN) [  115.711274] Size of VMCB = 4096, paddr = 000000080f1f2000, vaddr = ffff83080f1f2000
(XEN) [  115.727570] cr_intercepts = 0xfef3fef3 dr_intercepts = 0xffffffff exception_intercepts = 0x60082
(XEN) [  115.746114] general1_intercepts = 0xbdc4000f general2_intercepts = 0x6f7f
(XEN) [  115.760676] iopm_base_pa = 0x7cb354000 msrpm_base_pa = 0x80f1f0000 tsc_offset = 0xffffffc3387175c5
(XEN) [  115.779570] tlb_control = 0 vintr = 0x10f0001 int_stat = 0
(XEN) [  115.791531] event_inj 0000000000000000, valid? 0, ec? 0, type 0, vector 0
(XEN) [  115.806088] exitcode = 0x60 exit_int_info = 0
(XEN) [  115.815797] exitinfo1 = 0 exitinfo2 = 0
(XEN) [  115.824463] asid = 0x6a4 np_ctrl = 0x1: NP
(XEN) [  115.833651] virtual vmload/vmsave = 0, virt_ext = 0
(XEN) [  115.844396] cpl = 0 efer = 0x1d01 star = 0x23001000000000 lstar = 0xffffffff82200080
(XEN) [  115.860864] CR0 = 0x000000008005003b CR2 = 0x00007f164693a080
(XEN) [  115.873345] CR3 = 0x0000000002c32000 CR4 = 0x0000000000350ef0
(XEN) [  115.885825] RSP = 0xffffc900000efe50  RIP = 0xffffffff82041a53
(XEN) [  115.898477] RAX = 0x0000000000000000  RFLAGS=0x0000000000000093
(XEN) [  115.911302] DR6 = 0x00000000ffff0ff0, DR7 = 0x0000000000000400
(XEN) [  115.923956] CSTAR = 0xffffffff82201fa0 SFMask = 0x0000000000257fd5
(XEN) [  115.937303] KernGSBase = 0x0000000000000000 PAT = 0x0407050600070106
(XEN) [  115.950998] SSP = 0x0000000000000000 S_CET = 0x0000000000000000 ISST = 0x0000000000000000
(XEN) [  115.968330] H_CR3 = 0x00000007cb7d7000 CleanBits = 0xfffffff7
(XEN) [  115.980812]        sel attr  limit   base
(XEN) [  115.989824]   CS: 0010 029b ffffffff 0000000000000000
(XEN) [  116.000917]   DS: 0000 0000 00000000 0000000000000000
(XEN) [  116.012011]   SS: 0018 0c93 ffffffff 0000000000000000
(XEN) [  116.023103]   ES: 0000 0000 00000000 0000000000000000
(XEN) [  116.034197]   FS: 0000 0000 00000000 0000000000000000
(XEN) [  116.045291]   GS: 0000 0000 00000000 ffff888115100000
(XEN) [  116.056385] GDTR: 0000 0000 0000007f fffffe0000077000
(XEN) [  116.067477] LDTR: 0000 0000 00000000 fffffe0000000000
(XEN) [  116.078573] IDTR: 0000 0000 00000fff fffffe0000000000
(XEN) [  116.089664]   TR: 0040 0089 00004087 fffffe0000079000
(XEN) [  116.100759] 	VCPU 3
(XEN) [  116.105958] Dumping guest's current state at key_handler...
(XEN) [  116.118091] Size of VMCB = 4096, paddr = 000000080f1e8000, vaddr = ffff83080f1e8000
(XEN) [  116.134385] cr_intercepts = 0xfef3fef3 dr_intercepts = 0xffffffff exception_intercepts = 0x60082
(XEN) [  116.152931] general1_intercepts = 0xbdc4000f general2_intercepts = 0x6f7f
(XEN) [  116.167492] iopm_base_pa = 0x7cb354000 msrpm_base_pa = 0x80f1e6000 tsc_offset = 0xffffffc3387175c5
(XEN) [  116.186385] tlb_control = 0 vintr = 0x10f0001 int_stat = 0
(XEN) [  116.198346] event_inj 0000000000000000, valid? 0, ec? 0, type 0, vector 0
(XEN) [  116.212906] exitcode = 0x81 exit_int_info = 0
(XEN) [  116.222614] exitinfo1 = 0 exitinfo2 = 0
(XEN) [  116.231278] asid = 0x727 np_ctrl = 0x1: NP
(XEN) [  116.240467] virtual vmload/vmsave = 0, virt_ext = 0
(XEN) [  116.251214] cpl = 0 efer = 0x1d01 star = 0x23001000000000 lstar = 0xffffffff82200080
(XEN) [  116.267679] CR0 = 0x000000008005003b CR2 = 0x00007fe00316f09d
(XEN) [  116.280160] CR3 = 0x0000000002c32000 CR4 = 0x0000000000350ef0
(XEN) [  116.292641] RSP = 0xffffc900000f7de8  RIP = 0xffffffff8203b308
(XEN) [  116.305292] RAX = 0x0000000000000000  RFLAGS=0x0000000000000012
(XEN) [  116.318119] DR6 = 0x00000000ffff0ff0, DR7 = 0x0000000000000400
(XEN) [  116.330774] CSTAR = 0xffffffff82201fa0 SFMask = 0x0000000000257fd5
(XEN) [  116.344121] KernGSBase = 0x0000000000000000 PAT = 0x0407050600070106
(XEN) [  116.357812] SSP = 0x0000000000000000 S_CET = 0x0000000000000000 ISST = 0x0000000000000000
(XEN) [  116.375147] H_CR3 = 0x00000007cb7d7000 CleanBits = 0xfffffff7
(XEN) [  116.387628]        sel attr  limit   base
(XEN) [  116.396640]   CS: 0010 029b ffffffff 0000000000000000
(XEN) [  116.407733]   DS: 0000 0000 00000000 0000000000000000
(XEN) [  116.418826]   SS: 0018 0c93 ffffffff 0000000000000000
(XEN) [  116.429920]   ES: 0000 0000 00000000 0000000000000000
(XEN) [  116.441014]   FS: 0000 0000 00000000 0000000000000000
(XEN) [  116.452106]   GS: 0000 0000 00000000 ffff888115180000
(XEN) [  116.463200] GDTR: 0000 0000 0000007f fffffe00000b2000
(XEN) [  116.474293] LDTR: 0000 0000 00000000 fffffe0000000000
(XEN) [  116.485387] IDTR: 0000 0000 00000fff fffffe0000000000
(XEN) [  116.496481]   TR: 0040 0089 00004087 fffffe00000b4000
(XEN) [  116.507576] **************************************
(XEN) [  116.518148] [x: print livepatch info]
(XEN) [  116.526469] 'x' pressed - Dumping all livepatch patches
(XEN) [  116.537908] build-id: 8aabeb63b20a347976fbd5f38d7ab356c307c41e
(XEN) [  116.550563] [z: dump IOAPIC info]
(XEN) [  116.558188] number of MP IRQ sources: 15.
(XEN) [  116.567203] number of IO-APIC #17 registers: 24.
(XEN) [  116.577430] number of IO-APIC #18 registers: 32.
(XEN) [  116.587655] testing the IO APIC.......................
(XEN) [  116.598922] IO APIC #17......
(XEN) [  116.605855] .... register #00: 11000000
(XEN) [  116.614522] .......    : physical APIC id: 11
(XEN) [  116.624230] .......    : Delivery Type: 0
(XEN) [  116.633244] .......    : LTS          : 0
(XEN) [  116.642257] .... register #01: 00178021
(XEN) [  116.650923] .......     : max redirection entries: 0017
(XEN) [  116.662364] .......     : PRQ implemented: 1
(XEN) [  116.671897] .......     : IO APIC version: 0021
(XEN) [  116.681951] .... register #02: 01000000
(XEN) [  116.690615] .......     : arbitration: 01
(XEN) [  116.699629] .... register #03: 00000000
(XEN) [  116.708297] .......     : Boot DT    : 0
(XEN) [  116.717137] .... IRQ redirection table:
(XEN) [  116.725801]  NR Dst Msk Trg IRR Pol Stat DstM DelM Vec
(XEN) [  116.737071]  00  00  1   0   0   0   0    0    0    00
(XEN) [  116.748338]  01  00  0   0   0   0   0    0    0    38
(XEN) [  116.759602]  02  00  0   0   0   0   0    0    0    F0
(XEN) [  116.770870]  03  00  0   0   0   0   0    0    0    40
(XEN) [  116.782137]  04  08  0   0   0   0   0    0    0    F1
(XEN) [  116.793405]  05  00  0   0   0   0   0    0    0    48
(XEN) [  116.804672]  06  00  0   0   0   0   0    0    0    50
(XEN) [  116.815938]  07  00  0   0   0   0   0    0    0    58
(XEN) [  116.827203]  08  00  0   0   0   0   0    0    0    60
(XEN) [  116.838469]  09  00  0   1   0   1   0    0    0    68
(XEN) [  116.849736]  0a  00  0   0   0   0   0    0    0    70
(XEN) [  116.861005]  0b  00  0   0   0   0   0    0    0    78
(XEN) [  116.872272]  0c  00  0   0   0   0   0    0    0    88
(XEN) [  116.883538]  0d  00  0   0   0   0   0    0    0    90
(XEN) [  116.894805]  0e  00  0   0   0   0   0    0    0    98
(XEN) [  116.906071]  0f  00  0   0   0   0   0    0    0    A0
(XEN) [  116.917339]  10  00  1   0   0   0   0    0    0    00
(XEN) [  116.928603]  11  00  1   0   0   0   0    0    0    00
(XEN) [  116.939870]  12  00  1   0   0   0   0    0    0    00
(XEN) [  116.951138]  13  00  1   0   0   0   0    0    0    00
(XEN) [  116.962404]  14  00  1   0   0   0   0    0    0    00
(XEN) [  116.973673]  15  00  1   0   0   0   0    0    0    00
(XEN) [  116.984939]  16  00  1   0   0   0   0    0    0    00
(XEN) [  116.996204]  17  00  1   0   0   0   0    0    0    00
(XEN) [  117.007472] IO APIC #18......
(XEN) [  117.014405] .... register #00: 12000000
(XEN) [  117.023070] .......    : physical APIC id: 12
(XEN) [  117.032779] .......    : Delivery Type: 0
(XEN) [  117.041793] .......    : LTS          : 0
(XEN) [  117.050804] .... register #01: 001F8021
(XEN) [  117.059473] .......     : max redirection entries: 001F
(XEN) [  117.070914] .......     : PRQ implemented: 1
(XEN) [  117.080445] .......     : IO APIC version: 0021
(XEN) [  117.090498] .... register #02: 00000000
(XEN) [  117.099166] .......     : arbitration: 00
(XEN) [  117.108180] .... IRQ redirection table:
(XEN) [  117.116848]  NR Dst Msk Trg IRR Pol Stat DstM DelM Vec
(XEN) [  117.128114]  00  00  1   0   0   0   0    0    0    00
(XEN) [  117.139379]  01  00  1   0   0   0   0    0    0    00
(XEN) [  117.150645]  02  00  1   0   0   0   0    0    0    00
(XEN) [  117.161913]  03  00  1   0   0   0   0    0    0    00
(XEN) [  117.173179]  04  00  1   0   0   0   0    0    0    00
(XEN) [  117.184446]  05  00  1   0   0   0   0    0    0    00
(XEN) [  117.195713]  06  00  1   0   0   0   0    0    0    00
(XEN) [  117.206981]  07  00  1   0   0   0   0    0    0    00
(XEN) [  117.218247]  08  00  1   0   0   0   0    0    0    00
(XEN) [  117.229513]  09  00  1   0   0   0   0    0    0    00
(XEN) [  117.240779]  0a  00  1   0   0   0   0    0    0    00
(XEN) [  117.252048]  0b  00  1   0   0   0   0    0    0    00
(XEN) [  117.263313]  0c  00  1   0   0   0   0    0    0    00
(XEN) [  117.274580]  0d  00  1   0   0   0   0    0    0    00
(XEN) [  117.285849]  0e  00  1   0   0   0   0    0    0    00
(XEN) [  117.297112]  0f  00  1   0   0   0   0    0    0    00
(XEN) [  117.308380]  10  00  1   0   0   0   0    0    0    00
(XEN) [  117.319647]  11  00  1   0   0   0   0    0    0    00
(XEN) [  117.330914]  12  00  1   0   0   0   0    0    0    00
(XEN) [  117.342181]  13  00  1   0   0   0   0    0    0    00
(XEN) [  117.353448]  14  00  1   0   0   0   0    0    0    00
(XEN) [  117.364713]  15  00  1   0   0   0   0    0    0    00
(XEN) [  117.375982]  16  00  1   0   0   0   0    0    0    00
(XEN) [  117.387247]  17  00  1   0   0   0   0    0    0    00
(XEN) [  117.398513]  18  00  1   0   0   0   0    0    0    00
(XEN) [  117.409782]  19  00  1   0   0   0   0    0    0    00
(XEN) [  117.421048]  1a  00  1   0   0   0   0    0    0    00
(XEN) [  117.432316]  1b  00  1   0   0   0   0    0    0    00
(XEN) [  117.443581]  1c  00  1   0   0   0   0    0    0    00
(XEN) [  117.454847]  1d  00  1   0   0   0   0    0    0    00
(XEN) [  117.466115]  1e  00  1   0   0   0   0    0    0    00
(XEN) [  117.477382]  1f  00  1   0   0   0   0    0    0    00
(XEN) [  117.488650] Using vector-based indexing
(XEN) [  117.497317] IRQ to pin mappings:
(XEN) [  117.504770] IRQ240 -> 0:2
(XEN) [  117.511008] IRQ56 -> 0:1
(XEN) [  117.517075] IRQ64 -> 0:3
(XEN) [  117.523143] IRQ241 -> 0:4
(XEN) [  117.529382] IRQ72 -> 0:5
(XEN) [  117.535449] IRQ80 -> 0:6
(XEN) [  117.541515] IRQ88 -> 0:7
(XEN) [  117.547584] IRQ96 -> 0:8
(XEN) [  117.553650] IRQ104 -> 0:9
(XEN) [  117.559891] IRQ112 -> 0:10
(XEN) [  117.566302] IRQ120 -> 0:11
(XEN) [  117.572714] IRQ136 -> 0:12
(XEN) [  117.579130] IRQ144 -> 0:13
(XEN) [  117.585541] IRQ152 -> 0:14
(XEN) [  117.591957] IRQ160 -> 0:15
(XEN) [  117.598371] .................................... done.
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 6 months, 1 week ago
On Wed, Apr 23, 2025 at 04:51:16PM -0700, Lira, Victor M wrote:
> [    4.570354] Intel(R) 2.5G Ethernet Linux Driver
> 
> [    4.579535] Copyright(c) 2018 Intel Corporation.
> 
> [    4.588898] sky2: driver version 1.30
> 
> (XEN) [   21.644361] d0v3 unable to fixup memory read from 0xfe91000c size 4: -1

This fault is unexpected, according to the identity mappings done at
domain build time:

d0: identity mappings for IOMMU:
 [00000000a0, 00000000ff] RW
 [0000009bff, 0000009fff] RW
 [00000cabc9, 00000cc14c] RW
 [00000cc389, 00000cc389] RW
 [00000cc70a, 00000cd1fe] RW
 [00000ce000, 00000cffff] RW
 [00000fd000, 00000fd2ff] RW

The page at 0xfe910 should be covered by the last range above.  I
think we have a bug somewhere that unexpectedly unmaps that address.

Can you try the Xen patch below and paste the output?  It should print
p2m modifications of the 0xfe910 gfn, so we can spot who/when removes
that mapping.

Thanks, Roger.
---
diff --git a/xen/arch/x86/mm/p2m-pt.c b/xen/arch/x86/mm/p2m-pt.c
index 666abd46be16..c4bb2cb01422 100644
--- a/xen/arch/x86/mm/p2m-pt.c
+++ b/xen/arch/x86/mm/p2m-pt.c
@@ -591,6 +591,14 @@ p2m_pt_set_entry(struct p2m_domain *p2m, gfn_t gfn_, mfn_t mfn,
     unsigned int flags, iommu_old_flags = 0;
     unsigned long old_mfn = mfn_x(INVALID_MFN);
 
+    if ( is_hardware_domain(d) &&
+         0xfe910 >= gfn && 0xfe910 < gfn + (1 << page_order) )
+    {
+        printk("gfn %#lx mfn %#"PRI_mfn" type %u order %u\n",
+               gfn, mfn_x(mfn), p2mt, page_order);
+        WARN();
+    }
+
     if ( !sve )
         return -EOPNOTSUPP;
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Marek Marczykowski-Górecki 6 months, 1 week ago
On Thu, Apr 24, 2025 at 09:59:00AM +0200, Roger Pau Monné wrote:
> On Wed, Apr 23, 2025 at 04:51:16PM -0700, Lira, Victor M wrote:
> > [    4.570354] Intel(R) 2.5G Ethernet Linux Driver
> > 
> > [    4.579535] Copyright(c) 2018 Intel Corporation.
> > 
> > [    4.588898] sky2: driver version 1.30
> > 
> > (XEN) [   21.644361] d0v3 unable to fixup memory read from 0xfe91000c size 4: -1
> 
> This fault is unexpected, according to the identity mappings done at
> domain build time:
> 
> d0: identity mappings for IOMMU:
>  [00000000a0, 00000000ff] RW
>  [0000009bff, 0000009fff] RW
>  [00000cabc9, 00000cc14c] RW
>  [00000cc389, 00000cc389] RW
>  [00000cc70a, 00000cd1fe] RW
>  [00000ce000, 00000cffff] RW
>  [00000fd000, 00000fd2ff] RW
> 
> The page at 0xfe910 should be covered by the last range above.  I
> think we have a bug somewhere that unexpectedly unmaps that address.

You sure? 0xfe910 is outside of [00000fd000, 00000fd2ff].

-- 
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 6 months, 1 week ago
On Thu, Apr 24, 2025 at 12:15:17PM +0200, Marek Marczykowski-Górecki wrote:
> On Thu, Apr 24, 2025 at 09:59:00AM +0200, Roger Pau Monné wrote:
> > On Wed, Apr 23, 2025 at 04:51:16PM -0700, Lira, Victor M wrote:
> > > [    4.570354] Intel(R) 2.5G Ethernet Linux Driver
> > > 
> > > [    4.579535] Copyright(c) 2018 Intel Corporation.
> > > 
> > > [    4.588898] sky2: driver version 1.30
> > > 
> > > (XEN) [   21.644361] d0v3 unable to fixup memory read from 0xfe91000c size 4: -1
> > 
> > This fault is unexpected, according to the identity mappings done at
> > domain build time:
> > 
> > d0: identity mappings for IOMMU:
> >  [00000000a0, 00000000ff] RW
> >  [0000009bff, 0000009fff] RW
> >  [00000cabc9, 00000cc14c] RW
> >  [00000cc389, 00000cc389] RW
> >  [00000cc70a, 00000cd1fe] RW
> >  [00000ce000, 00000cffff] RW
> >  [00000fd000, 00000fd2ff] RW
> > 
> > The page at 0xfe910 should be covered by the last range above.  I
> > think we have a bug somewhere that unexpectedly unmaps that address.
> 
> You sure? 0xfe910 is outside of [00000fd000, 00000fd2ff].

Oh, did and off-by-one when copying, it should have been:

d0: identity mappings for IOMMU:
 [00000000a0, 00000000ff] RW
 [0000009bff, 0000009fff] RW
 [00000cabc9, 00000cc14c] RW
 [00000cc389, 00000cc389] RW
 [00000cc70a, 00000cd1fe] RW
 [00000ce000, 00000cffff] RW
 [00000fd000, 00000fd2ff] RW
 [00000fd304, 00000febff] RW

Where 0xfe910 is covered by the last range.

Regards, Roger.

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jason Andryuk 6 months, 1 week ago
On 2025-04-24 06:48, Roger Pau Monné wrote:
> On Thu, Apr 24, 2025 at 12:15:17PM +0200, Marek Marczykowski-Górecki wrote:
>> On Thu, Apr 24, 2025 at 09:59:00AM +0200, Roger Pau Monné wrote:
>>> On Wed, Apr 23, 2025 at 04:51:16PM -0700, Lira, Victor M wrote:
>>>> [    4.570354] Intel(R) 2.5G Ethernet Linux Driver
>>>>
>>>> [    4.579535] Copyright(c) 2018 Intel Corporation.
>>>>
>>>> [    4.588898] sky2: driver version 1.30
>>>>
>>>> (XEN) [   21.644361] d0v3 unable to fixup memory read from 0xfe91000c size 4: -1
>>>
>>> This fault is unexpected, according to the identity mappings done at
>>> domain build time:
>>>
>>> d0: identity mappings for IOMMU:
>>>   [00000000a0, 00000000ff] RW
>>>   [0000009bff, 0000009fff] RW
>>>   [00000cabc9, 00000cc14c] RW
>>>   [00000cc389, 00000cc389] RW
>>>   [00000cc70a, 00000cd1fe] RW
>>>   [00000ce000, 00000cffff] RW
>>>   [00000fd000, 00000fd2ff] RW
>>>
>>> The page at 0xfe910 should be covered by the last range above.  I
>>> think we have a bug somewhere that unexpectedly unmaps that address.
>>
>> You sure? 0xfe910 is outside of [00000fd000, 00000fd2ff].
> 
> Oh, did and off-by-one when copying, it should have been:
> 
> d0: identity mappings for IOMMU:
>   [00000000a0, 00000000ff] RW
>   [0000009bff, 0000009fff] RW
>   [00000cabc9, 00000cc14c] RW
>   [00000cc389, 00000cc389] RW
>   [00000cc70a, 00000cd1fe] RW	
>   [00000ce000, 00000cffff] RW
>   [00000fd000, 00000fd2ff] RW
>   [00000fd304, 00000febff] RW
> 
> Where 0xfe910 is covered by the last range.

This looks like it's okay.  You think the somehow the device ranges are 
unmapped?

I thought the immediate issue is that the e820 marks these addresses 
reserved.  That leads to pci_check_bars()->is_memory_hole() returning 
false.  Stefano's original patch just returned true for non-RAM memory 
regions and the device worked.  That would leave bar->mem rangeset 
empty, IIUC.  Not sure how that would remove mappings though.

That also changes the setting of bar->enabled, but I don't immediately 
see how that affects mappings.

Regards,
Jason

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Lira, Victor M 6 months, 1 week ago
Hello all,

Here is the output from Roger's patch.
This is the section of interest:

> (XEN) [ 7.547326] d0 has maximum 3328PIRQs
> (XEN) [ 7.555644] *** Building a PVH Dom0 ***
> (XEN) [ 7.567780] d0: identity mappings for IOMMU:
> (XEN) [ 7.577312]  [00000000a0, 00000000ff] RW
> (XEN) [ 7.586153]  [0000009bff, 0000009fff] RW
> (XEN) [ 7.594992]  [00000cabc9, 00000cc14c] RW
> (XEN) [ 7.603866]  [00000cc389, 00000cc389] RW
> (XEN) [ 7.612707]  [00000cc70a, 00000cd1fe] RW
> (XEN) [ 7.621896]  [00000ce000, 00000cffff] RW
> (XEN) [ 7.630731]  [00000fd000, 00000fd2ff] RW
> (XEN) [ 7.639573]  [00000fd304, 00000febff] RW
> (XEN) [ 7.648414] gfn 0xfe800mfn 0xfe800type 5order 9
> (XEN) [ 7.658985] Xen WARNat arch/x86/mm/p2m-pt.c:599
> (XEN) [ 7.669215] ----[ Xen-4.21-unstable x86_64  debug=y  Tainted:   
> C    ]----
> ...
> (XEN) [ 8.227521] Xen call trace:
> (XEN) [ 8.234107]    [<ffff82d040309bd6>] R 
> arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
> (XEN) [ 8.250925]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
> (XEN) [ 8.263579]    [<ffff82d0402fc091>] F 
> arch/x86/mm/p2m.c#set_typed_p2m_entry+0xfd/0x6f0
> (XEN) [ 8.280388]    [<ffff82d0402fdcd4>] F set_mmio_p2m_entry+0x62/0x6b
> (XEN) [ 8.293735]    [<ffff82d0402ff9cf>] F map_mmio_regions+0x77/0xcf
> (XEN) [ 8.306734]    [<ffff82d04042fc1b>] F 
> drivers/passthrough/x86/iommu.c#identity_map+0x7e/0x196
> (XEN) [ 8.324761]    [<ffff82d040232935>] F 
> rangeset_report_ranges+0x10a/0x159
> (XEN) [ 8.339149]    [<ffff82d0404301e6>] F 
> arch_iommu_hwdom_init+0x27f/0x316
> (XEN) [ 8.353361]    [<ffff82d04042cffa>] F 
> drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xa9/0xc1
> (XEN) [ 8.373988]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
> (XEN) [ 8.386989]    [<ffff82d040441a30>] F 
> dom0_construct_pvh+0x265/0x1141
> (XEN) [ 8.400860]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
> (XEN) [ 8.413511]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
> (XEN) [ 8.426340]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
> (XEN) [ 8.438646]
> (XEN) [ 8.442632]  [00000fec02, 00000fedff] RW
> (XEN) [ 8.451599]  [00000fee01, 00000fffff] RW
> (XEN) [ 8.460571]  [000080f340, 00008501ff] RW
> (XEN) [ 8.470205] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid 
> position
> (XEN) [ 8.484769] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid 
> position
> (XEN) [ 8.499330] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid 
> position
> (XEN) [ 8.513890] gfn 0xfe910mfn 0xfffffffffffffffftype 1order 0
> (XEN) [ 8.526370] Xen WARNat arch/x86/mm/p2m-pt.c:599
> ...
> (XEN) [ 9.094902] Xen call trace:
> (XEN) [ 9.101491]    [<ffff82d040309bd6>] R 
> arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
> (XEN) [ 9.118306]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
> (XEN) [ 9.130957]    [<ffff82d0402fe1fb>] F 
> p2m_remove_identity_entry+0x26f/0x2ca
> (XEN) [ 9.145865]    [<ffff82d040268a4a>] F 
> vpci_make_msix_hole+0x11a/0x27a
> (XEN) [ 9.159734]    [<ffff82d0402654c4>] F 
> drivers/vpci/header.c#modify_decoding+0x4e/0x1b3
> (XEN) [ 9.176547]    [<ffff82d040265c89>] F 
> drivers/vpci/header.c#modify_bars+0x660/0x6c4
> (XEN) [ 9.192838]    [<ffff82d040266427>] F 
> drivers/vpci/header.c#init_header+0x5e7/0x86f
> (XEN) [ 9.209129]    [<ffff82d04026449c>] F vpci_assign_device+0xd3/0x115
> (XEN) [ 9.222648]    [<ffff82d040430de4>] F 
> drivers/passthrough/pci.c#setup_one_hwdom_device+0x92/0x15b
> (XEN) [ 9.241368]    [<ffff82d04043112a>] F 
> drivers/passthrough/pci.c#_setup_hwdom_pci_devices+0x158/0x241
> (XEN) [ 9.260612]    [<ffff82d04027aad7>] F 
> drivers/passthrough/pci.c#pci_segments_iterate+0x43/0x69
> (XEN) [ 9.278814]    [<ffff82d040431513>] F 
> setup_hwdom_pci_devices+0x28/0x2f
> (XEN) [ 9.293026]    [<ffff82d04042d009>] F 
> drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xb8/0xc1
> (XEN) [ 9.313649]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
> (XEN) [ 9.326652]    [<ffff82d040441a30>] F 
> dom0_construct_pvh+0x265/0x1141
> (XEN) [ 9.340516]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
> (XEN) [ 9.353172]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
> (XEN) [ 9.365999]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
> (XEN) [ 9.378305]
> (XEN) [ 9.382289] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid 
> position
> (XEN) [ 9.396850] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid 
> position
> (XEN) [ 9.411412] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid 
> position
> (XEN) [ 9.425972] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid 
> position
> (XEN) [ 9.440531] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid 
> position

So vpci_make_msix_hole is where it's getting removed.


Victor

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 6 months, 1 week ago
On Thu, Apr 24, 2025 at 02:38:29PM -0700, Lira, Victor M wrote:
> Hello all,
> 
> Here is the output from Roger's patch.
> This is the section of interest:
> 
> > (XEN) [ 7.547326] d0 has maximum 3328PIRQs
> > (XEN) [ 7.555644] *** Building a PVH Dom0 ***
> > (XEN) [ 7.567780] d0: identity mappings for IOMMU:
> > (XEN) [ 7.577312]  [00000000a0, 00000000ff] RW
> > (XEN) [ 7.586153]  [0000009bff, 0000009fff] RW
> > (XEN) [ 7.594992]  [00000cabc9, 00000cc14c] RW
> > (XEN) [ 7.603866]  [00000cc389, 00000cc389] RW
> > (XEN) [ 7.612707]  [00000cc70a, 00000cd1fe] RW
> > (XEN) [ 7.621896]  [00000ce000, 00000cffff] RW
> > (XEN) [ 7.630731]  [00000fd000, 00000fd2ff] RW
> > (XEN) [ 7.639573]  [00000fd304, 00000febff] RW
> > (XEN) [ 7.648414] gfn 0xfe800mfn 0xfe800type 5order 9
> > (XEN) [ 7.658985] Xen WARNat arch/x86/mm/p2m-pt.c:599
> > (XEN) [ 7.669215] ----[ Xen-4.21-unstable x86_64  debug=y  Tainted:   C
> >    ]----
> > ...
> > (XEN) [ 8.227521] Xen call trace:
> > (XEN) [ 8.234107]    [<ffff82d040309bd6>] R
> > arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
> > (XEN) [ 8.250925]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
> > (XEN) [ 8.263579]    [<ffff82d0402fc091>] F
> > arch/x86/mm/p2m.c#set_typed_p2m_entry+0xfd/0x6f0
> > (XEN) [ 8.280388]    [<ffff82d0402fdcd4>] F set_mmio_p2m_entry+0x62/0x6b
> > (XEN) [ 8.293735]    [<ffff82d0402ff9cf>] F map_mmio_regions+0x77/0xcf
> > (XEN) [ 8.306734]    [<ffff82d04042fc1b>] F
> > drivers/passthrough/x86/iommu.c#identity_map+0x7e/0x196
> > (XEN) [ 8.324761]    [<ffff82d040232935>] F
> > rangeset_report_ranges+0x10a/0x159
> > (XEN) [ 8.339149]    [<ffff82d0404301e6>] F
> > arch_iommu_hwdom_init+0x27f/0x316
> > (XEN) [ 8.353361]    [<ffff82d04042cffa>] F
> > drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xa9/0xc1
> > (XEN) [ 8.373988]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
> > (XEN) [ 8.386989]    [<ffff82d040441a30>] F
> > dom0_construct_pvh+0x265/0x1141
> > (XEN) [ 8.400860]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
> > (XEN) [ 8.413511]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
> > (XEN) [ 8.426340]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
> > (XEN) [ 8.438646]
> > (XEN) [ 8.442632]  [00000fec02, 00000fedff] RW
> > (XEN) [ 8.451599]  [00000fee01, 00000fffff] RW
> > (XEN) [ 8.460571]  [000080f340, 00008501ff] RW
> > (XEN) [ 8.470205] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid
> > position
> > (XEN) [ 8.484769] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid
> > position
> > (XEN) [ 8.499330] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid
> > position
> > (XEN) [ 8.513890] gfn 0xfe910mfn 0xfffffffffffffffftype 1order 0
> > (XEN) [ 8.526370] Xen WARNat arch/x86/mm/p2m-pt.c:599
> > ...
> > (XEN) [ 9.094902] Xen call trace:
> > (XEN) [ 9.101491]    [<ffff82d040309bd6>] R
> > arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
> > (XEN) [ 9.118306]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
> > (XEN) [ 9.130957]    [<ffff82d0402fe1fb>] F
> > p2m_remove_identity_entry+0x26f/0x2ca
> > (XEN) [ 9.145865]    [<ffff82d040268a4a>] F
> > vpci_make_msix_hole+0x11a/0x27a
> > (XEN) [ 9.159734]    [<ffff82d0402654c4>] F
> > drivers/vpci/header.c#modify_decoding+0x4e/0x1b3
> > (XEN) [ 9.176547]    [<ffff82d040265c89>] F
> > drivers/vpci/header.c#modify_bars+0x660/0x6c4
> > (XEN) [ 9.192838]    [<ffff82d040266427>] F
> > drivers/vpci/header.c#init_header+0x5e7/0x86f
> > (XEN) [ 9.209129]    [<ffff82d04026449c>] F vpci_assign_device+0xd3/0x115
> > (XEN) [ 9.222648]    [<ffff82d040430de4>] F
> > drivers/passthrough/pci.c#setup_one_hwdom_device+0x92/0x15b
> > (XEN) [ 9.241368]    [<ffff82d04043112a>] F
> > drivers/passthrough/pci.c#_setup_hwdom_pci_devices+0x158/0x241
> > (XEN) [ 9.260612]    [<ffff82d04027aad7>] F
> > drivers/passthrough/pci.c#pci_segments_iterate+0x43/0x69
> > (XEN) [ 9.278814]    [<ffff82d040431513>] F
> > setup_hwdom_pci_devices+0x28/0x2f
> > (XEN) [ 9.293026]    [<ffff82d04042d009>] F
> > drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xb8/0xc1
> > (XEN) [ 9.313649]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
> > (XEN) [ 9.326652]    [<ffff82d040441a30>] F
> > dom0_construct_pvh+0x265/0x1141
> > (XEN) [ 9.340516]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
> > (XEN) [ 9.353172]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
> > (XEN) [ 9.365999]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
> > (XEN) [ 9.378305]
> > (XEN) [ 9.382289] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid
> > position
> > (XEN) [ 9.396850] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid
> > position
> > (XEN) [ 9.411412] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid
> > position
> > (XEN) [ 9.425972] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid
> > position
> > (XEN) [ 9.440531] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid
> > position
> 
> So vpci_make_msix_hole is where it's getting removed.

Oh, the output is very mangled when displaying the email on my MUA,
but I see.  I think I now get what's happening.

Since the BAR falls into a reserved region, the `enabled` bit for it is
never set, and thus the handling in msix_accept() never triggers,
leaving those accesses unhandled and terminated by the null handler.

I think the patch below should fix it, let me know how it goes.

There's also a further known issue with vpci_make_msix_hole(): if the
BARs are repositioned the holes are not restored to their previous
values, but I don't think you are hitting that issue (yet).

Thanks, Roger.
---
diff --git a/xen/drivers/vpci/msix.c b/xen/drivers/vpci/msix.c
index f3804ce047a3..bcdeffc16a95 100644
--- a/xen/drivers/vpci/msix.c
+++ b/xen/drivers/vpci/msix.c
@@ -158,12 +158,10 @@ static struct vpci_msix *msix_find(const struct domain *d, unsigned long addr)
 
     list_for_each_entry ( msix, &d->arch.hvm.msix_tables, next )
     {
-        const struct vpci_bar *bars = msix->pdev->vpci->header.bars;
         unsigned int i;
 
         for ( i = 0; i < ARRAY_SIZE(msix->tables); i++ )
-            if ( bars[msix->tables[i] & PCI_MSIX_BIRMASK].enabled &&
-                 VMSIX_ADDR_SAME_PAGE(addr, msix->pdev->vpci, i) )
+            if ( VMSIX_ADDR_SAME_PAGE(addr, msix->pdev->vpci, i) )
                 return msix;
     }
 
@@ -392,7 +390,7 @@ static int cf_check msix_read(
         return rc;
     }
 
-    if ( !access_allowed(msix->pdev, addr, len) )
+    if ( !msix->enabled || !access_allowed(msix->pdev, addr, len) )
     {
         read_unlock(&d->pci_lock);
         return X86EMUL_OKAY;
@@ -539,7 +537,7 @@ static int cf_check msix_write(
         return rc;
     }
 
-    if ( !access_allowed(msix->pdev, addr, len) )
+    if ( !msix->enabled || !access_allowed(msix->pdev, addr, len) )
     {
         read_unlock(&d->pci_lock);
         return X86EMUL_OKAY;


Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jan Beulich 6 months, 1 week ago
On 25.04.2025 11:02, Roger Pau Monné wrote:
> On Thu, Apr 24, 2025 at 02:38:29PM -0700, Lira, Victor M wrote:
>> Hello all,
>>
>> Here is the output from Roger's patch.
>> This is the section of interest:
>>
>>> (XEN) [ 7.547326] d0 has maximum 3328PIRQs
>>> (XEN) [ 7.555644] *** Building a PVH Dom0 ***
>>> (XEN) [ 7.567780] d0: identity mappings for IOMMU:
>>> (XEN) [ 7.577312]  [00000000a0, 00000000ff] RW
>>> (XEN) [ 7.586153]  [0000009bff, 0000009fff] RW
>>> (XEN) [ 7.594992]  [00000cabc9, 00000cc14c] RW
>>> (XEN) [ 7.603866]  [00000cc389, 00000cc389] RW
>>> (XEN) [ 7.612707]  [00000cc70a, 00000cd1fe] RW
>>> (XEN) [ 7.621896]  [00000ce000, 00000cffff] RW
>>> (XEN) [ 7.630731]  [00000fd000, 00000fd2ff] RW
>>> (XEN) [ 7.639573]  [00000fd304, 00000febff] RW
>>> (XEN) [ 7.648414] gfn 0xfe800mfn 0xfe800type 5order 9
>>> (XEN) [ 7.658985] Xen WARNat arch/x86/mm/p2m-pt.c:599
>>> (XEN) [ 7.669215] ----[ Xen-4.21-unstable x86_64  debug=y  Tainted:   C
>>>    ]----
>>> ...
>>> (XEN) [ 8.227521] Xen call trace:
>>> (XEN) [ 8.234107]    [<ffff82d040309bd6>] R
>>> arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
>>> (XEN) [ 8.250925]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
>>> (XEN) [ 8.263579]    [<ffff82d0402fc091>] F
>>> arch/x86/mm/p2m.c#set_typed_p2m_entry+0xfd/0x6f0
>>> (XEN) [ 8.280388]    [<ffff82d0402fdcd4>] F set_mmio_p2m_entry+0x62/0x6b
>>> (XEN) [ 8.293735]    [<ffff82d0402ff9cf>] F map_mmio_regions+0x77/0xcf
>>> (XEN) [ 8.306734]    [<ffff82d04042fc1b>] F
>>> drivers/passthrough/x86/iommu.c#identity_map+0x7e/0x196
>>> (XEN) [ 8.324761]    [<ffff82d040232935>] F
>>> rangeset_report_ranges+0x10a/0x159
>>> (XEN) [ 8.339149]    [<ffff82d0404301e6>] F
>>> arch_iommu_hwdom_init+0x27f/0x316
>>> (XEN) [ 8.353361]    [<ffff82d04042cffa>] F
>>> drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xa9/0xc1
>>> (XEN) [ 8.373988]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
>>> (XEN) [ 8.386989]    [<ffff82d040441a30>] F
>>> dom0_construct_pvh+0x265/0x1141
>>> (XEN) [ 8.400860]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
>>> (XEN) [ 8.413511]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
>>> (XEN) [ 8.426340]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
>>> (XEN) [ 8.438646]
>>> (XEN) [ 8.442632]  [00000fec02, 00000fedff] RW
>>> (XEN) [ 8.451599]  [00000fee01, 00000fffff] RW
>>> (XEN) [ 8.460571]  [000080f340, 00008501ff] RW
>>> (XEN) [ 8.470205] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid
>>> position
>>> (XEN) [ 8.484769] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid
>>> position
>>> (XEN) [ 8.499330] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid
>>> position
>>> (XEN) [ 8.513890] gfn 0xfe910mfn 0xfffffffffffffffftype 1order 0
>>> (XEN) [ 8.526370] Xen WARNat arch/x86/mm/p2m-pt.c:599
>>> ...
>>> (XEN) [ 9.094902] Xen call trace:
>>> (XEN) [ 9.101491]    [<ffff82d040309bd6>] R
>>> arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
>>> (XEN) [ 9.118306]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
>>> (XEN) [ 9.130957]    [<ffff82d0402fe1fb>] F
>>> p2m_remove_identity_entry+0x26f/0x2ca
>>> (XEN) [ 9.145865]    [<ffff82d040268a4a>] F
>>> vpci_make_msix_hole+0x11a/0x27a
>>> (XEN) [ 9.159734]    [<ffff82d0402654c4>] F
>>> drivers/vpci/header.c#modify_decoding+0x4e/0x1b3
>>> (XEN) [ 9.176547]    [<ffff82d040265c89>] F
>>> drivers/vpci/header.c#modify_bars+0x660/0x6c4
>>> (XEN) [ 9.192838]    [<ffff82d040266427>] F
>>> drivers/vpci/header.c#init_header+0x5e7/0x86f
>>> (XEN) [ 9.209129]    [<ffff82d04026449c>] F vpci_assign_device+0xd3/0x115
>>> (XEN) [ 9.222648]    [<ffff82d040430de4>] F
>>> drivers/passthrough/pci.c#setup_one_hwdom_device+0x92/0x15b
>>> (XEN) [ 9.241368]    [<ffff82d04043112a>] F
>>> drivers/passthrough/pci.c#_setup_hwdom_pci_devices+0x158/0x241
>>> (XEN) [ 9.260612]    [<ffff82d04027aad7>] F
>>> drivers/passthrough/pci.c#pci_segments_iterate+0x43/0x69
>>> (XEN) [ 9.278814]    [<ffff82d040431513>] F
>>> setup_hwdom_pci_devices+0x28/0x2f
>>> (XEN) [ 9.293026]    [<ffff82d04042d009>] F
>>> drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xb8/0xc1
>>> (XEN) [ 9.313649]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
>>> (XEN) [ 9.326652]    [<ffff82d040441a30>] F
>>> dom0_construct_pvh+0x265/0x1141
>>> (XEN) [ 9.340516]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
>>> (XEN) [ 9.353172]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
>>> (XEN) [ 9.365999]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
>>> (XEN) [ 9.378305]
>>> (XEN) [ 9.382289] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid
>>> position
>>> (XEN) [ 9.396850] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid
>>> position
>>> (XEN) [ 9.411412] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid
>>> position
>>> (XEN) [ 9.425972] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid
>>> position
>>> (XEN) [ 9.440531] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid
>>> position
>>
>> So vpci_make_msix_hole is where it's getting removed.
> 
> Oh, the output is very mangled when displaying the email on my MUA,
> but I see.  I think I now get what's happening.
> 
> Since the BAR falls into a reserved region, the `enabled` bit for it is
> never set, and thus the handling in msix_accept() never triggers,
> leaving those accesses unhandled and terminated by the null handler.
> 
> I think the patch below should fix it, let me know how it goes.

Just to mention - "fix" isn't quite the right term here, is it? BARs may
not live in E820_RESERVED areas. And while we make those up from the EFI
memory map we're handed, ...

> There's also a further known issue with vpci_make_msix_hole(): if the
> BARs are repositioned the holes are not restored to their previous
> values, but I don't think you are hitting that issue (yet).

... the memory map we're seeing here will go stale once the OS (any; not
just Xen or Linux) decides to move those BARs. Imo firmware simply may
not request runtime mappings of BARs.

Jan

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 6 months, 1 week ago
On Fri, Apr 25, 2025 at 11:19:21AM +0200, Jan Beulich wrote:
> On 25.04.2025 11:02, Roger Pau Monné wrote:
> > On Thu, Apr 24, 2025 at 02:38:29PM -0700, Lira, Victor M wrote:
> >> Hello all,
> >>
> >> Here is the output from Roger's patch.
> >> This is the section of interest:
> >>
> >>> (XEN) [ 7.547326] d0 has maximum 3328PIRQs
> >>> (XEN) [ 7.555644] *** Building a PVH Dom0 ***
> >>> (XEN) [ 7.567780] d0: identity mappings for IOMMU:
> >>> (XEN) [ 7.577312]  [00000000a0, 00000000ff] RW
> >>> (XEN) [ 7.586153]  [0000009bff, 0000009fff] RW
> >>> (XEN) [ 7.594992]  [00000cabc9, 00000cc14c] RW
> >>> (XEN) [ 7.603866]  [00000cc389, 00000cc389] RW
> >>> (XEN) [ 7.612707]  [00000cc70a, 00000cd1fe] RW
> >>> (XEN) [ 7.621896]  [00000ce000, 00000cffff] RW
> >>> (XEN) [ 7.630731]  [00000fd000, 00000fd2ff] RW
> >>> (XEN) [ 7.639573]  [00000fd304, 00000febff] RW
> >>> (XEN) [ 7.648414] gfn 0xfe800mfn 0xfe800type 5order 9
> >>> (XEN) [ 7.658985] Xen WARNat arch/x86/mm/p2m-pt.c:599
> >>> (XEN) [ 7.669215] ----[ Xen-4.21-unstable x86_64  debug=y  Tainted:   C
> >>>    ]----
> >>> ...
> >>> (XEN) [ 8.227521] Xen call trace:
> >>> (XEN) [ 8.234107]    [<ffff82d040309bd6>] R
> >>> arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
> >>> (XEN) [ 8.250925]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
> >>> (XEN) [ 8.263579]    [<ffff82d0402fc091>] F
> >>> arch/x86/mm/p2m.c#set_typed_p2m_entry+0xfd/0x6f0
> >>> (XEN) [ 8.280388]    [<ffff82d0402fdcd4>] F set_mmio_p2m_entry+0x62/0x6b
> >>> (XEN) [ 8.293735]    [<ffff82d0402ff9cf>] F map_mmio_regions+0x77/0xcf
> >>> (XEN) [ 8.306734]    [<ffff82d04042fc1b>] F
> >>> drivers/passthrough/x86/iommu.c#identity_map+0x7e/0x196
> >>> (XEN) [ 8.324761]    [<ffff82d040232935>] F
> >>> rangeset_report_ranges+0x10a/0x159
> >>> (XEN) [ 8.339149]    [<ffff82d0404301e6>] F
> >>> arch_iommu_hwdom_init+0x27f/0x316
> >>> (XEN) [ 8.353361]    [<ffff82d04042cffa>] F
> >>> drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xa9/0xc1
> >>> (XEN) [ 8.373988]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
> >>> (XEN) [ 8.386989]    [<ffff82d040441a30>] F
> >>> dom0_construct_pvh+0x265/0x1141
> >>> (XEN) [ 8.400860]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
> >>> (XEN) [ 8.413511]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
> >>> (XEN) [ 8.426340]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
> >>> (XEN) [ 8.438646]
> >>> (XEN) [ 8.442632]  [00000fec02, 00000fedff] RW
> >>> (XEN) [ 8.451599]  [00000fee01, 00000fffff] RW
> >>> (XEN) [ 8.460571]  [000080f340, 00008501ff] RW
> >>> (XEN) [ 8.470205] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid
> >>> position
> >>> (XEN) [ 8.484769] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid
> >>> position
> >>> (XEN) [ 8.499330] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid
> >>> position
> >>> (XEN) [ 8.513890] gfn 0xfe910mfn 0xfffffffffffffffftype 1order 0
> >>> (XEN) [ 8.526370] Xen WARNat arch/x86/mm/p2m-pt.c:599
> >>> ...
> >>> (XEN) [ 9.094902] Xen call trace:
> >>> (XEN) [ 9.101491]    [<ffff82d040309bd6>] R
> >>> arch/x86/mm/p2m-pt.c#p2m_pt_set_entry+0xc1/0x961
> >>> (XEN) [ 9.118306]    [<ffff82d0402fbf0d>] F p2m_set_entry+0xb5/0x13c
> >>> (XEN) [ 9.130957]    [<ffff82d0402fe1fb>] F
> >>> p2m_remove_identity_entry+0x26f/0x2ca
> >>> (XEN) [ 9.145865]    [<ffff82d040268a4a>] F
> >>> vpci_make_msix_hole+0x11a/0x27a
> >>> (XEN) [ 9.159734]    [<ffff82d0402654c4>] F
> >>> drivers/vpci/header.c#modify_decoding+0x4e/0x1b3
> >>> (XEN) [ 9.176547]    [<ffff82d040265c89>] F
> >>> drivers/vpci/header.c#modify_bars+0x660/0x6c4
> >>> (XEN) [ 9.192838]    [<ffff82d040266427>] F
> >>> drivers/vpci/header.c#init_header+0x5e7/0x86f
> >>> (XEN) [ 9.209129]    [<ffff82d04026449c>] F vpci_assign_device+0xd3/0x115
> >>> (XEN) [ 9.222648]    [<ffff82d040430de4>] F
> >>> drivers/passthrough/pci.c#setup_one_hwdom_device+0x92/0x15b
> >>> (XEN) [ 9.241368]    [<ffff82d04043112a>] F
> >>> drivers/passthrough/pci.c#_setup_hwdom_pci_devices+0x158/0x241
> >>> (XEN) [ 9.260612]    [<ffff82d04027aad7>] F
> >>> drivers/passthrough/pci.c#pci_segments_iterate+0x43/0x69
> >>> (XEN) [ 9.278814]    [<ffff82d040431513>] F
> >>> setup_hwdom_pci_devices+0x28/0x2f
> >>> (XEN) [ 9.293026]    [<ffff82d04042d009>] F
> >>> drivers/passthrough/amd/pci_amd_iommu.c#amd_iommu_hwdom_init+0xb8/0xc1
> >>> (XEN) [ 9.313649]    [<ffff82d040430846>] F iommu_hwdom_init+0x26/0x2e
> >>> (XEN) [ 9.326652]    [<ffff82d040441a30>] F
> >>> dom0_construct_pvh+0x265/0x1141
> >>> (XEN) [ 9.340516]    [<ffff82d040457f7c>] F construct_dom0+0x47/0x93
> >>> (XEN) [ 9.353172]    [<ffff82d0404504e0>] F __start_xen+0x21fc/0x2425
> >>> (XEN) [ 9.365999]    [<ffff82d0402043be>] F __high_start+0x8e/0x90
> >>> (XEN) [ 9.378305]
> >>> (XEN) [ 9.382289] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid
> >>> position
> >>> (XEN) [ 9.396850] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid
> >>> position
> >>> (XEN) [ 9.411412] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid
> >>> position
> >>> (XEN) [ 9.425972] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid
> >>> position
> >>> (XEN) [ 9.440531] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid
> >>> position
> >>
> >> So vpci_make_msix_hole is where it's getting removed.
> > 
> > Oh, the output is very mangled when displaying the email on my MUA,
> > but I see.  I think I now get what's happening.
> > 
> > Since the BAR falls into a reserved region, the `enabled` bit for it is
> > never set, and thus the handling in msix_accept() never triggers,
> > leaving those accesses unhandled and terminated by the null handler.
> > 
> > I think the patch below should fix it, let me know how it goes.
> 
> Just to mention - "fix" isn't quite the right term here, is it? BARs may
> not live in E820_RESERVED areas. And while we make those up from the EFI
> memory map we're handed, ...

It is a fix IMO, because the 'enabled' bit is not set for those BARs
when they are indeed mapped in the p2m, just not handled by the vPCI
code due to being placed in a E820_RESERVED region.

Due to the 'enabled' bit not being set, the MSI-X handlers didn't
function as expected, even when the BARs are properly mapped.  I'm not
convinced the provided patch is the best way to solve this, I need to
think more carefully about it.  It should however fix the issue
reported.

> > There's also a further known issue with vpci_make_msix_hole(): if the
> > BARs are repositioned the holes are not restored to their previous
> > values, but I don't think you are hitting that issue (yet).
> 
> ... the memory map we're seeing here will go stale once the OS (any; not
> just Xen or Linux) decides to move those BARs. Imo firmware simply may
> not request runtime mappings of BARs.

Indeed, but Xen still needs to keep a consistent view for the guest in
the p2m.  Currently if a PVH dom0 moves BARs inside of a E820_RESERVED
region the MSI-X holes will get out-of-sync with the BAR placements,
and hence MSI-X traps won't work correctly for those devices.

That's however a different issue that the patch provided in the
previous email doesn't fix.

Regards, Roger.

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Lira, Victor M 6 months, 1 week ago
I can confirm with the patch the NVME drive can be accessed despite the 
"not mapping BAR" warning from Xen.
Output log attached.


Victor(XEN) [000000234dba8783] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Fri Apr 25 16:27:28 UTC 2025
(XEN) [00000023523e6cd4] Latest ChangeSet:
(XEN) [000000235396f6bf] build-id: 02e93e639d859ba218a312bce37e910cdeba2d4d
(XEN) [0000002355e46ea0] Console output is synchronous.
(XEN) [000000235798e5ec] CPU Vendor: AMD, Family 23 (0x17), Model 96 (0x60), Stepping 1 (raw 00860f01)
(XEN) [000000235ab512fd] BSP microcode revision: 0x0860010c
(XEN) [000000235c88135f] Bootloader: GRUB 2.13
(XEN) [000000235df78876] Command line: console=com1 com1=57600,8n1,0x3F8,4 sched=null loglvl=all guest_loglvl=all console_timestamps=boot iommu=verbose dom0=pvh,verbose,pf-fixup dom0_max_vcpus=4 dom0_mem=4G argo=1,mac-permissive=1 sync_console noreboot wow
(XEN) [0000002365aeba77] Xen image load base address: 0xc6600000
(XEN) [0000002367a7fbe8] Video information:
(XEN) [00000023690071a7]  VGA is graphics mode 1920x1200, 32 bpp
(XEN) [000000236af9c9bf] Disc information:
(XEN) [000000236c4aa63b]  Found 0 MBR signatures
(XEN) [000000236dc96d01]  Found 1 EDD information structures
(XEN) [000000236fa41667] EFI RAM map:
(XEN) [0000002370ce90df]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [0000002372fd6e90]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [00000023753b975c]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [00000023776a9003]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [0000002379a8c1df]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [000000237bd7969c]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [000000237e15b61f]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [0000002380448bfe]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [000000238282d466]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [0000002384c89c95]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [000000238706bd57]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [00000023894505bf]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [000000238b8325b6]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [000000238dc1604c]  [00000000cd1ff000, 00000000cdffffff] (usable)
(XEN) [000000238ff0374d]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [00000023922e580f]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [00000023946c909b]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [0000002396aabc77]  [0000000100000000, 000000080f33ffff] (usable)
(XEN) [0000002398d98b8b]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [00000023a74b0e60] ACPI: RSDP CC6F3014, 0024 (r2 ALASKA)
(XEN) [00000023a934f4d6] ACPI: XSDT CC6F2728, 00DC (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [00000023ac13d3ea] ACPI: FACP CC18C000, 0114 (r6 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000023aef2ba22] ACPI: DSDT CC183000, 876D (r2 ALASKA   A M I   1072009 INTL 20120913)
(XEN) [00000023b1d1b156] ACPI: FACS CC6C0000, 0040
(XEN) [00000023b35fc9ae] ACPI: SSDT CC18E000, 723C (r2    AMD AmdTable        2 MSFT  4000000)
(XEN) [00000023b63eb77c] ACPI: IVRS CC18D000, 01A4 (r2  AMD   AmdTable        1 AMD         0)
(XEN) [00000023b91dbe8d] ACPI: FIDT CC182000, 009C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [00000023bbfca58f] ACPI: MCFG CC181000, 003C (r1 ALASKA    A M I  1072009 MSFT    10013)
(XEN) [00000023bedb9e03] ACPI: HPET CC180000, 0038 (r1 ALASKA    A M I  1072009 AMI         5)
(XEN) [00000023c1ba89c7] ACPI: SSDT CC17F000, 0228 (r1    AMD     STD3        1 INTL 20120913)
(XEN) [00000023c499744d] ACPI: VFCT CC171000, D684 (r1 ALASKA   A M I         1  AMD 31504F47)
(XEN) [00000023c7787919] ACPI: TPM2 CC16F000, 004C (r4 ALASKA   A M I         1 AMI         0)
(XEN) [00000023ca576600] ACPI: SSDT CC16B000, 39F4 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000023cd36550c] ACPI: CRAT CC16A000, 0F28 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000023d015477f] ACPI: CDIT CC169000, 0029 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000023d2f447e1] ACPI: SSDT CC168000, 0139 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023d5d33144] ACPI: SSDT CC167000, 0227 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023d8b21f69] ACPI: SSDT CC166000, 0D37 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023db912436] ACPI: SSDT CC164000, 10A5 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023de7006cd] ACPI: SSDT CC160000, 30C8 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023e14ef5bd] ACPI: WSMT CC15F000, 0028 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000023e42ddf78] ACPI: APIC CC15E000, 00DE (r3 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000023e70ce50f] ACPI: SSDT CC15D000, 007D (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023e9ebd1f6] ACPI: SSDT CC15C000, 0517 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000023eccac01b] ACPI: FPDT CC15B000, 0044 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [00000023efa9b50b] ACPI: BGRT CC170000, 0038 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000023f288afe0] System RAM: 32168MB (32940656kB)
(XEN) [00000023f89fdf92] No NUMA configuration found
(XEN) [00000023fa3d332b] Faking a node at 0000000000000000-000000080f340000
(XEN) [0000002404db08ca] Domain heap initialised
(XEN) [0000002407955906] SMBIOS 3.2 present.
(XEN) [0000002408f547c1] Using APIC driver default
(XEN) [000000240a835cb3] ACPI: PM-Timer IO Port: 0x808 (32 bits)
(XEN) [000000240c7ca611] ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) [000000240eab9159] ACPI: SLEEP INFO: pm1x_cnt[1:804,1:0], pm1x_evt[1:800,1:0]
(XEN) [0000002411364d5b] ACPI: 32/64X FACS address mismatch in FADT - cc6c0000/0000000000000000, using 32
(XEN) [0000002414696232] ACPI:             wakeup_vec[cc6c000c], vec_size[20]
(XEN) [0000002416c63424] ACPI: Local APIC address 0xfee00000
(XEN) [0000002418a0da41] Overriding APIC driver with bigsmp
(XEN) [000000241a73f252] ACPI: IOAPIC (id[0x11] address[0xfec00000] gsi_base[0])
(XEN) [000000241ce7aefc] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
(XEN) [000000241f98a55d] ACPI: IOAPIC (id[0x12] address[0xfec01000] gsi_base[24])
(XEN) [00000024221422f1] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
(XEN) [0000002424ccceca] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) [0000002427482dac] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) [0000002429d2f607] ACPI: IRQ0 used by override.
(XEN) [000000242b7804a6] ACPI: IRQ2 used by override.
(XEN) [000000242d1d07b7] ACPI: IRQ9 used by override.
(XEN) [000000242ec21be4] ACPI: HPET id: 0x10228201 base: 0xfed00000
(XEN) [0000002430d26b82] PCI: MCFG configuration 0: base f0000000 segment 0000 buses 00 - 7f
(XEN) [0000002433a1fb47] PCI: MCFG area at f0000000 reserved in E820
(XEN) [0000002435b9f5f2] PCI: Using MCFG for segment 0000 bus 00-7f
(XEN) [0000002437ca1653] ACPI: BGRT: invalidating v1 image at 0xc77a7018
(XEN) [000000243a00b00e] Using ACPI (MADT) for SMP configuration information
(XEN) [000000243c55cd6f] SMP: Allowing 16 CPUs (0 hotplug CPUs)
(XEN) [000000243e4767ac] IRQ limits: 56 GSI, 3272 MSI/MSI-X
(XEN) [00000024401a79d8] CPU0: 1400 ... 2900 MHz
(XEN) [0000002441993ece] xstate: size: 0x380 and states: 0x207
(XEN) [0000002443833c0a] CPU0: AMD Fam17h machine check reporting enabled
(XEN) [0000002445c15518] Speculative mitigation facilities:
(XEN) [0000002447944b49]   Hardware hints: IBRS_FAST IBRS_SAME_MODE
(XEN) [0000002449a4a536]   Hardware features: IBPB IBRS STIBP SSBD
(XEN) [000000244bad2f9c]   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING HARDEN_ARRAY HARDEN_BRANCH HARDEN_GUEST_ACCESS HARDEN_LOCK
(XEN) [000000244fc60d23]   Xen settings: BTI-Thunk: RETPOLINE, SPEC_CTRL: IBRS- STIBP+ SSBD-, Other: BRANCH_HARDEN
(XEN) [00000024533e0d6b]   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB IBPB-entry
(XEN) [0000002456249d70]   Support for PV VMs: IBPB-entry
(XEN) [0000002457e86bdc]   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (without PCID)
(XEN) [000000245abf96d3]   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) [000000245d058960] Using scheduler: null Scheduler (null)
(XEN) [000000245ef72c39] Initializing null scheduler
(XEN) [00000024609486bb] WARNING: This is experimental software in development.
(XEN) [0000002463009136] Use at your own risk.
(XEN) [000000246d04e6ed] Platform timer is 14.318MHz HPET
(XEN) [    1.679515] Detected 2894.561 MHz processor.
(XEN) [    1.690522] Freed 1008kB unused BSS memory
(XEN) [    1.699709] EFI memory map:
(XEN) [    1.706297]  0000000000000-0000000003fff type=2 attr=000000000000000f
(XEN) [    1.720165]  0000000004000-000000008efff type=7 attr=000000000000000f
(XEN) [    1.734031]  000000008f000-000000009efff type=2 attr=000000000000000f
(XEN) [    1.747897]  000000009f000-000000009ffff type=4 attr=000000000000000f
(XEN) [    1.761762]  0000000100000-0000000e31fff type=2 attr=000000000000000f
(XEN) [    1.775629]  0000000e32000-0000000ffffff type=7 attr=000000000000000f
(XEN) [    1.789497]  0000001000000-000000101ffff type=4 attr=000000000000000f
(XEN) [    1.803364]  0000001020000-0000009bfefff type=7 attr=000000000000000f
(XEN) [    1.817230]  0000009bff000-0000009ffffff type=0 attr=000000000000000f
(XEN) [    1.831096]  000000a000000-000000a1fffff type=7 attr=000000000000000f
(XEN) [    1.844962]  000000a200000-000000a20cfff type=10 attr=000000000000000f
(XEN) [    1.859002]  000000a20d000-0000016c40fff type=2 attr=000000000000000f
(XEN) [    1.872870]  0000016c41000-00000c4ee9fff type=7 attr=000000000000000f
(XEN) [    1.886736]  00000c4eea000-00000c6ffefff type=1 attr=000000000000000f
(XEN) [    1.900604]  00000c6fff000-00000c7114fff type=7 attr=000000000000000f
(XEN) [    1.914470]  00000c7115000-00000c711efff type=4 attr=000000000000000f
(XEN) [    1.928336]  00000c711f000-00000c7159fff type=3 attr=000000000000000f
(XEN) [    1.942203]  00000c715a000-00000c715afff type=7 attr=000000000000000f
(XEN) [    1.956071]  00000c715b000-00000c715cfff type=4 attr=000000000000000f
(XEN) [    1.969935]  00000c715d000-00000c7168fff type=3 attr=000000000000000f
(XEN) [    1.983803]  00000c7169000-00000c7194fff type=4 attr=000000000000000f
(XEN) [    1.997670]  00000c7195000-00000c71a2fff type=3 attr=000000000000000f
(XEN) [    2.011536]  00000c71a3000-00000c71dcfff type=4 attr=000000000000000f
(XEN) [    2.025404]  00000c71dd000-00000c71ddfff type=7 attr=000000000000000f
(XEN) [    2.039271]  00000c71de000-00000c71e0fff type=4 attr=000000000000000f
(XEN) [    2.053135]  00000c71e1000-00000c71e1fff type=7 attr=000000000000000f
(XEN) [    2.067004]  00000c71e2000-00000c71e3fff type=4 attr=000000000000000f
(XEN) [    2.080870]  00000c71e4000-00000c71e5fff type=7 attr=000000000000000f
(XEN) [    2.094735]  00000c71e6000-00000c71e7fff type=4 attr=000000000000000f
(XEN) [    2.108604]  00000c71e8000-00000c71e8fff type=7 attr=000000000000000f
(XEN) [    2.122471]  00000c71e9000-00000c71e9fff type=4 attr=000000000000000f
(XEN) [    2.136337]  00000c71ea000-00000c71eafff type=7 attr=000000000000000f
(XEN) [    2.150205]  00000c71eb000-00000c71ebfff type=4 attr=000000000000000f
(XEN) [    2.164070]  00000c71ec000-00000c71ecfff type=7 attr=000000000000000f
(XEN) [    2.177937]  00000c71ed000-00000c71eefff type=4 attr=000000000000000f
(XEN) [    2.191802]  00000c71ef000-00000c71f0fff type=7 attr=000000000000000f
(XEN) [    2.205671]  00000c71f1000-00000c71f3fff type=4 attr=000000000000000f
(XEN) [    2.219537]  00000c71f4000-00000c71fefff type=7 attr=000000000000000f
(XEN) [    2.233403]  00000c71ff000-00000c7201fff type=4 attr=000000000000000f
(XEN) [    2.247269]  00000c7202000-00000c7204fff type=7 attr=000000000000000f
(XEN) [    2.261138]  00000c7205000-00000c7205fff type=4 attr=000000000000000f
(XEN) [    2.275003]  00000c7206000-00000c7206fff type=7 attr=000000000000000f
(XEN) [    2.288869]  00000c7207000-00000c7207fff type=4 attr=000000000000000f
(XEN) [    2.302737]  00000c7208000-00000c7209fff type=7 attr=000000000000000f
(XEN) [    2.316603]  00000c720a000-00000c720bfff type=4 attr=000000000000000f
(XEN) [    2.330469]  00000c720c000-00000c720cfff type=7 attr=000000000000000f
(XEN) [    2.344335]  00000c720d000-00000c720dfff type=4 attr=000000000000000f
(XEN) [    2.358202]  00000c720e000-00000c720efff type=7 attr=000000000000000f
(XEN) [    2.372069]  00000c720f000-00000c7210fff type=4 attr=000000000000000f
(XEN) [    2.385937]  00000c7211000-00000c7211fff type=7 attr=000000000000000f
(XEN) [    2.399803]  00000c7212000-00000c7212fff type=4 attr=000000000000000f
(XEN) [    2.413670]  00000c7213000-00000c7214fff type=7 attr=000000000000000f
(XEN) [    2.427535]  00000c7215000-00000c7215fff type=4 attr=000000000000000f
(XEN) [    2.441404]  00000c7216000-00000c72c2fff type=7 attr=000000000000000f
(XEN) [    2.455270]  00000c72c3000-00000c77e5fff type=4 attr=000000000000000f
(XEN) [    2.469136]  00000c77e6000-00000c7838fff type=7 attr=000000000000000f
(XEN) [    2.483002]  00000c7839000-00000c785afff type=4 attr=000000000000000f
(XEN) [    2.496871]  00000c785b000-00000c79d2fff type=3 attr=000000000000000f
(XEN) [    2.510736]  00000c79d3000-00000c7a3dfff type=4 attr=000000000000000f
(XEN) [    2.524603]  00000c7a3e000-00000c7a42fff type=7 attr=000000000000000f
(XEN) [    2.538469]  00000c7a43000-00000c7a43fff type=4 attr=000000000000000f
(XEN) [    2.552335]  00000c7a44000-00000c7a49fff type=7 attr=000000000000000f
(XEN) [    2.566205]  00000c7a4a000-00000c7a4afff type=4 attr=000000000000000f
(XEN) [    2.580071]  00000c7a4b000-00000c7a4bfff type=7 attr=000000000000000f
(XEN) [    2.593937]  00000c7a4c000-00000c7a4cfff type=2 attr=000000000000000f
(XEN) [    2.607803]  00000c7a4d000-00000c7a5dfff type=3 attr=000000000000000f
(XEN) [    2.621670]  00000c7a5e000-00000c7a8ffff type=4 attr=000000000000000f
(XEN) [    2.635538]  00000c7a90000-00000c7a90fff type=7 attr=000000000000000f
(XEN) [    2.649405]  00000c7a91000-00000c7a95fff type=4 attr=000000000000000f
(XEN) [    2.663270]  00000c7a96000-00000c7a97fff type=7 attr=000000000000000f
(XEN) [    2.677136]  00000c7a98000-00000c7ae7fff type=4 attr=000000000000000f
(XEN) [    2.691002]  00000c7ae8000-00000c7b07fff type=3 attr=000000000000000f
(XEN) [    2.704871]  00000c7b08000-00000c7b08fff type=4 attr=000000000000000f
(XEN) [    2.718737]  00000c7b09000-00000c7b10fff type=3 attr=000000000000000f
(XEN) [    2.732602]  00000c7b11000-00000c7b18fff type=4 attr=000000000000000f
(XEN) [    2.746471]  00000c7b19000-00000c7b30fff type=3 attr=000000000000000f
(XEN) [    2.760337]  00000c7b31000-00000c7b32fff type=4 attr=000000000000000f
(XEN) [    2.774203]  00000c7b33000-00000c7b55fff type=3 attr=000000000000000f
(XEN) [    2.788070]  00000c7b56000-00000c7b60fff type=4 attr=000000000000000f
(XEN) [    2.801936]  00000c7b61000-00000c7b8cfff type=3 attr=000000000000000f
(XEN) [    2.815802]  00000c7b8d000-00000c9270fff type=4 attr=000000000000000f
(XEN) [    2.829672]  00000c9271000-00000c92d7fff type=3 attr=000000000000000f
(XEN) [    2.843537]  00000c92d8000-00000c92dbfff type=4 attr=000000000000000f
(XEN) [    2.857403]  00000c92dc000-00000c92e5fff type=3 attr=000000000000000f
(XEN) [    2.871272]  00000c92e6000-00000c9330fff type=4 attr=000000000000000f
(XEN) [    2.885138]  00000c9331000-00000c934afff type=3 attr=000000000000000f
(XEN) [    2.899003]  00000c934b000-00000c934efff type=4 attr=000000000000000f
(XEN) [    2.912870]  00000c934f000-00000c936cfff type=3 attr=000000000000000f
(XEN) [    2.926736]  00000c936d000-00000c936dfff type=4 attr=000000000000000f
(XEN) [    2.940605]  00000c936e000-00000c9374fff type=3 attr=000000000000000f
(XEN) [    2.954471]  00000c9375000-00000c937bfff type=4 attr=000000000000000f
(XEN) [    2.968337]  00000c937c000-00000c9389fff type=3 attr=000000000000000f
(XEN) [    2.982202]  00000c938a000-00000c938efff type=4 attr=000000000000000f
(XEN) [    2.996069]  00000c938f000-00000c9390fff type=3 attr=000000000000000f
(XEN) [    3.009935]  00000c9391000-00000c9392fff type=4 attr=000000000000000f
(XEN) [    3.023805]  00000c9393000-00000c9399fff type=3 attr=000000000000000f
(XEN) [    3.037672]  00000c939a000-00000c939bfff type=4 attr=000000000000000f
(XEN) [    3.051538]  00000c939c000-00000c939cfff type=3 attr=000000000000000f
(XEN) [    3.065404]  00000c939d000-00000c93a0fff type=4 attr=000000000000000f
(XEN) [    3.079270]  00000c93a1000-00000c93b7fff type=3 attr=000000000000000f
(XEN) [    3.093136]  00000c93b8000-00000c93b9fff type=4 attr=000000000000000f
(XEN) [    3.107005]  00000c93ba000-00000c93bbfff type=3 attr=000000000000000f
(XEN) [    3.120871]  00000c93bc000-00000c93bcfff type=4 attr=000000000000000f
(XEN) [    3.134737]  00000c93bd000-00000c93cbfff type=3 attr=000000000000000f
(XEN) [    3.148604]  00000c93cc000-00000c93d4fff type=4 attr=000000000000000f
(XEN) [    3.162472]  00000c93d5000-00000c93d6fff type=3 attr=000000000000000f
(XEN) [    3.176338]  00000c93d7000-00000c93d8fff type=4 attr=000000000000000f
(XEN) [    3.190205]  00000c93d9000-00000c93d9fff type=3 attr=000000000000000f
(XEN) [    3.204069]  00000c93da000-00000c93dafff type=4 attr=000000000000000f
(XEN) [    3.217936]  00000c93db000-00000c93dbfff type=3 attr=000000000000000f
(XEN) [    3.231803]  00000c93dc000-00000c9529fff type=4 attr=000000000000000f
(XEN) [    3.245669]  00000c952a000-00000c9533fff type=3 attr=000000000000000f
(XEN) [    3.259538]  00000c9534000-00000c9535fff type=4 attr=000000000000000f
(XEN) [    3.273405]  00000c9536000-00000c9539fff type=3 attr=000000000000000f
(XEN) [    3.287271]  00000c953a000-00000c953dfff type=4 attr=000000000000000f
(XEN) [    3.301137]  00000c953e000-00000c9545fff type=3 attr=000000000000000f
(XEN) [    3.315004]  00000c9546000-00000c9547fff type=4 attr=000000000000000f
(XEN) [    3.328870]  00000c9548000-00000c954bfff type=3 attr=000000000000000f
(XEN) [    3.342736]  00000c954c000-00000c954dfff type=4 attr=000000000000000f
(XEN) [    3.356603]  00000c954e000-00000c9556fff type=3 attr=000000000000000f
(XEN) [    3.370469]  00000c9557000-00000c955afff type=4 attr=000000000000000f
(XEN) [    3.384335]  00000c955b000-00000c955cfff type=3 attr=000000000000000f
(XEN) [    3.398205]  00000c955d000-00000c955ffff type=4 attr=000000000000000f
(XEN) [    3.412072]  00000c9560000-00000c956cfff type=3 attr=000000000000000f
(XEN) [    3.425938]  00000c956d000-00000c97fffff type=4 attr=000000000000000f
(XEN) [    3.439804]  00000c9800000-00000c981afff type=3 attr=000000000000000f
(XEN) [    3.453670]  00000c981b000-00000c982afff type=4 attr=000000000000000f
(XEN) [    3.467535]  00000c982b000-00000c983dfff type=3 attr=000000000000000f
(XEN) [    3.481405]  00000c983e000-00000c983ffff type=4 attr=000000000000000f
(XEN) [    3.495271]  00000c9840000-00000c9843fff type=3 attr=000000000000000f
(XEN) [    3.509137]  00000c9844000-00000c9848fff type=4 attr=000000000000000f
(XEN) [    3.523002]  00000c9849000-00000c985bfff type=3 attr=000000000000000f
(XEN) [    3.536872]  00000c985c000-00000c9860fff type=4 attr=000000000000000f
(XEN) [    3.550737]  00000c9861000-00000c9861fff type=3 attr=000000000000000f
(XEN) [    3.564603]  00000c9862000-00000c9862fff type=4 attr=000000000000000f
(XEN) [    3.578469]  00000c9863000-00000c9863fff type=3 attr=000000000000000f
(XEN) [    3.592338]  00000c9864000-00000c9866fff type=4 attr=000000000000000f
(XEN) [    3.606204]  00000c9867000-00000c9874fff type=3 attr=000000000000000f
(XEN) [    3.620070]  00000c9875000-00000c9875fff type=4 attr=000000000000000f
(XEN) [    3.633936]  00000c9876000-00000c9876fff type=3 attr=000000000000000f
(XEN) [    3.647804]  00000c9877000-00000c9882fff type=4 attr=000000000000000f
(XEN) [    3.661671]  00000c9883000-00000c988bfff type=3 attr=000000000000000f
(XEN) [    3.675537]  00000c988c000-00000c988efff type=4 attr=000000000000000f
(XEN) [    3.689404]  00000c988f000-00000c9894fff type=3 attr=000000000000000f
(XEN) [    3.703270]  00000c9895000-00000c98e1fff type=4 attr=000000000000000f
(XEN) [    3.717136]  00000c98e2000-00000c990ffff type=3 attr=000000000000000f
(XEN) [    3.731005]  00000c9910000-00000c9911fff type=4 attr=000000000000000f
(XEN) [    3.744871]  00000c9912000-00000c9913fff type=3 attr=000000000000000f
(XEN) [    3.758737]  00000c9914000-00000c9915fff type=4 attr=000000000000000f
(XEN) [    3.772604]  00000c9916000-00000c992dfff type=3 attr=000000000000000f
(XEN) [    3.786470]  00000c992e000-00000c9939fff type=4 attr=000000000000000f
(XEN) [    3.800336]  00000c993a000-00000c9960fff type=3 attr=000000000000000f
(XEN) [    3.814205]  00000c9961000-00000c9964fff type=4 attr=000000000000000f
(XEN) [    3.828072]  00000c9965000-00000c996cfff type=3 attr=000000000000000f
(XEN) [    3.841938]  00000c996d000-00000c9974fff type=4 attr=000000000000000f
(XEN) [    3.855804]  00000c9975000-00000c997efff type=3 attr=000000000000000f
(XEN) [    3.869670]  00000c997f000-00000c9988fff type=4 attr=000000000000000f
(XEN) [    3.883536]  00000c9989000-00000c99adfff type=3 attr=000000000000000f
(XEN) [    3.897405]  00000c99ae000-00000c99b7fff type=4 attr=000000000000000f
(XEN) [    3.911271]  00000c99b8000-00000c99b8fff type=3 attr=000000000000000f
(XEN) [    3.925137]  00000c99b9000-00000c99b9fff type=4 attr=000000000000000f
(XEN) [    3.939003]  00000c99ba000-00000c99c1fff type=3 attr=000000000000000f
(XEN) [    3.952872]  00000c99c2000-00000c99c4fff type=4 attr=000000000000000f
(XEN) [    3.966736]  00000c99c5000-00000c99c6fff type=3 attr=000000000000000f
(XEN) [    3.980605]  00000c99c7000-00000c99c7fff type=4 attr=000000000000000f
(XEN) [    3.994471]  00000c99c8000-00000c99d5fff type=3 attr=000000000000000f
(XEN) [    4.008337]  00000c99d6000-00000c99d9fff type=4 attr=000000000000000f
(XEN) [    4.022203]  00000c99da000-00000c99dffff type=3 attr=000000000000000f
(XEN) [    4.036072]  00000c99e0000-00000c99e5fff type=4 attr=000000000000000f
(XEN) [    4.049938]  00000c99e6000-00000c99e6fff type=3 attr=000000000000000f
(XEN) [    4.063803]  00000c99e7000-00000c99e8fff type=4 attr=000000000000000f
(XEN) [    4.077670]  00000c99e9000-00000c99fdfff type=3 attr=000000000000000f
(XEN) [    4.091536]  00000c99fe000-00000c99fefff type=4 attr=000000000000000f
(XEN) [    4.105402]  00000c99ff000-00000c9a01fff type=3 attr=000000000000000f
(XEN) [    4.119269]  00000c9a02000-00000c9a02fff type=4 attr=000000000000000f
(XEN) [    4.133136]  00000c9a03000-00000c9a12fff type=3 attr=000000000000000f
(XEN) [    4.147005]  00000c9a13000-00000c9a15fff type=4 attr=000000000000000f
(XEN) [    4.160869]  00000c9a16000-00000c9a17fff type=3 attr=000000000000000f
(XEN) [    4.174736]  00000c9a18000-00000c9a19fff type=4 attr=000000000000000f
(XEN) [    4.188605]  00000c9a1a000-00000c9a2ffff type=3 attr=000000000000000f
(XEN) [    4.202469]  00000c9a30000-00000c9a30fff type=4 attr=000000000000000f
(XEN) [    4.216338]  00000c9a31000-00000c9a31fff type=3 attr=000000000000000f
(XEN) [    4.230204]  00000c9a32000-00000c9a32fff type=4 attr=000000000000000f
(XEN) [    4.244070]  00000c9a33000-00000c9a33fff type=3 attr=000000000000000f
(XEN) [    4.257936]  00000c9a34000-00000c9a34fff type=4 attr=000000000000000f
(XEN) [    4.271805]  00000c9a35000-00000c9a35fff type=3 attr=000000000000000f
(XEN) [    4.285671]  00000c9a36000-00000c9a36fff type=4 attr=000000000000000f
(XEN) [    4.299536]  00000c9a37000-00000c9a37fff type=3 attr=000000000000000f
(XEN) [    4.313405]  00000c9a38000-00000c9a38fff type=4 attr=000000000000000f
(XEN) [    4.327271]  00000c9a39000-00000c9a4bfff type=3 attr=000000000000000f
(XEN) [    4.341137]  00000c9a4c000-00000c9a4dfff type=4 attr=000000000000000f
(XEN) [    4.355003]  00000c9a4e000-00000c9a52fff type=3 attr=000000000000000f
(XEN) [    4.368872]  00000c9a53000-00000c9a57fff type=4 attr=000000000000000f
(XEN) [    4.382738]  00000c9a58000-00000c9a5cfff type=3 attr=000000000000000f
(XEN) [    4.396604]  00000c9a5d000-00000c9a5ffff type=4 attr=000000000000000f
(XEN) [    4.410470]  00000c9a60000-00000c9a66fff type=3 attr=000000000000000f
(XEN) [    4.424336]  00000c9a67000-00000c9a69fff type=4 attr=000000000000000f
(XEN) [    4.438205]  00000c9a6a000-00000c9a73fff type=3 attr=000000000000000f
(XEN) [    4.452072]  00000c9a74000-00000c9a8afff type=4 attr=000000000000000f
(XEN) [    4.465939]  00000c9a8b000-00000c9a9cfff type=3 attr=000000000000000f
(XEN) [    4.479804]  00000c9a9d000-00000c9a9dfff type=4 attr=000000000000000f
(XEN) [    4.493670]  00000c9a9e000-00000c9a9ffff type=3 attr=000000000000000f
(XEN) [    4.507536]  00000c9aa0000-00000c9aa7fff type=4 attr=000000000000000f
(XEN) [    4.521403]  00000c9aa8000-00000c9aa8fff type=3 attr=000000000000000f
(XEN) [    4.535271]  00000c9aa9000-00000c9aa9fff type=4 attr=000000000000000f
(XEN) [    4.549137]  00000c9aaa000-00000c9aaafff type=3 attr=000000000000000f
(XEN) [    4.563003]  00000c9aab000-00000c9aacfff type=4 attr=000000000000000f
(XEN) [    4.576872]  00000c9aad000-00000c9ab1fff type=3 attr=000000000000000f
(XEN) [    4.590737]  00000c9ab2000-00000c9ab3fff type=4 attr=000000000000000f
(XEN) [    4.604605]  00000c9ab4000-00000c9ab7fff type=3 attr=000000000000000f
(XEN) [    4.618471]  00000c9ab8000-00000c9ab8fff type=4 attr=000000000000000f
(XEN) [    4.632337]  00000c9ab9000-00000c9abefff type=3 attr=000000000000000f
(XEN) [    4.646203]  00000c9abf000-00000c9abffff type=4 attr=000000000000000f
(XEN) [    4.660072]  00000c9ac0000-00000c9acbfff type=3 attr=000000000000000f
(XEN) [    4.673938]  00000c9acc000-00000c9accfff type=4 attr=000000000000000f
(XEN) [    4.687805]  00000c9acd000-00000c9acefff type=3 attr=000000000000000f
(XEN) [    4.701670]  00000c9acf000-00000c9ad0fff type=4 attr=000000000000000f
(XEN) [    4.715538]  00000c9ad1000-00000c9ad1fff type=3 attr=000000000000000f
(XEN) [    4.729404]  00000c9ad2000-00000c9ad2fff type=4 attr=000000000000000f
(XEN) [    4.743269]  00000c9ad3000-00000c9aeefff type=3 attr=000000000000000f
(XEN) [    4.757138]  00000c9aef000-00000c9af1fff type=4 attr=000000000000000f
(XEN) [    4.771004]  00000c9af2000-00000c9af3fff type=3 attr=000000000000000f
(XEN) [    4.784872]  00000c9af4000-00000c9af7fff type=4 attr=000000000000000f
(XEN) [    4.798738]  00000c9af8000-00000c9afbfff type=3 attr=000000000000000f
(XEN) [    4.812603]  00000c9afc000-00000c9afdfff type=4 attr=000000000000000f
(XEN) [    4.826471]  00000c9afe000-00000c9b07fff type=3 attr=000000000000000f
(XEN) [    4.840336]  00000c9b08000-00000c9f07fff type=4 attr=000000000000000f
(XEN) [    4.854203]  00000c9f08000-00000c9f27fff type=3 attr=000000000000000f
(XEN) [    4.868072]  00000c9f28000-00000c9f29fff type=4 attr=000000000000000f
(XEN) [    4.881937]  00000c9f2a000-00000c9f2bfff type=3 attr=000000000000000f
(XEN) [    4.895803]  00000c9f2c000-00000c9f2dfff type=4 attr=000000000000000f
(XEN) [    4.909671]  00000c9f2e000-00000c9f2efff type=3 attr=000000000000000f
(XEN) [    4.923538]  00000c9f2f000-00000c9f2ffff type=4 attr=000000000000000f
(XEN) [    4.937406]  00000c9f30000-00000c9f30fff type=3 attr=000000000000000f
(XEN) [    4.951272]  00000c9f31000-00000c9f31fff type=4 attr=000000000000000f
(XEN) [    4.965137]  00000c9f32000-00000c9f36fff type=3 attr=000000000000000f
(XEN) [    4.979003]  00000c9f37000-00000c9f3afff type=4 attr=000000000000000f
(XEN) [    4.992872]  00000c9f3b000-00000c9f3bfff type=3 attr=000000000000000f
(XEN) [    5.006737]  00000c9f3c000-00000c9f3cfff type=4 attr=000000000000000f
(XEN) [    5.020603]  00000c9f3d000-00000c9f3dfff type=3 attr=000000000000000f
(XEN) [    5.034470]  00000c9f3e000-00000ca411fff type=4 attr=000000000000000f
(XEN) [    5.048337]  00000ca412000-00000ca413fff type=3 attr=000000000000000f
(XEN) [    5.062203]  00000ca414000-00000ca415fff type=4 attr=000000000000000f
(XEN) [    5.076069]  00000ca416000-00000ca41cfff type=3 attr=000000000000000f
(XEN) [    5.089936]  00000ca41d000-00000ca41dfff type=4 attr=000000000000000f
(XEN) [    5.103804]  00000ca41e000-00000ca41efff type=3 attr=000000000000000f
(XEN) [    5.117672]  00000ca41f000-00000ca488fff type=4 attr=000000000000000f
(XEN) [    5.131538]  00000ca489000-00000ca489fff type=3 attr=000000000000000f
(XEN) [    5.145404]  00000ca48a000-00000ca48bfff type=4 attr=000000000000000f
(XEN) [    5.159272]  00000ca48c000-00000ca48cfff type=3 attr=000000000000000f
(XEN) [    5.173139]  00000ca48d000-00000ca491fff type=4 attr=000000000000000f
(XEN) [    5.187004]  00000ca492000-00000ca494fff type=3 attr=000000000000000f
(XEN) [    5.200870]  00000ca495000-00000cabc8fff type=4 attr=000000000000000f
(XEN) [    5.214736]  00000cabc9000-00000cc14cfff type=0 attr=000000000000000f
(XEN) [    5.228605]  00000cc14d000-00000cc195fff type=9 attr=000000000000000f
(XEN) [    5.242471]  00000cc196000-00000cc388fff type=10 attr=000000000000000f
(XEN) [    5.256511]  00000cc389000-00000cc389fff type=0 attr=000000000000000f
(XEN) [    5.270376]  00000cc38a000-00000cc709fff type=10 attr=000000000000000f
(XEN) [    5.284419]  00000cc70a000-00000cd179fff type=6 attr=800000000000000f
(XEN) [    5.298285]  00000cd17a000-00000cd1fefff type=5 attr=800000000000000f
(XEN) [    5.312152]  00000cd1ff000-00000cd7fffff type=4 attr=000000000000000f
(XEN) [    5.326018]  00000cd800000-00000cd8e9fff type=7 attr=000000000000000f
(XEN) [    5.339884]  00000cd8ea000-00000cd9e9fff type=4 attr=000000000000000f
(XEN) [    5.353750]  00000cd9ea000-00000cda05fff type=3 attr=000000000000000f
(XEN) [    5.367618]  00000cda06000-00000cda31fff type=4 attr=000000000000000f
(XEN) [    5.381484]  00000cda32000-00000cda44fff type=3 attr=000000000000000f
(XEN) [    5.395350]  00000cda45000-00000cdf57fff type=4 attr=000000000000000f
(XEN) [    5.409219]  00000cdf58000-00000cdf5afff type=3 attr=000000000000000f
(XEN) [    5.423085]  00000cdf5b000-00000cdf6dfff type=4 attr=000000000000000f
(XEN) [    5.436951]  00000cdf6e000-00000cdf77fff type=3 attr=000000000000000f
(XEN) [    5.450817]  00000cdf78000-00000cdf91fff type=4 attr=000000000000000f
(XEN) [    5.464683]  00000cdf92000-00000cdf97fff type=3 attr=000000000000000f
(XEN) [    5.478552]  00000cdf98000-00000cdfadfff type=4 attr=000000000000000f
(XEN) [    5.492418]  00000cdfae000-00000cdfb1fff type=3 attr=000000000000000f
(XEN) [    5.506284]  00000cdfb2000-00000cdfc5fff type=4 attr=000000000000000f
(XEN) [    5.520150]  00000cdfc6000-00000cdfcafff type=3 attr=000000000000000f
(XEN) [    5.534019]  00000cdfcb000-00000cdfdffff type=4 attr=000000000000000f
(XEN) [    5.547883]  00000cdfe0000-00000cdff1fff type=3 attr=000000000000000f
(XEN) [    5.561752]  00000cdff2000-00000cdff9fff type=4 attr=000000000000000f
(XEN) [    5.575619]  00000cdffa000-00000cdffffff type=3 attr=000000000000000f
(XEN) [    5.589485]  0000100000000-000080f33ffff type=7 attr=000000000000000f
(XEN) [    5.603350]  00000000a0000-00000000fffff type=0 attr=000000000000000f
(XEN) [    5.617217]  00000ce000000-00000cfffffff type=0 attr=000000000000000f
(XEN) [    5.631085]  00000f0000000-00000f7ffffff type=11 attr=800000000000100d
(XEN) [    5.645125]  00000fd000000-00000fedfffff type=11 attr=800000000000100d
(XEN) [    5.659163]  00000fee00000-00000fee00fff type=11 attr=8000000000000001
(XEN) [    5.673204]  00000fee01000-00000ffffffff type=11 attr=800000000000100d
(XEN) [    5.687243]  000080f340000-000082fffffff type=0 attr=000000000000000f
(XEN) [    5.701111]  0000830000000-00008501fffff type=11 attr=800000000000100d
(XEN) [    5.715152] alt table ffff82d0404a1ff8 -> ffff82d0404b3ef8
(XEN) [    5.740321] AMD-Vi: IOMMU Extended Features:
(XEN) [    5.749854] - Peripheral Page Service Request
(XEN) [    5.759559] - x2APIC
(XEN) [    5.764933] - NX bit
(XEN) [    5.770307] - Invalidate All Command
(XEN) [    5.778454] - Guest APIC
(XEN) [    5.784520] - Performance Counters
(XEN) [    5.792320] - Host Address Translation Size: 0x2
(XEN) [    5.802546] - Guest Address Translation Size: 0
(XEN) [    5.812599] - Guest CR3 Root Table Level: 0x1
(XEN) [    5.822304] - Maximum PASID: 0xf
(XEN) [    5.829760] - SMI Filter Register: 0x1
(XEN) [    5.838254] - SMI Filter Register Count: 0x1
(XEN) [    5.847786] - Guest Virtual APIC Modes: 0x1
(XEN) [    5.857145] - Dual PPR Log: 0x2
(XEN) [    5.864427] - Dual Event Log: 0x2
(XEN) [    5.872052] - User / Supervisor Page Protection
(XEN) [    5.882107] - Device Table Segmentation: 0x3
(XEN) [    5.891640] - PPR Log Overflow Early Warning
(XEN) [    5.901173] - PPR Automatic Response
(XEN) [    5.909319] - Memory Access Routing and Control: 0
(XEN) [    5.919891] - Block StopMark Message
(XEN) [    5.928040] - Performance Optimization
(XEN) [    5.936533] - MSI Capability MMIO Access
(XEN) [    5.945372] - Guest I/O Protection
(XEN) [    5.953172] - Enhanced PPR Handling
(XEN) [    5.961144] - Attribute Forward
(XEN) [    5.968426] - Invalidate IOTLB Type
(XEN) [    5.976400] - VM Table Size: 0
(XEN) [    5.983506] - Guest Access Bit Update Disable
(XEN) [    6.004376] AMD-Vi: Disabled HAP memory map sharing with IOMMU
(XEN) [    6.017028] AMD-Vi: IOMMU 0 Enabled.
(XEN) [    6.025174] I/O virtualisation enabled
(XEN) [    6.033668]  - Dom0 mode: Relaxed
(XEN) [    6.041296] Interrupt remapping enabled
(XEN) [    6.049962] nr_sockets: 1
(XEN) [    6.056201] Enabling APIC mode.  Using 2 I/O APICs
(XEN) [    6.067207] ENABLING IO-APIC IRQs
(XEN) [    6.074834]  -> Using new ACK method
(XEN) [    6.082981] ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) [    6.245672] Wallclock source: CMOS RTC
(XEN) [    7.026271] Allocated console ring of 128 KiB.
(XEN) [    7.036152] mwait-idle: does not run on family 23 model 96
(XEN) [    7.048113] HVM: ASIDs enabled.
(XEN) [    7.055390] SVM: Supported advanced features:
(XEN) [    7.065098]  - Nested Page Tables (NPT)
(XEN) [    7.073764]  - Last Branch Record (LBR) Virtualisation
(XEN) [    7.085031]  - Next-RIP Saved on #VMEXIT
(XEN) [    7.093871]  - VMCB Clean Bits
(XEN) [    7.100978]  - TLB flush by ASID
(XEN) [    7.108430]  - DecodeAssists
(XEN) [    7.115190]  - Virtual VMLOAD/VMSAVE
(XEN) [    7.123337]  - Virtual GIF
(XEN) [    7.129751]  - Pause-Intercept Filter
(XEN) [    7.138071]  - Pause-Intercept Filter Threshold
(XEN) [    7.148124]  - TSC Rate MSR
(XEN) [    7.154712]  - MSR_SPEC_CTRL virtualisation
(XEN) [    7.164071] HVM: SVM enabled
(XEN) [    7.170833] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    7.182444] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    7.498736] Brought up 16 CPUs
(XEN) [    7.506709] Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) [    7.519880] Initializing null scheduler
(XEN) [    7.528548] WARNING: This is experimental software in development.
(XEN) [    7.541894] Use at your own risk.
(XEN) [    7.549523] mcheck_poll: Machine check polling timer started.
(XEN) [    7.562000] Running stub recovery selftests...
(XEN) [    7.571881] Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038f9d0
(XEN) [    7.588349] Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038f9d0
(XEN) [    7.604815] Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038f9d0
(XEN) [    7.621283] Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038f9d0
(XEN) [    7.657770] NX (Execute Disable) protection active
(XEN) [    7.668344] d0 has maximum 3328 PIRQs
(XEN) [    7.676708] *** Building a PVH Dom0 ***
(XEN) [    7.689266] d0: identity mappings for IOMMU:
(XEN) [    7.698799]  [00000000a0, 00000000ff] RW
(XEN) [    7.707637]  [0000009bff, 0000009fff] RW
(XEN) [    7.716479]  [00000cabc9, 00000cc14c] RW
(XEN) [    7.725467]  [00000cc389, 00000cc389] RW
(XEN) [    7.734305]  [00000cc70a, 00000cd1fe] RW
(XEN) [    7.743673]  [00000ce000, 00000cffff] RW
(XEN) [    7.752514]  [00000fd000, 00000fd2ff] RW
(XEN) [    7.761356]  [00000fd304, 00000febff] RW
(XEN) [    7.770193]  [00000fec02, 00000fedff] RW
(XEN) [    7.779294]  [00000fee01, 00000fffff] RW
(XEN) [    7.788404]  [000080f340, 00008501ff] RW
(XEN) [    7.798258] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [    7.812817] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [    7.827378] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
(XEN) [    7.841936] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
(XEN) [    7.856515] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [    7.871074] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [    7.885635] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [    7.900193] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [    8.042831] Dom0 memory allocation stats:
(XEN) [    8.051844] order  0 allocations: 4
(XEN) [    8.059816] order  1 allocations: 2
(XEN) [    8.067790] order  2 allocations: 2
(XEN) [    8.075765] order  3 allocations: 2
(XEN) [    8.083737] order  4 allocations: 2
(XEN) [    8.091711] order  5 allocations: 4
(XEN) [    8.099684] order  6 allocations: 3
(XEN) [    8.107660] order  7 allocations: 5
(XEN) [    8.115631] order  8 allocations: 4
(XEN) [    8.123605] order  9 allocations: 6
(XEN) [    8.131576] order 10 allocations: 3
(XEN) [    8.139551] order 11 allocations: 6
(XEN) [    8.147523] order 12 allocations: 3
(XEN) [    8.155496] order 13 allocations: 2
(XEN) [    8.163472] order 14 allocations: 3
(XEN) [    8.171442] order 15 allocations: 1
(XEN) [    8.179416] order 16 allocations: 2
(XEN) [    8.187392] order 17 allocations: 2
(XEN) [    8.195365] order 18 allocations: 2
(XEN) [    8.525902] ELF: phdr: paddr=0x1000000 memsz=0x191fec4
(XEN) [    8.537169] ELF: phdr: paddr=0x2a00000 memsz=0x878000
(XEN) [    8.548262] ELF: phdr: paddr=0x3278000 memsz=0x2fed8
(XEN) [    8.559183] ELF: phdr: paddr=0x32a8000 memsz=0x588000
(XEN) [    8.570274] ELF: memory: 0x1000000 -> 0x3830000
(XEN) [    8.580330] ELF: note: PHYS32_ENTRY = 0x1000000
(XEN) [    8.590383] ELF: note: GUEST_OS = "linux"
(XEN) [    8.599395] ELF: note: GUEST_VERSION = "2.6"
(XEN) [    8.608929] ELF: note: XEN_VERSION = "xen-3.0"
(XEN) [    8.618808] ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) [    8.629902] ELF: note: INIT_P2M = 0x8000000000
(XEN) [    8.639780] ELF: note: ENTRY = 0xffffffff832bab70
(XEN) [    8.650181] ELF: note: FEATURES = "!writable_page_tables"
(XEN) [    8.661970] ELF: note: PAE_MODE = "yes"
(XEN) [    8.670637] ELF: note: L1_MFN_VALID
(XEN) [    8.678609] ELF: note: MOD_START_PFN = 0x1
(XEN) [    8.687797] ELF: note: PADDR_OFFSET = 0
(XEN) [    8.696462] ELF: note: HYPERCALL_PAGE = 0xffffffff81f84000
(XEN) [    8.708422] ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) [    8.718995] ELF: note: LOADER = "generic"
(XEN) [    8.728007] ELF: note: SUSPEND_CANCEL = 0x1
(XEN) [    8.737370] ELF: Found PVH image
(XEN) [    8.744821] ELF: addresses:
(XEN) [    8.751411]     virt_base        = 0x0
(XEN) [    8.759903]     elf_paddr_offset = 0x0
(XEN) [    8.768397]     virt_offset      = 0x0
(XEN) [    8.776889]     virt_kstart      = 0x1000000
(XEN) [    8.786422]     virt_kend        = 0x3830000
(XEN) [    8.795957]     virt_entry       = 0x1000000
(XEN) [    8.805491]     p2m_base         = 0x8000000000
(XEN) [    8.815541] ELF: phdr 0 at 0x1000000 -> 0x291fec4
(XEN) [    8.832643] ELF: phdr 1 at 0x2a00000 -> 0x3278000
(XEN) [    8.845078] ELF: phdr 2 at 0x3278000 -> 0x32a7ed8
(XEN) [    8.855477] ELF: phdr 3 at 0x32a8000 -> 0x3561000
(XEN) [    8.925989] Dom0 memory map:
(XEN) [    8.932750]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [    8.944708]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [    8.957016]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [    8.968976]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [    8.981284]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [    8.993242]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [    9.005551]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [    9.017511]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [    9.029816]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [    9.042296]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [    9.054604]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [    9.066911]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [    9.079217]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [    9.091524]  [00000000cd1ff000, 00000000cdfffea7] (usable)
(XEN) [    9.103482]  [00000000cdfffea8, 00000000cdffff3f] (ACPI data)
(XEN) [    9.115965]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [    9.128270]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [    9.140575]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [    9.152883]  [0000000100000000, 0000000134aa3fff] (usable)
(XEN) [    9.164845]  [0000000134aa4000, 000000080f33ffff] (unusable)
(XEN) [    9.177150]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [    9.189457] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    9.202804] Scrubbing Free RAM in background
(XEN) [    9.212336] Std. Loglevel: All
(XEN) [    9.219443] Guest Loglevel: All
(XEN) [    9.226723] ***************************************************
(XEN) [    9.239549] WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) [    9.250124] This option is intended to aid debugging of Xen by ensuring
(XEN) [    9.264335] that all output is synchronously delivered on the serial line.
(XEN) [    9.279068] However it can introduce SIGNIFICANT latencies and affect
(XEN) [    9.292935] timekeeping. It is NOT recommended for production use!
(XEN) [    9.306284] ***************************************************
(XEN) [    9.319111] 3... 2... 1...
(XEN) [   12.325532] *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) [   12.341487] common/sched/null.c:357: 0 <-- d0v0
(XEN) [   12.351586] Freed 660kB init memory
[    0.000000] Linux version 6.11.0-rt1 (sstabellini@ubuntu-linux-20-04-desktop) (x86_64-linux-gnu-gcc (Ubuntu 9.4.0-1ubuntu1~20.04.2) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #582 SMP PREEMPT_DYNAMIC Thu Apr  3 17:37:42 PDT 2025
[    0.000000] Command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug rdinit=/bin/sh
[    0.000000] [Firmware Bug]: TSC doesn't count with P0 frequency!
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009bff000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x00000000cabc8fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cabc9000-0x00000000cc14cfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc14d000-0x00000000cc195fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cc196000-0x00000000cc388fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cc389000-0x00000000cc389fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc38a000-0x00000000cc709fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cc70a000-0x00000000cd1fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cd1ff000-0x00000000cdfffea7] usable
[    0.000000] BIOS-e820: [mem 0x00000000cdfffea8-0x00000000cdffff3f] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000ce000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000080f33ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000080f340000-0x00000008501fffff] reserved
[    0.000000] printk: legacy bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by American Megatrends
[    0.000000] efi: ACPI=0xcc6f3000 ACPI 2.0=0xcc6f3014 TPMFinalLog=0xcc6c2000 SMBIOS=0xccfd6000 SMBIOS 3.0=0xccfd5000 (MEMATTR=0xc7a93298 unusable) ESRT=0xcc15a018
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI:  /7D785 / 7D786, BIOS 5.16 02/24/2025
[    0.000000] DMI: Memory slots populated: 2/2
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.21.
[    0.000004] HVMOP_pagetable_dying not supported
[    0.054211] tsc: Fast TSC calibration failed
[    0.062395] tsc: Detected 2894.560 MHz processor
[    0.071715] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.084928] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.096025] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
[    0.106994] MTRR map: 4 entries (3 fixed + 1 variable; max 20), built from 9 variable MTRRs
[    0.123583] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.138005] CPU MTRRs all blank - virtualized system.
[    0.147761] last_pfn = 0xcdfff max_arch_pfn = 0x400000000
[    0.162009] esrt: Reserving ESRT space from 0x00000000cc15a018 to 0x00000000cc15a050.
[    0.177303] Using GB pages for direct mapping
[    0.186728] Secure boot disabled
[    0.192829] RAMDISK: [mem 0x0a20d000-0x16c40fff]
[    0.202460] ACPI: Early table checksum verification disabled
[    0.213417] ACPI: RSDP 0x00000000CDFFFEA8 000024 (v02 ALASKA)
[    0.224853] ACPI: XSDT 0x00000000CDFFFECC 00009C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.241841] ACPI: APIC 0x00000000CDFFFF68 000098 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.258829] ACPI: FACP 0x00000000CC18C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.275852] ACPI: DSDT 0x00000000CC183000 00876D (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.292801] ACPI: FACS 0x00000000CC6C0000 000040
[    0.301989] ACPI: SSDT 0x00000000CC18E000 00723C (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.318975] ACPI: MCFG 0x00000000CC181000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.335962] ACPI: SSDT 0x00000000CC17F000 000228 (v01 AMD    STD3     00000001 INTL 20120913)
[    0.352948] ACPI: VFCT 0x00000000CC171000 00D684 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.369934] ACPI: SSDT 0x00000000CC16B000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.386923] ACPI: SSDT 0x00000000CC168000 000139 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.403909] ACPI: SSDT 0x00000000CC167000 000227 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.420896] ACPI: SSDT 0x00000000CC166000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.437882] ACPI: SSDT 0x00000000CC164000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.454867] ACPI: SSDT 0x00000000CC160000 0030C8 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.471854] ACPI: SSDT 0x00000000CC15D000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.488842] ACPI: SSDT 0x00000000CC15C000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.505827] ACPI: FPDT 0x00000000CC15B000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.522812] ACPI: Reserving APIC table memory at [mem 0xcdffff68-0xcdffffff]
[    0.536853] ACPI: Reserving FACP table memory at [mem 0xcc18c000-0xcc18c113]
[    0.550891] ACPI: Reserving DSDT table memory at [mem 0xcc183000-0xcc18b76c]
[    0.564933] ACPI: Reserving FACS table memory at [mem 0xcc6c0000-0xcc6c003f]
[    0.578972] ACPI: Reserving SSDT table memory at [mem 0xcc18e000-0xcc19523b]
[    0.593013] ACPI: Reserving MCFG table memory at [mem 0xcc181000-0xcc18103b]
[    0.607051] ACPI: Reserving SSDT table memory at [mem 0xcc17f000-0xcc17f227]
[    0.621093] ACPI: Reserving VFCT table memory at [mem 0xcc171000-0xcc17e683]
[    0.635133] ACPI: Reserving SSDT table memory at [mem 0xcc16b000-0xcc16e9f3]
[    0.649172] ACPI: Reserving SSDT table memory at [mem 0xcc168000-0xcc168138]
[    0.663211] ACPI: Reserving SSDT table memory at [mem 0xcc167000-0xcc167226]
[    0.677252] ACPI: Reserving SSDT table memory at [mem 0xcc166000-0xcc166d36]
[    0.691293] ACPI: Reserving SSDT table memory at [mem 0xcc164000-0xcc1650a4]
[    0.705332] ACPI: Reserving SSDT table memory at [mem 0xcc160000-0xcc1630c7]
[    0.719371] ACPI: Reserving SSDT table memory at [mem 0xcc15d000-0xcc15d07c]
[    0.733412] ACPI: Reserving SSDT table memory at [mem 0xcc15c000-0xcc15c516]
[    0.747452] ACPI: Reserving FPDT table memory at [mem 0xcc15b000-0xcc15b043]
[    0.761634] No NUMA configuration found
[    0.769119] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
[    0.782466] NODE_DATA(0) allocated [mem 0x134a9f000-0x134aa2fff]
[    0.794454] Zone ranges:
[    0.799453]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.811758]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.824065]   Normal   [mem 0x0000000100000000-0x000000080f33ffff]
[    0.836373] Movable zone start for each node
[    0.844867] Early memory node ranges
[    0.851971]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.864452]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.877488]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.889654]   node   0: [mem 0x000000000a20d000-0x00000000cabc8fff]
[    0.902134]   node   0: [mem 0x00000000cd1ff000-0x00000000cdffefff]
[    0.914613]   node   0: [mem 0x0000000100000000-0x000000080f33ffff]
[    0.927098] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
[    0.941140] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.952764] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.964656] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.981628] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.993560] On node 0, zone DMA32: 9782 pages in unavailable ranges
[    1.049769] On node 0, zone Normal: 8193 pages in unavailable ranges
[    1.062149] On node 0, zone Normal: 3264 pages in unavailable ranges
[    1.075213] ACPI: PM-Timer IO Port: 0x808
[    1.082922] IOAPIC[0]: apic_id 17, version 17, address 0xfec00000, GSI 0-23
[    1.096770] IOAPIC[1]: apic_id 18, version 17, address 0xfec01000, GSI 24-55
[    1.110778] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    1.123431] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    1.136432] ACPI: Using ACPI (MADT) for SMP configuration information
[    1.149262] CPU topo: Max. logical packages:   1
[    1.158443] CPU topo: Max. logical dies:       1
[    1.167630] CPU topo: Max. dies per package:   1
[    1.176819] CPU topo: Max. threads per core:   1
[    1.186003] CPU topo: Num. cores per package:     4
[    1.195710] CPU topo: Num. threads per package:   4
[    1.205415] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    1.217563] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    1.232630] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    1.247710] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    1.262789] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[    1.277868] PM: hibernation: Registered nosave memory: [mem 0xcabc9000-0xcc14cfff]
[    1.292949] PM: hibernation: Registered nosave memory: [mem 0xcc14d000-0xcc195fff]
[    1.308030] PM: hibernation: Registered nosave memory: [mem 0xcc196000-0xcc388fff]
[    1.323110] PM: hibernation: Registered nosave memory: [mem 0xcc389000-0xcc389fff]
[    1.338190] PM: hibernation: Registered nosave memory: [mem 0xcc38a000-0xcc709fff]
[    1.353270] PM: hibernation: Registered nosave memory: [mem 0xcc70a000-0xcd1fefff]
[    1.368348] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    1.383429] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    1.398508] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xcfffffff]
[    1.413589] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
[    1.428670] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    1.443748] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
[    1.458829] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    1.473912] [mem 0xd0000000-0xefffffff] available for PCI devices
[    1.486049] Booting kernel on Xen PVH
[    1.493322] Xen version: 4.21-unstable
[    1.500780] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    1.526001] setup_percpu: NR_CPUS:64 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    1.540817] percpu: Embedded 57 pages/cpu s196312 r8192 d28968 u524288
[    1.553592] pcpu-alloc: s196312 r8192 d28968 u524288 alloc=1*2097152
[    1.566245] pcpu-alloc: [0] 0 1 2 3
[    1.573375] Kernel command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug rdinit=/bin/sh
[    1.591103] random: crng init done
[    1.598122] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    1.613781] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.629037] Fallback order for Node 0: 0
[    1.629040] Built 1 zonelists, mobility grouping on.  Total pages: 8235162
[    1.650674] Policy zone: Normal
[    1.656916] mem auto-init: stack:off, heap alloc:off, heap free:off
[    1.669400] software IO TLB: area num 4.
[    1.754706] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Poking KASLR using RDRAND RDTSC...
[    1.774680] Dynamic Preempt: voluntary
[    1.781840] rcu: Preemptible hierarchical RCU implementation.
[    1.793259] rcu: 	RCU event tracing is enabled.
[    1.802271] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    1.815445] 	Trampoline variant of Tasks RCU enabled.
[    1.825499] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.840753] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.854104] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    1.869391] Using NULL legacy PIC
[    1.875662] NR_IRQS: 4352, nr_irqs: 1000, preallocated irqs: 0
[    1.887610] xen:events: Using FIFO-based ABI
(XEN) [   14.719882] d0v0: upcall vector f3
[    1.903590] xen:events: Xen HVM callback vector for event delivery is enabled
[    1.917826] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.931532] Console: colour dummy device 80x25
[    1.940333] printk: legacy console [tty0] enabled
[    1.949906] printk: legacy console [hvc0] enabled

[    1.949906] printk: legacy console [hvc0] enabled
[    1.968586] printk: legacy bootconsole [xenboot0] disabled

[    1.968586] printk: legacy bootconsole [xenboot0] disabled
[    1.990609] ACPI: Core revision 20240322

[    2.017161] Failed to register legacy timer interrupt

[    2.027079] APIC: Switch to symmetric I/O mode setup

[    2.037886] x2apic enabled

[    2.043992] APIC: Switched APIC routing to: physical x2apic

[    2.055029] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29b92fd203a, max_idle_ns: 440795232918 ns

[    2.076091] Calibrating delay loop (skipped), value calculated using timer frequency.. 5789.12 BogoMIPS (lpj=2894560)

[    2.077089] x86/cpu: User Mode Instruction Prevention (UMIP) activated

[    2.077089] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512

[    2.077089] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0

[    2.077089] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization

[    2.077089] Spectre V2 : Mitigation: Retpolines

[    2.077089] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch

[    2.077089] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT

[    2.077089] Spectre V2 : Enabling Speculation Barrier for firmware calls

[    2.077089] RETBleed: Mitigation: untrained return thunk

[    2.077089] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier

[    2.077089] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl

[    2.077089] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'

[    2.077089] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'

[    2.077089] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'

[    2.077089] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256

[    2.077089] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.

[    2.077089] Freeing SMP alternatives memory: 48K

[    2.077089] pid_max: default: 32768 minimum: 301

[    2.077089] LSM: initializing lsm=capability,selinux

[    2.077089] SELinux:  Initializing.

[    2.077089] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)

[    2.077089] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)

[    2.077089] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns

[    2.077089] Xen: using vcpuop timer interface

[    2.077089] installing Xen timer for CPU 0

[    2.077089] smpboot: CPU0: AMD Ryzen Embedded V2748 with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)

[    2.077203] Performance Events: PMU not available due to virtualization, using software events only.

[    2.078109] signal: max sigframe size: 1776

[    2.079109] rcu: Hierarchical SRCU implementation.

[    2.080094] rcu: 	Max phase no-delay instances is 400.

[    2.081120] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level

[    2.084735] smp: Bringing up secondary CPUs ...

[    2.085146] installing Xen timer for CPU 1

[    2.086156] smpboot: x86: Booting SMP configuration:

(XEN) [   15.382371] common/sched/null.c:357: 1 <-- d0v1
[    2.087095] .... node  #0, CPUs:      #1

[    2.088508] installing Xen timer for CPU 2

(XEN) [   15.408917] common/sched/null.c:357: 2 <-- d0v2
[    2.090176]  #2

[    2.091594] installing Xen timer for CPU 3

(XEN) [   15.431140] common/sched/null.c:357: 3 <-- d0v3
[    2.093181]  #3

[    2.097162] smp: Brought up 1 node, 4 CPUs

[    2.099096] smpboot: Total of 4 processors activated (23156.48 BogoMIPS)

[    2.101139] Memory: 3352128K/32940648K available (18432K kernel code, 2919K rwdata, 7296K rodata, 2928K init, 2684K bss, 29584568K reserved, 0K cma-reserved)

[    2.102849] devtmpfs: initialized

[    2.103117] x86/mm: Memory block size: 128MB

[    2.106215] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)

[    2.107096] ACPI: PM: Registering ACPI NVS region [mem 0xcc196000-0xcc388fff] (2043904 bytes)

[    2.108113] ACPI: PM: Registering ACPI NVS region [mem 0xcc38a000-0xcc709fff] (3670016 bytes)

[    2.109150] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns

[    2.110097] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)

[    2.111160] PM: RTC time: 00:29:22, date: 2025-04-26

[    2.112294] NET: Registered PF_NETLINK/PF_ROUTE protocol family

[    2.113109] xen:grant_table: Grant tables using version 1 layout

[    2.114112] Grant table initialized

[    2.115190] audit: initializing netlink subsys (disabled)

[    2.116112] audit: type=2000 audit(1745627363.045:1): state=initialized audit_enabled=0 res=1

[    2.116146] thermal_sys: Registered thermal governor 'step_wise'

[    2.132098] thermal_sys: Registered thermal governor 'user_space'

[    2.144106] cpuidle: using governor menu

[    2.165324] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]

[    2.181111] PCI: Using configuration type 1 for base access

[    2.192156] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.

[    2.210386] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages

[    2.224096] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page

[    2.237096] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages

[    2.251095] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page

[    2.263149] ACPI: Added _OSI(Module Device)

[    2.272096] ACPI: Added _OSI(Processor Device)

[    2.281095] ACPI: Added _OSI(3.0 _SCP Extensions)

[    2.290095] ACPI: Added _OSI(Processor Aggregator Device)

[    2.312703] ACPI: 11 ACPI AML tables successfully acquired and loaded

(XEN) [   15.870448] d0: bind: m_gsi=9 g_gsi=9
[    2.334604] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored

[    2.349778] ACPI: Interpreter enabled

[    2.356105] ACPI: PM: (supports S0 S3 S4 S5)

[    2.365096] ACPI: Using IOAPIC for interrupt routing

[    2.375316] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug

[    2.393103] PCI: Ignoring E820 reservations for host bridge windows

[    2.405466] ACPI: Enabled 6 GPEs in block 00 to 1F

[    2.416609] ACPI: \_SB_.P0S0: New power resource

[    2.426116] ACPI: \_SB_.P3S0: New power resource

[    2.435147] ACPI: \_SB_.P0S1: New power resource

[    2.444113] ACPI: \_SB_.P3S1: New power resource

[    2.459264] ACPI: \_SB_.PRWL: New power resource

[    2.468113] ACPI: \_SB_.PRWB: New power resource

[    2.478439] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])

[    2.490098] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]

[    2.508230] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability LTR]

[    2.522109] acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge

[    2.547389] PCI host bridge to bus 0000:00

[    2.555100] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]

[    2.569096] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]

[    2.582096] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]

[    2.596095] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]

[    2.609096] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]

[    2.624096] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]

[    2.639096] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]

[    2.654096] pci_bus 0000:00: root bus resource [mem 0x830000000-0xffffffffff window]

[    2.669096] pci_bus 0000:00: root bus resource [bus 00-ff]

[    2.680125] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.246325] PCI add device 0000:00:00.0
[    2.705123] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint

(XEN) [   16.271631] PCI add device 0000:00:00.2
[    2.730126] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.296939] PCI add device 0000:00:01.0
[    2.755130] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.322245] PCI add device 0000:00:02.0
[    2.780124] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    2.795144] pci 0000:00:02.1: PCI bridge to [bus 01]

[    2.805119] pci 0000:00:02.1:   bridge window [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    2.821293] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold

(XEN) [   16.384301] PCI add device 0000:00:02.1
[    2.841128] pci 0000:00:02.3: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    2.856142] pci 0000:00:02.3: PCI bridge to [bus 02]

[    2.866106] pci 0000:00:02.3:   bridge window [mem 0xfea00000-0xfeafffff]

[    2.879127] pci 0000:00:02.3: enabling Extended Tags

[    2.889288] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold

(XEN) [   16.453805] PCI add device 0000:00:02.3
[    2.910124] pci 0000:00:02.4: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    2.925141] pci 0000:00:02.4: PCI bridge to [bus 03]

[    2.935103] pci 0000:00:02.4:   bridge window [io  0xf000-0xffff]

[    2.947099] pci 0000:00:02.4:   bridge window [mem 0xfe900000-0xfe9fffff]

[    2.960125] pci 0000:00:02.4: enabling Extended Tags

[    2.970278] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold

(XEN) [   16.535621] PCI add device 0000:00:02.4
[    2.991133] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.560925] PCI add device 0000:00:08.0
[    3.016123] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port

[    3.030147] pci 0000:00:08.1: PCI bridge to [bus 04]

[    3.040103] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]

[    3.053099] pci 0000:00:08.1:   bridge window [mem 0xfe400000-0xfe7fffff]

[    3.066109] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]

[    3.082111] pci 0000:00:08.1: enabling Extended Tags

[    3.091256] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold

(XEN) [   16.658342] PCI add device 0000:00:08.1
[    3.112128] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400 PCIe Root Port

[    3.127142] pci 0000:00:08.2: PCI bridge to [bus 05]

[    3.137107] pci 0000:00:08.2:   bridge window [mem 0xfe800000-0xfe8fffff]

[    3.150122] pci 0000:00:08.2: enabling Extended Tags

[    3.160248] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold

(XEN) [   16.727848] PCI add device 0000:00:08.2
[    3.181147] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint

(XEN) [   16.753157] PCI add device 0000:00:14.0
[    3.206116] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint

(XEN) [   16.778458] PCI add device 0000:00:14.3
[    3.231136] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.803768] PCI add device 0000:00:18.0
[    3.256113] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.829071] PCI add device 0000:00:18.1
[    3.281113] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.854379] PCI add device 0000:00:18.2
[    3.306113] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.879685] PCI add device 0000:00:18.3
[    3.331113] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.904991] PCI add device 0000:00:18.4
[    3.356113] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.930300] PCI add device 0000:00:18.5
[    3.381113] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.955605] PCI add device 0000:00:18.6
[    3.406114] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   16.980917] PCI add device 0000:00:18.7
[    3.431193] pci 0000:01:00.0: [10ee:5700] type 00 class 0x120000 PCIe Endpoint

[    3.445125] pci 0000:01:00.0: BAR 0 [mem 0xffe0000000-0xffefffffff 64bit pref]

[    3.460113] pci 0000:01:00.0: BAR 2 [mem 0xfff8040000-0xfff807ffff 64bit pref]

[    3.474304] pci 0000:01:00.0: supports D1

[    3.482095] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold

(XEN) [   17.054232] PCI add device 0000:01:00.0
[    3.503139] pci 0000:01:00.1: [10ee:5701] type 00 class 0x120000 PCIe Endpoint

[    3.518124] pci 0000:01:00.1: BAR 0 [mem 0xfff8000000-0xfff803ffff 64bit pref]

[    3.532113] pci 0000:01:00.1: BAR 2 [mem 0xfff0000000-0xfff7ffffff 64bit pref]

[    3.546294] pci 0000:01:00.1: supports D1

[    3.554097] pci 0000:01:00.1: PME# supported from D0 D1 D3hot D3cold

(XEN) [   17.127554] PCI add device 0000:01:00.1
[    3.576119] pci 0000:00:02.1: PCI bridge to [bus 01]

[    3.586194] pci 0000:02:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint

(XEN) [   17.160834] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
[    3.600095] pci 0000:02:00.0: BAR 0 [mem 0xfea00000-0xfea03fff 64bit]

(XEN) [   17.188392] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.202954] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.217513] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.232075] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.246637] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   17.261443] PCI add device 0000:02:00.0
[    3.626108] pci 0000:00:02.3: PCI bridge to [bus 02]

[    3.636197] pci 0000:03:00.0: [10ec:8125] type 00 class 0x020000 PCIe Endpoint

(XEN) [   17.294728] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.309288] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    3.651094] pci 0000:03:00.0: BAR 0 [io  0xf000-0xf0ff]

(XEN) [   17.334421] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.348976] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
(XEN) [   17.363537] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.378097] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    3.663095] pci 0000:03:00.0: BAR 2 [mem 0xfe900000-0xfe90ffff 64bit]

(XEN) [   17.405659] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.420218] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    3.676094] pci 0000:03:00.0: BAR 4 [mem 0xfe910000-0xfe913fff 64bit]

(XEN) [   17.447779] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   17.462341] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    3.689328] pci 0000:03:00.0: supports D1 D2

[    3.698095] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold

(XEN) [   17.499034] PCI add device 0000:03:00.0
[    3.720219] pci 0000:00:02.4: PCI bridge to [bus 03]

[    3.730184] pci 0000:04:00.0: [1002:1636] type 00 class 0x030000 PCIe Legacy Endpoint

(XEN) [   17.533888] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    3.747094] pci 0000:04:00.0: BAR 0 [mem 0xd0000000-0xdfffffff 64bit pref]

(XEN) [   17.562671] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    3.761094] pci 0000:04:00.0: BAR 2 [mem 0xe0000000-0xe01fffff 64bit pref]

(XEN) [   17.591439] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    3.776094] pci 0000:04:00.0: BAR 4 [io  0xe000-0xe0ff]

(XEN) [   17.616908] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    3.788094] pci 0000:04:00.0: BAR 5 [mem 0xfe700000-0xfe77ffff]

(XEN) [   17.643776] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
[    3.801103] pci 0000:04:00.0: enabling Extended Tags

[    3.810330] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold

[    3.823188] pci 0000:04:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)

(XEN) [   17.712241] PCI add device 0000:04:00.0
[    3.855126] pci 0000:04:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint

[    3.856113] pci 0000:04:00.1: BAR 0 [mem 0xfe7c8000-0xfe7cbfff]

[    3.857147] pci 0000:04:00.1: enabling Extended Tags

[    3.858176] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold

(XEN) [   17.771556] PCI add device 0000:04:00.1
[    3.860123] pci 0000:04:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint

[    3.861126] pci 0000:04:00.2: BAR 2 [mem 0xfe600000-0xfe6fffff]

[    3.862116] pci 0000:04:00.2: BAR 5 [mem 0xfe7cc000-0xfe7cdfff]

[    3.863111] pci 0000:04:00.2: enabling Extended Tags

(XEN) [   17.828756] PCI add device 0000:04:00.2
[    3.865123] pci 0000:04:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint

(XEN) [   17.851983] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
[    3.867094] pci 0000:04:00.3: BAR 0 [mem 0xfe500000-0xfe5fffff 64bit]

(XEN) [   17.879544] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   17.894101] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   17.908661] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   17.923221] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   17.937783] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
[    3.873105] pci 0000:04:00.3: enabling Extended Tags

[    3.874181] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold

(XEN) [   17.974703] PCI add device 0000:04:00.3
[    3.876123] pci 0000:04:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint

(XEN) [   17.997929] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
[    3.878094] pci 0000:04:00.4: BAR 0 [mem 0xfe400000-0xfe4fffff 64bit]

(XEN) [   18.025489] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.040050] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.054609] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.069168] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   18.083729] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
[    3.884105] pci 0000:04:00.4: enabling Extended Tags

[    3.885181] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold

(XEN) [   18.120649] PCI add device 0000:04:00.4
[    3.887123] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint

[    3.888112] pci 0000:04:00.5: BAR 0 [mem 0xfe780000-0xfe7bffff]

[    3.889146] pci 0000:04:00.5: enabling Extended Tags

[    3.890174] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold

(XEN) [   18.178196] PCI add device 0000:04:00.5
[    3.892121] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint

[    3.893112] pci 0000:04:00.6: BAR 0 [mem 0xfe7c0000-0xfe7c7fff]

[    3.894146] pci 0000:04:00.6: enabling Extended Tags

[    3.895174] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold

(XEN) [   18.235743] PCI add device 0000:04:00.6
[    3.897159] pci 0000:00:08.1: PCI bridge to [bus 04]

[    3.898181] pci 0000:05:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   18.269023] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.283582] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.298141] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.312701] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.327261] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   18.341822] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
[    3.905095] pci 0000:05:00.0: BAR 5 [mem 0xfe801000-0xfe8017ff]

(XEN) [   18.368343] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
[    3.907105] pci 0000:05:00.0: enabling Extended Tags

[    3.908348] pci 0000:05:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)

(XEN) [   18.423981] PCI add device 0000:05:00.0
[    3.910122] pci 0000:05:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   18.447209] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.461769] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.476329] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.490888] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.505447] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   18.520010] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
[    3.917096] pci 0000:05:00.1: BAR 5 [mem 0xfe800000-0xfe8007ff]

(XEN) [   18.546528] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
[    3.919105] pci 0000:05:00.1: enabling Extended Tags

(XEN) [   18.571141] PCI add device 0000:05:00.1
[    3.921133] pci 0000:00:08.2: PCI bridge to [bus 05]

[    3.922707] ACPI: PCI: Interrupt link LNKA configured for IRQ 0

[    3.923139] ACPI: PCI: Interrupt link LNKB configured for IRQ 0

[    3.924132] ACPI: PCI: Interrupt link LNKC configured for IRQ 0

[    3.925141] ACPI: PCI: Interrupt link LNKD configured for IRQ 0

[    3.926136] ACPI: PCI: Interrupt link LNKE configured for IRQ 0

[    3.927129] ACPI: PCI: Interrupt link LNKF configured for IRQ 0

[    3.928129] ACPI: PCI: Interrupt link LNKG configured for IRQ 0

[    3.929129] ACPI: PCI: Interrupt link LNKH configured for IRQ 0

[    3.931025] xen:balloon: Initialising balloon driver

[    4.004521] iommu: Default domain type: Translated

[    4.005098] iommu: DMA domain TLB invalidation policy: lazy mode

[    4.006145] SCSI subsystem initialized

[    4.007107] libata version 3.00 loaded.

[    4.008110] ACPI: bus type USB registered

[    4.009102] usbcore: registered new interface driver usbfs

[    4.010097] usbcore: registered new interface driver hub

[    4.011101] usbcore: registered new device driver usb

[    4.012103] pps_core: LinuxPPS API ver. 1 registered

[    4.013094] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

[    4.014096] PTP clock support registered

[    4.015138] efivars: Registered efivars operations

[    4.016112] Advanced Linux Sound Architecture Driver Initialized.

[    4.017184] NetLabel: Initializing

[    4.018094] NetLabel:  domain hash size = 128

[    4.019094] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO

[    4.020104] NetLabel:  unlabeled traffic allowed by default

[    4.021126] PCI: Using ACPI for IRQ routing

[    4.029984] PCI: pci_cache_line_size set to 64 bytes

[    4.030203] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00

[    4.031095] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00

[    4.032095] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]

[    4.033095] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]

[    4.034094] e820: reserve RAM buffer [mem 0xcabc9000-0xcbffffff]

[    4.035094] e820: reserve RAM buffer [mem 0xcdfffea8-0xcfffffff]

[    4.036095] e820: reserve RAM buffer [mem 0x80f340000-0x80fffffff]

[    4.037112] pci 0000:04:00.0: vgaarb: setting as boot VGA device

[    4.038089] pci 0000:04:00.0: vgaarb: bridge control possible

[    4.038089] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none

[    4.038094] vgaarb: loaded

[    4.039226] clocksource: Switched to clocksource tsc-early

[    4.050126] VFS: Disk quotas dquot_6.6.0

[    4.058044] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)

[    4.071941] pnp: PnP ACPI init

[    4.078229] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved

[    4.091701] system 00:02: [io  0x0a00-0x0a0f] has been reserved

[    4.103457] system 00:02: [io  0x0a10-0x0a1f] has been reserved

[    4.115411] system 00:02: [io  0x0a20-0x0a2f] has been reserved

[    4.127613] pnp 00:03: [dma 0 disabled]

[    4.135408] pnp 00:04: [dma 0 disabled]

[    4.143205] system 00:05: [io  0x04d0-0x04d1] has been reserved

[    4.154932] system 00:05: [io  0x040b] has been reserved

[    4.165681] system 00:05: [io  0x04d6] has been reserved

[    4.176428] system 00:05: [io  0x0c00-0x0c01] has been reserved

[    4.188384] system 00:05: [io  0x0c14] has been reserved

[    4.199130] system 00:05: [io  0x0c50-0x0c51] has been reserved

[    4.211093] system 00:05: [io  0x0c52] has been reserved

[    4.221838] system 00:05: [io  0x0c6c] has been reserved

[    4.232590] system 00:05: [io  0x0c6f] has been reserved

[    4.243330] system 00:05: [io  0x0cd0-0x0cd1] has been reserved

[    4.255293] system 00:05: [io  0x0cd2-0x0cd3] has been reserved

[    4.267252] system 00:05: [io  0x0cd4-0x0cd5] has been reserved

[    4.279213] system 00:05: [io  0x0cd6-0x0cd7] has been reserved

[    4.291173] system 00:05: [io  0x0cd8-0x0cdf] has been reserved

[    4.303132] system 00:05: [io  0x0800-0x089f] has been reserved

[    4.315094] system 00:05: [io  0x0b00-0x0b0f] has been reserved

[    4.327050] system 00:05: [io  0x0b20-0x0b3f] has been reserved

[    4.339013] system 00:05: [io  0x0900-0x090f] has been reserved

[    4.350974] system 00:05: [io  0x0910-0x091f] has been reserved

[    4.362928] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved

[    4.376966] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved

[    4.391013] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved

[    4.404351] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved

[    4.417698] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved

[    4.431746] system 00:05: [mem 0xfec10000-0xfec10fff] could not be reserved

[    4.445779] system 00:05: [mem 0xff000000-0xffffffff] has been reserved

[    4.459835] pnp: PnP ACPI: found 6 devices

[    4.475736] PM-Timer failed consistency check  (0xffffff) - aborting.

[    4.488450] NET: Registered PF_INET protocol family

[    4.498361] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)

[    4.513743] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)

[    4.530614] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)

[    4.546210] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)

[    4.562172] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)

[    4.577113] TCP: Hash tables configured (established 32768 bind 32768)

[    4.590256] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)

[    4.603752] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)

[    4.618156] NET: Registered PF_UNIX/PF_LOCAL protocol family

[    4.629828] RPC: Registered named UNIX socket transport module.

[    4.641541] RPC: Registered udp transport module.

[    4.651368] RPC: Registered tcp transport module.

[    4.660606] RPC: Registered tcp-with-tls transport module.

[    4.671697] RPC: Registered tcp NFSv4.1 backchannel transport module.

[    4.685214] pci 0000:00:02.1: PCI bridge to [bus 01]

[    4.694991] pci 0000:00:02.1:   bridge window [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    4.711274] pci 0000:00:02.3: PCI bridge to [bus 02]

[    4.721325] pci 0000:00:02.3:   bridge window [mem 0xfea00000-0xfeafffff]

[    4.735017] pci 0000:00:02.4: PCI bridge to [bus 03]

[    4.745071] pci 0000:00:02.4:   bridge window [io  0xf000-0xffff]

[    4.757377] pci 0000:00:02.4:   bridge window [mem 0xfe900000-0xfe9fffff]

[    4.771075] pci 0000:00:08.1: PCI bridge to [bus 04]

[    4.781120] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]

[    4.793432] pci 0000:00:08.1:   bridge window [mem 0xfe400000-0xfe7fffff]

[    4.807124] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]

[    4.822730] pci 0000:00:08.2: PCI bridge to [bus 05]

[    4.832781] pci 0000:00:08.2:   bridge window [mem 0xfe800000-0xfe8fffff]

[    4.846477] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]

[    4.858948] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]

[    4.871425] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]

[    4.883904] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]

[    4.896387] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]

[    4.910255] pci_bus 0000:00: resource 9 [mem 0xd0000000-0xfebfffff window]

[    4.924123] pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]

[    4.938162] pci_bus 0000:00: resource 11 [mem 0x830000000-0xffffffffff window]

[    4.952724] pci_bus 0000:01: resource 2 [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    4.967977] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]

[    4.980624] pci_bus 0000:03: resource 0 [io  0xf000-0xffff]

[    4.991891] pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]

[    5.004548] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]

[    5.015814] pci_bus 0000:04: resource 1 [mem 0xfe400000-0xfe7fffff]

[    5.028464] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]

[    5.043031] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]

[    5.055854] pci 0000:01:00.0: CLS mismatch (64 != 484), using 64 bytes

[    5.068881] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0

[    5.081686] pci 0000:04:00.1: quirk_gpu_hda+0x0/0x10 took 12520 usecs

[    5.094696] pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec

[    5.109936] pci 0000:04:00.3: quirk_ryzen_xhci_d3hot+0x0/0x10 took 14883 usecs

[    5.124774] pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec

[    5.139752] pci 0000:04:00.4: quirk_ryzen_xhci_d3hot+0x0/0x10 took 14627 usecs

[    5.154381] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)

[    5.154449] Unpacking initramfs...

[    5.167307] software IO TLB: mapped [mem 0x00000000c6bc9000-0x00000000cabc9000] (64MB)

[    5.167347] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b92fd203a, max_idle_ns: 440795232918 ns

[    5.210361] clocksource: Switched to clocksource tsc

[    5.221387] Initialise system trusted keyrings

[    5.230221] workingset: timestamp_bits=56 max_order=20 bucket_order=0

[    5.243376] NFS: Registering the id_resolver key type

[    5.253021] Freeing initrd memory: 207056K

[    5.253355] Key type id_resolver registered

[    5.270155] Key type id_legacy registered

[    5.278384] 9p: Installing v9fs 9p2000 file system support

[    5.298683] Key type asymmetric registered

[    5.306696] Asymmetric key parser 'x509' registered

[    5.316590] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)

[    5.331498] io scheduler mq-deadline registered

[    5.340672] io scheduler kyber registered

[    5.349244] pcieport 0000:00:02.1: PME: Signaling with IRQ 43

[    5.360847] pcieport 0000:00:02.3: PME: Signaling with IRQ 44

[    5.372425] pcieport 0000:00:02.4: PME: Signaling with IRQ 45

[    5.384035] pcieport 0000:00:08.1: PME: Signaling with IRQ 46

[    5.395669] pcieport 0000:00:08.2: PME: Signaling with IRQ 47

[    5.407209] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0

[    5.423844] ACPI: button: Power Button [PWRB]

[    5.432690] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1

[    5.447650] ACPI: button: Power Button [PWRF]

[    5.456443] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)

[    5.471401] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input2

[    5.491577] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    5.505646] ACPI: \_SB_.PLTF.P000: Found 3 idle states

[    5.516114] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    5.530254] ACPI: \_SB_.PLTF.P001: Found 3 idle states

[    5.540713] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    5.554868] ACPI: \_SB_.PLTF.P002: Found 3 idle states

[    5.565510] thermal LNXTHERM:00: registered as thermal_zone0

[    5.576707] ACPI: thermal: Thermal Zone [THRM] (20 C)

[    5.587008] thermal LNXTHERM:01: registered as thermal_zone1

[    5.598375] ACPI: thermal: Thermal Zone [WDTF] (0 C)

[    5.608803] xen_mcelog: Failed to get CPU numbers

[    5.618692] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

[    5.631202] 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A

[    5.646354] hpet_acpi_add: no address or irqs in _CRS

[    5.656363] Non-volatile memory driver v1.3

[    5.664781] Linux agpgart interface v0.103

[    5.673540] ACPI: bus type drm_connector registered

[    5.684699] loop: module loaded

[    5.691358] nvme nvme0: pci function 0000:02:00.0

[    5.691568] ahci 0000:05:00.0: version 3.0

[    5.708945] nvme nvme0: missing or invalid SUBNQN field.

[    5.709097] ahci 0000:05:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

[    5.719796] nvme nvme0: D3 entry latency set to 8 seconds

[    5.735796] ahci 0000:05:00.0: 1/1 ports implemented (port mask 0x1)

[    5.757981] nvme nvme0: 4/0/0 default/read/poll queues

[    5.759547] ahci 0000:05:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part

[    5.787912] scsi host0: ahci

[    5.788932]  nvme0n1: p1 p2

[    5.793543] ata1: SATA max UDMA/133 abar m2048@0xfe801000 port 0xfe801100 irq 52 lpm-pol 3

[    5.816025] ahci 0000:05:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

[    5.831997] ahci 0000:05:00.1: 1/1 ports implemented (port mask 0x1)

[    5.844821] ahci 0000:05:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part

[    5.862827] scsi host1: ahci

[    5.868446] ata2: SATA max UDMA/133 abar m2048@0xfe800000 port 0xfe800100 irq 58 lpm-pol 3

[    5.885321] Rounding down aligned max_sectors from 4294967295 to 4294967288

[    5.899235] db_root: cannot open: /etc/target

[    5.908045] e100: Intel(R) PRO/100 Network Driver

[    5.917468] e100: Copyright(c) 1999-2006 Intel Corporation

[    5.928567] e1000: Intel(R) PRO/1000 Network Driver

[    5.938448] e1000: Copyright (c) 1999-2006 Intel Corporation.

[    5.950061] e1000e: Intel(R) PRO/1000 Network Driver

[    5.960110] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.

[    5.972088] sky2: driver version 1.30

[    5.988392] modprobe (78) used greatest stack depth: 13936 bytes left

[    5.988830] r8169 0000:03:00.0 eth0: RTL8125B, dc:9c:52:27:ae:c4, XID 641, IRQ 60

[    6.016188] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]

[    6.033533] xhci_hcd 0000:04:00.3: xHCI Host Controller

[    6.044000] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1

[    6.058909] xhci_hcd 0000:04:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010

[    6.077527] xhci_hcd 0000:04:00.3: xHCI Host Controller

[    6.087869] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2

[    6.102712] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed

[    6.116957] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11

[    6.121846] ata1: SATA link down (SStatus 0 SControl 300)

[    6.133558] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.159048] usb usb1: Product: xHCI Host Controller

[    6.168918] usb usb1: Manufacturer: Linux 6.11.0-rt1 xhci-hcd

[    6.180532] usb usb1: SerialNumber: 0000:04:00.3

[    6.190026] hub 1-0:1.0: USB hub found

[    6.194347] ata2: SATA link down (SStatus 0 SControl 300)

[    6.197524] hub 1-0:1.0: 4 ports detected

[    6.216674] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.

[    6.232885] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11

[    6.249513] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.264081] usb usb2: Product: xHCI Host Controller

[    6.273960] usb usb2: Manufacturer: Linux 6.11.0-rt1 xhci-hcd

[    6.285573] usb usb2: SerialNumber: 0000:04:00.3

[    6.295076] hub 2-0:1.0: USB hub found

[    6.302562] hub 2-0:1.0: 2 ports detected

[    6.310811] xhci_hcd 0000:04:00.4: xHCI Host Controller

[    6.321363] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3

[    6.336270] xhci_hcd 0000:04:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010

[    6.354877] xhci_hcd 0000:04:00.4: xHCI Host Controller

[    6.365237] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4

[    6.380058] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed

[    6.394299] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11

[    6.410910] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.425469] usb usb3: Product: xHCI Host Controller

[    6.435351] usb usb3: Manufacturer: Linux 6.11.0-rt1 xhci-hcd

[    6.446961] usb usb3: SerialNumber: 0000:04:00.4

[    6.456553] hub 3-0:1.0: USB hub found

[    6.463978] hub 3-0:1.0: 4 ports detected

[    6.472281] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.

[    6.488494] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11

[    6.505033] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    6.519590] usb usb4: Product: xHCI Host Controller

[    6.529469] usb usb4: Manufacturer: Linux 6.11.0-rt1 xhci-hcd

[    6.541086] usb usb4: SerialNumber: 0000:04:00.4

[    6.550536] hub 4-0:1.0: USB hub found

[    6.558075] hub 4-0:1.0: 2 ports detected

[    6.566288] usbcore: registered new interface driver usblp

[    6.577327] usbcore: registered new interface driver usb-storage

[    6.577345] usb 1-3: new low-speed USB device number 2 using xhci_hcd

[    6.602641] i8042: PNP: No PS/2 controller found.

[    6.611977] i8042: Probing ports directly.

[    6.621162] i8042: No controller found

[    6.628640] rtc_cmos 00:01: RTC can wake from S4

[    6.637962] rtc_cmos 00:01: registered as rtc0

[    6.646877] rtc_cmos 00:01: no alarms, y3k, 114 bytes nvram

[    6.658192] fail to initialize ptp_kvm

[    6.658273] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev

[    6.683620] amd_pstate: The CPPC feature is supported but currently disabled by the BIOS.

[    6.683620] Please enable it if your BIOS has the CPPC option.

[    6.711864] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled

[    6.726792] hid: raw HID events driver (C) Jiri Kosina

[    6.737253] usbcore: registered new interface driver usbhid

[    6.748439] usbhid: USB HID core driver

[    6.756855] snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002)

(XEN) [   21.840842] 0000:04:00.1: not mapping BAR [fe7c8, fe7cb] invalid position
[    6.784332] usb 3-4: new high-speed USB device number 2 using xhci_hcd

[    6.784446] snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002)

[    6.800043] u(XEN) [   21.884521] 0000:04:00.6: not mapping BAR [fe7c0, fe7c7] invalid position
sb 1-3: New USB device found, idVendor=413c, idProduct=2113, bcdDevice= 1.08

[    6.828360] Initializing XFRM netlink socket

[    6.841667] usb 1-3: New USB device strings: Mfr=0, Product=2, SerialNumber=0

[    6.841669] usb 1-3: Product: Dell KB216 Wired Keyboard

[    6.875352] NET: Registered PF_INET6 protocol family

[    6.881700] snd_hda_intel 0000:04:00.1: Cannot probe codecs, giving up

[    6.885650] S(XEN) [   21.972404] arch/x86/hvm/vmsi.c:886:d0v3 0000:04:00.1: PIRQ 3313: unsupported address 0
egment Routing w(XEN) [   21.992164] arch/x86/hvm/vmsi.c:886:d0v3 0000:04:00.1: PIRQ 3313: unsupported address 0
(XEN) [   22.009151] arch/x86/hvm/vmsi.c:886:d0v3 0000:04:00.1: PIRQ 3313: unsupported address 0
ith IPv6

[    6.956974] In-situ OAM (IOAM) with IPv6

[    6.965003] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver

[    6.972189] usb 3-4: New USB device found, idVendor=0403, idProduct=6011, bcdDevice= 8.00

[    6.976966] NET: Registered PF_PACKET protocol family

[    6.993332] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3

[    6.993334] usb 3-4: Product: VE2302

[    6.993335] usb 3-4: Manufacturer: Xilinx

[    6.993336] usb 3-4: SerialNumber: 52H2511000012

[    6.993518] input: Dell KB216 Wired Keyboard as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-3/1-3:1.0/0003:413C:2113.0001/input/input3

[    7.003589] 9pnet: Installing 9P2000 support

[    7.077248] Key type dns_resolver registered

[    7.086218] IPI shorthand broadcast: enabled

[    7.086322] hid-generic 0003:413C:2113.0001: input,hidraw0: USB HID v1.11 Keyboard [Dell KB216 Wired Keyboard] on usb-0000:04:00.3-3/input0

[    7.096295] sched_clock: Marking stable (6951006531, 144596303)->(9342627401, -2247024567)

[    7.136571] registered taskstats version 1

[    7.144692] Loading compiled-in X.509 certificates

[    7.144832] input: Dell KB216 Wired Keyboard System Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-3/1-3:1.1/0003:413C:2113.0002/input/input4

[    7.182873] Demotion targets for Node 0: null

[    7.191790] PM:   Magic number: 5:863:456

[    7.199935] mem urandom: hash matches

[    7.207272] printk: legacy console [netcon0] enabled

[    7.217308] netconsole: network logging started

[    7.226997] cfg80211: Loading compiled-in X.509 certificates for regulatory database

[    7.234773] input: Dell KB216 Wired Keyboard Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb1/1-3/1-3:1.1/0003:413C:2113.0002/input/input5

[    7.243029] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'

[    7.271159] hid-generic 0003:413C:2113.0002: input,hidraw1: USB HID v1.11 Device [Dell KB216 Wired Keyboard] on usb-0000:04:00.3-3/input1

[    7.282626] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'

[    7.321880] ALSA device list:

[    7.327943] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2

[    7.328612]   No soundcards found.

[    7.345266] cfg80211: failed to load regulatory.db

[    7.362371] Freeing unused kernel image (initmem) memory: 2928K

[    7.374054] Write protecting the kernel read-only data: 26624k

[    7.386126] Freeing unused kernel image (rodata/data gap) memory: 896K

[    7.429623] x86/mm: Checked W+X mappings: passed, no W+X pages found.

[    7.442325] Run /bin/sh as init process

[    7.450119]   with arguments:

[    7.456188]     /bin/sh

[    7.461212]   with environment:

[    7.467630]     HOME=/

[    7.472474]     TERM=linux

/bin/sh: can't access tty; job control turned off

~ # mount -t proc proc /proc

[   23.567246] m~ # ount (93) used greatest stack depth: 13408 bytes left

mount -t sysfs sysfs /sys

~ # mount -t devtmpfs devtmpfs /dev

~ # ls /dev

autofs           nvme-fabrics     tty26            tty56

bus              nvme0            tty27            tty57

console          nvme0n1          tty28            tty58

cpu              nvme0n1p1        tty29            tty59

cpu_dma_latency  nvme0n1p2        tty3             tty6

full             nvram            tty30            tty60

hidraw0          port             tty31            tty61

hidraw1          ptmx             tty32            tty62

hpet             random           tty33            tty63

hvc0             rfkill           tty34            tty7

hvc1             rtc0             tty35            tty8

hvc2             snapshot         tty36            tty9

hvc3             snd              tty37            ttyS0

hvc4             tty              tty38            ttyS1

hvc5             tty0             tty39            ttyS2

hvc6             tty1             tty4             ttyS3

hvc7             tty10            tty40            urandom

hwrng            tty11            tty41            usbmon0

input            tty12            tty42            usbmon1

kmsg             tty13            tty43            usbmon2

loop-control     tty14            tty44            usbmon3

loop0            tty15            tty45            usbmon4

loop1            tty16            tty46            vcs

loop2            tty17            tty47            vcs1

loop3            tty18            tty48            vcsa

loop4            tty19            tty49            vcsa1

loop5            tty2             tty5             vcsu

loop6            tty20            tty50            vcsu1

loop7            tty21            tty51            vga_arbiter

mapper           tty22            tty52            xen

mem              tty23            tty53            zero

ng0n1            tty24            tty54

null             tty25            tty55

~ # mount /dev/nvme0n1p12 /mnt

[   49.252450] EXT4-fs (nvme0n1p2): recovery complete

[   49.263643] EXT4-fs (nvme0n1p2): mounted filesystem 0b5dc40a-1394-42c8-a3a3-d8e49bef803c r/w with ordered data mode. Quota mode: none.

~ # ls /mnt

bin         home        lost+found  root        swapfile

boot        lib         media       run         sys

cdrom       lib32       mnt         sbin        tmp

dev         lib64       opt         snap        usr

etc         libx32      proc        srv         var

[   51.464615] l~ # s (101) used greatest stack depth: 13392 bytes left


Thanks for using picocom
picocom v1.7

port is        : /dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller-if00-port0
flowcontrol    : none
baudrate is    : 57600
parity is      : none
databits are   : 8
escape is      : C-a
local echo is  : no
noinit is      : no
noreset is     : no
nolock is      : no
send_cmd is    : sz -vv
receive_cmd is : rz -vv
imap is        :
omap is        :
emap is        : crcrlf,delbs,
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 5 months, 3 weeks ago
On Fri, Apr 25, 2025 at 09:47:57AM -0700, Lira, Victor M wrote:
> I can confirm with the patch the NVME drive can be accessed despite the "not
> mapping BAR" warning from Xen.
> Output log attached.

Thanks a lot for the test, and sorry for the delay in getting back.  I
was busy with other stuff and needed some time to figure out the best
way to deal with this.  Can you give a try to the patch below?  I hope
it will still fix the issue.

Thanks, Roger.
---
diff --git a/xen/arch/arm/include/asm/pci.h b/xen/arch/arm/include/asm/pci.h
index 7f77226c9bbf..1605ec660d0b 100644
--- a/xen/arch/arm/include/asm/pci.h
+++ b/xen/arch/arm/include/asm/pci.h
@@ -128,6 +128,9 @@ int pci_host_bridge_mappings(struct domain *d);
 
 bool pci_check_bar(const struct pci_dev *pdev, mfn_t start, mfn_t end);
 
+static inline int pci_sanitize_bar_memory(struct rangeset *r)
+{ return 0; }
+
 #else   /*!CONFIG_HAS_PCI*/
 
 struct pci_dev;
diff --git a/xen/arch/x86/include/asm/pci.h b/xen/arch/x86/include/asm/pci.h
index fd5480d67d43..d2701f2deb62 100644
--- a/xen/arch/x86/include/asm/pci.h
+++ b/xen/arch/x86/include/asm/pci.h
@@ -2,6 +2,7 @@
 #define __X86_PCI_H__
 
 #include <xen/mm.h>
+#include <xen/rangeset.h>
 
 #define CF8_BDF(cf8)     (  ((cf8) & 0x00ffff00U) >> 8)
 #define CF8_ADDR_LO(cf8) (   (cf8) & 0x000000fcU)
@@ -57,14 +58,7 @@ static always_inline bool is_pci_passthrough_enabled(void)
 
 void arch_pci_init_pdev(struct pci_dev *pdev);
 
-static inline bool pci_check_bar(const struct pci_dev *pdev,
-                                 mfn_t start, mfn_t end)
-{
-    /*
-     * Check if BAR is not overlapping with any memory region defined
-     * in the memory map.
-     */
-    return is_memory_hole(start, end);
-}
+bool pci_check_bar(const struct pci_dev *pdev, mfn_t start, mfn_t end);
+int pci_sanitize_bar_memory(struct rangeset *r);
 
 #endif /* __X86_PCI_H__ */
diff --git a/xen/arch/x86/pci.c b/xen/arch/x86/pci.c
index 97b792e578f1..de9ce76e1c8a 100644
--- a/xen/arch/x86/pci.c
+++ b/xen/arch/x86/pci.c
@@ -98,3 +98,56 @@ int pci_conf_write_intercept(unsigned int seg, unsigned int bdf,
 
     return rc;
 }
+
+bool pci_check_bar(const struct pci_dev *pdev, mfn_t start, mfn_t end)
+{
+    /*
+     * Check if BAR is not overlapping with any memory region defined
+     * in the memory map.
+     */
+    if ( !is_memory_hole(start, end) )
+        gdprintk(XENLOG_WARNING,
+                 "%pp: BAR at [%"PRI_mfn", %"PRI_mfn"] not in memory map hole\n",
+                 &pdev->sbdf, mfn_x(start), mfn_x(end));
+
+    /*
+     * Unconditionally return true, pci_sanitize_bar_memory() will remove any
+     * non-hole regions.
+     */
+    return true;
+}
+
+int pci_sanitize_bar_memory(struct rangeset *r)
+{
+    unsigned int i;
+
+    for ( i = 0; i < e820.nr_map; i++ )
+    {
+        const struct e820entry *entry = &e820.map[i];
+        int rc;
+
+        if ( !entry->size )
+            continue;
+
+        /*
+         * Remove overlaps with any memory ranges defined in the host memory
+         * map.
+         */
+        rc = rangeset_remove_range(r, PFN_DOWN(entry->addr),
+                                   PFN_DOWN(entry->addr + entry->size - 1));
+        if ( rc )
+            return rc;
+    }
+
+    return 0;
+}
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 4
+ * tab-width: 4
+ * indent-tabs-mode: nil
+ * End:
+ */
diff --git a/xen/drivers/vpci/header.c b/xen/drivers/vpci/header.c
index ef6c965c081c..533e24ca3674 100644
--- a/xen/drivers/vpci/header.c
+++ b/xen/drivers/vpci/header.c
@@ -394,6 +394,14 @@ static int modify_bars(const struct pci_dev *pdev, uint16_t cmd, bool rom_only)
                 return rc;
             }
         }
+
+        rc = pci_sanitize_bar_memory(bar->mem);
+        if ( rc )
+        {
+            gprintk(XENLOG_WARNING, "%pp: failed to sanitize BAR memory: %d\n",
+                    &pdev->sbdf, rc);
+            return rc;
+        }
     }
 
     /* Remove any MSIX regions if present. */
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Lira, Victor M 5 months, 3 weeks ago
On 5/12/2025 9:16 AM, Roger Pau Monné wrote:
> Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.
>
>
> On Fri, Apr 25, 2025 at 09:47:57AM -0700, Lira, Victor M wrote:
>> I can confirm with the patch the NVME drive can be accessed despite the "not
>> mapping BAR" warning from Xen.
>> Output log attached.
> Thanks a lot for the test, and sorry for the delay in getting back.  I
> was busy with other stuff and needed some time to figure out the best
> way to deal with this.  Can you give a try to the patch below?  I hope
> it will still fix the issue.
No worries,  I applied this patch to the latest staging c45e57f59d69, 
and the result is also successful NVME drive access.
Output log attached and I see no "failed to sanitize" warnings.


VictorXen 4.21-unstable
(XEN) [00000025e3f42b3d] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Mon May 12 17:12:48 UTC 2025
(XEN) [00000025e6362fda] Latest ChangeSet:
(XEN) [00000025e6e268ea] build-id: 95a1d9cbdd005c0bb082d3de44666c6ef649a115
(XEN) [00000025e8092bd2] Console output is synchronous.
(XEN) [00000025e8e3535e] CPU Vendor: AMD, Family 23 (0x17), Model 96 (0x60), Stepping 1 (raw 00860f01)
(XEN) [00000025ea7174e2] BSP microcode revision: 0x0860010c
(XEN) [00000025eb5af98d] Bootloader: GRUB 2.13
(XEN) [00000025ec1298bd] Command line: console=com1 com1=115200,8n1,0x3F8,4 sched=null loglvl=all guest_loglvl=all console_timestamps=boot iommu=verbose dom0=pvh,verbose,pf-fixup dom0_max_vcpus=4 dom0_mem=4G argo=1,mac-permissive=1 sync_console noreboot wow
(XEN) [00000025eff22396] Xen image load base address: 0xc6600000
(XEN) [00000025f0eeb9e2] Video information:
(XEN) [00000025f19ae439]  VGA is graphics mode 1920x1200, 32 bpp
(XEN) [00000025f297ac05] Disc information:
(XEN) [00000025f34016fa]  Found 0 MBR signatures
(XEN) [00000025f3ff64ba]  Found 1 EDD information structures
(XEN) [00000025f4ecad6b] EFI RAM map:
(XEN) [00000025f5820de2]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [00000025f699693e]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [00000025f7b89112]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [00000025f8cfedca]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [00000025f9ef0222]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [00000025fb068786]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [00000025fc25887e]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [00000025fd3d0ad2]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [00000025fe5c127a]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [00000025ff7f0aca]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [00000026009e1068]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [0000002601bd25ff]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [0000002602dc3ea5]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [0000002603fb72b6]  [00000000cd1ff000, 00000000cdffffff] (usable)
(XEN) [000000260512c1f2]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [000000260631de38]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [0000002607510a5a]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [0000002608701586]  [0000000100000000, 000000080f33ffff] (usable)
(XEN) [000000260987847a]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [0000002616eb2d01] ACPI: RSDP CC6F3014, 0024 (r2 ALASKA)
(XEN) [0000002617e033c7] ACPI: XSDT CC6F2728, 00DC (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [00000026194fb17a] ACPI: FACP CC18C000, 0114 (r6 ALASKA   A M I   1072009 AMI     10013)
(XEN) [000000261abf0a05] ACPI: DSDT CC183000, 876D (r2 ALASKA   A M I   1072009 INTL 20120913)
(XEN) [000000261c2ea40a] ACPI: FACS CC6C0000, 0040
(XEN) [000000261cf5a05a] ACPI: SSDT CC18E000, 723C (r2    AMD AmdTable        2 MSFT  4000000)
(XEN) [000000261e652a66] ACPI: IVRS CC18D000, 01A4 (r2  AMD   AmdTable        1 AMD         0)
(XEN) [000000261fd49bfa] ACPI: FIDT CC182000, 009C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [00000026214419ca] ACPI: MCFG CC181000, 003C (r1 ALASKA    A M I  1072009 MSFT    10013)
(XEN) [0000002622b377e2] ACPI: HPET CC180000, 0038 (r1 ALASKA    A M I  1072009 AMI         5)
(XEN) [000000262422f5b2] ACPI: SSDT CC17F000, 0228 (r1    AMD     STD3        1 INTL 20120913)
(XEN) [0000002625927c92] ACPI: VFCT CC171000, D684 (r1 ALASKA   A M I         1  AMD 31504F47)
(XEN) [000000262701f152] ACPI: TPM2 CC16F000, 004C (r4 ALASKA   A M I         1 AMI         0)
(XEN) [0000002628717832] ACPI: SSDT CC16B000, 39F4 (r1    AMD AmdTable        1 AMD         1)
(XEN) [0000002629e0ecf2] ACPI: CRAT CC16A000, 0F28 (r1    AMD AmdTable        1 AMD         1)
(XEN) [000000262b506e45] ACPI: CDIT CC169000, 0029 (r1    AMD AmdTable        1 AMD         1)
(XEN) [000000262cbfe892] ACPI: SSDT CC168000, 0139 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [000000262e2f4fba] ACPI: SSDT CC167000, 0227 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [000000262f9ed9e3] ACPI: SSDT CC166000, 0D37 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000026310e424a] ACPI: SSDT CC164000, 10A5 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000026327dcd95] ACPI: SSDT CC160000, 30C8 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002633ed3dea] ACPI: WSMT CC15F000, 0028 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000026355ca512] ACPI: APIC CC15E000, 00DE (r3 ALASKA   A M I   1072009 AMI     10013)
(XEN) [0000002636cc398a] ACPI: SSDT CC15D000, 007D (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000026383ba0b2] ACPI: SSDT CC15C000, 0517 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002639ab0fe5] ACPI: FPDT CC15B000, 0044 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [000000263b1a9c52] ACPI: BGRT CC170000, 0038 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [000000263c8a1dc2] System RAM: 32168MB (32940656kB)
(XEN) [0000002641c71f3a] No NUMA configuration found
(XEN) [000000264295e0c2] Faking a node at 0000000000000000-000000080f340000
(XEN) [000000264c24e1b9] Domain heap initialised
(XEN) [000000264e274d8e] SMBIOS 3.2 present.
(XEN) [000000264ed8eba1] Using APIC driver default
(XEN) [000000264f9fdea7] ACPI: PM-Timer IO Port: 0x808 (32 bits)
(XEN) [00000026509c8a3f] ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) [0000002651b406af] ACPI: SLEEP INFO: pm1x_cnt[1:804,1:0], pm1x_evt[1:800,1:0]
(XEN) [0000002652f96d2f] ACPI: 32/64X FACS address mismatch in FADT - cc6c0000/0000000000000000, using 32
(XEN) [000000265492e297] ACPI:             wakeup_vec[cc6c000c], vec_size[20]
(XEN) [0000002655c1650d] ACPI: Local APIC address 0xfee00000
(XEN) [0000002656afff6f] Overriding APIC driver with bigsmp
(XEN) [0000002657999090] ACPI: IOAPIC (id[0x11] address[0xfec00000] gsi_base[0])
(XEN) [0000002658d364df] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
(XEN) [000000265a2bf6b7] ACPI: IOAPIC (id[0x12] address[0xfec01000] gsi_base[24])
(XEN) [000000265b69a8c3] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
(XEN) [000000265cc5f03e] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) [000000265e039dfc] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) [000000265f48fb6c] ACPI: IRQ0 used by override.
(XEN) [00000026601b9d2f] ACPI: IRQ2 used by override.
(XEN) [0000002660ee1f57] ACPI: IRQ9 used by override.
(XEN) [0000002661c0a17f] ACPI: HPET id: 0x10228201 base: 0xfed00000
(XEN) [0000002662c8c9fc] PCI: MCFG configuration 0: base f0000000 segment 0000 buses 00 - 7f
(XEN) [0000002664308ff2] PCI: MCFG area at f0000000 reserved in E820
(XEN) [00000026653c8fb7] PCI: Using MCFG for segment 0000 bus 00-7f
(XEN) [000000266644985f] ACPI: BGRT: invalidating v1 image at 0xc7153018
(XEN) [00000026675ff527] Using ACPI (MADT) for SMP configuration information
(XEN) [00000026688a6533] SMP: Allowing 16 CPUs (0 hotplug CPUs)
(XEN) [0000002669834429] IRQ limits: 56 GSI, 3272 MSI/MSI-X
(XEN) [000000266a6cb640] CPU0: 1400 ... 2900 MHz
(XEN) [000000266b2c1fc1] xstate: size: 0x380 and states: 0x207
(XEN) [000000266c213371] CPU0: AMD Fam17h machine check reporting enabled
(XEN) [000000266d404820] Speculative mitigation facilities:
(XEN) [000000266e29cc74]   Hardware hints: IBRS_FAST IBRS_SAME_MODE
(XEN) [000000266f31de49]   Hardware features: IBPB IBRS STIBP SSBD
(XEN) [0000002670362634]   Compiled-in support: INDIRECT_THUNK SHADOW_PAGING HARDEN_ARRAY HARDEN_BRANCH HARDEN_GUEST_ACCESS HARDEN_LOCK
(XEN) [0000002672429fac]   Xen settings: BTI-Thunk: RETPOLINE, SPEC_CTRL: IBRS- STIBP+ SSBD-, Other: BRANCH_HARDEN
(XEN) [0000002673feaa1f]   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB IBPB-entry
(XEN) [000000267571e50c]   Support for PV VMs: IBPB-entry
(XEN) [000000267653cd81]   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (without PCID)
(XEN) [0000002677bf7409]   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) [0000002678e2567c] Using scheduler: null Scheduler (null)
(XEN) [0000002679db21bc] Initializing null scheduler
(XEN) [000000267aa9e344] WARNING: This is experimental software in development.
(XEN) [000000267bdfd08c] Use at your own risk.
(XEN) [0000002685338a78] Platform timer is 14.318MHz HPET
(XEN) [    0.941836] Detected 2894.553 MHz processor.
(XEN) [    0.948218] Freed 1008kB unused BSS memory
(XEN) [    0.952813] EFI memory map:
(XEN) [    0.956104]  0000000000000-0000000003fff type=2 attr=000000000000000f
(XEN) [    0.963039]  0000000004000-000000008efff type=7 attr=000000000000000f
(XEN) [    0.969970]  000000008f000-000000009efff type=2 attr=000000000000000f
(XEN) [    0.976903]  000000009f000-000000009ffff type=4 attr=000000000000000f
(XEN) [    0.983837]  0000000100000-0000000e89fff type=2 attr=000000000000000f
(XEN) [    0.990770]  0000000e8a000-0000000ffffff type=7 attr=000000000000000f
(XEN) [    0.997706]  0000001000000-000000101ffff type=4 attr=000000000000000f
(XEN) [    1.004638]  0000001020000-0000009bfefff type=7 attr=000000000000000f
(XEN) [    1.011572]  0000009bff000-0000009ffffff type=0 attr=000000000000000f
(XEN) [    1.018503]  000000a000000-000000a1fffff type=7 attr=000000000000000f
(XEN) [    1.025439]  000000a200000-000000a20cfff type=10 attr=000000000000000f
(XEN) [    1.032458]  000000a20d000-0000016ce0fff type=2 attr=000000000000000f
(XEN) [    1.039392]  0000016ce1000-00000c4eecfff type=7 attr=000000000000000f
(XEN) [    1.046327]  00000c4eed000-00000c7001fff type=1 attr=000000000000000f
(XEN) [    1.053257]  00000c7002000-00000c7117fff type=7 attr=000000000000000f
(XEN) [    1.060191]  00000c7118000-00000c7152fff type=3 attr=000000000000000f
(XEN) [    1.067125]  00000c7153000-00000c7191fff type=4 attr=000000000000000f
(XEN) [    1.074057]  00000c7192000-00000c7193fff type=7 attr=000000000000000f
(XEN) [    1.080992]  00000c7194000-00000c719bfff type=4 attr=000000000000000f
(XEN) [    1.087926]  00000c719c000-00000c71a7fff type=3 attr=000000000000000f
(XEN) [    1.094859]  00000c71a8000-00000c71d3fff type=4 attr=000000000000000f
(XEN) [    1.101793]  00000c71d4000-00000c71dcfff type=3 attr=000000000000000f
(XEN) [    1.108725]  00000c71dd000-00000c71e0fff type=4 attr=000000000000000f
(XEN) [    1.115659]  00000c71e1000-00000c71e5fff type=3 attr=000000000000000f
(XEN) [    1.122593]  00000c71e6000-00000c7283fff type=4 attr=000000000000000f
(XEN) [    1.129524]  00000c7284000-00000c7284fff type=7 attr=000000000000000f
(XEN) [    1.136458]  00000c7285000-00000c7286fff type=4 attr=000000000000000f
(XEN) [    1.143392]  00000c7287000-00000c7288fff type=7 attr=000000000000000f
(XEN) [    1.150324]  00000c7289000-00000c728afff type=4 attr=000000000000000f
(XEN) [    1.157259]  00000c728b000-00000c728bfff type=7 attr=000000000000000f
(XEN) [    1.164194]  00000c728c000-00000c728cfff type=4 attr=000000000000000f
(XEN) [    1.171125]  00000c728d000-00000c728dfff type=7 attr=000000000000000f
(XEN) [    1.178059]  00000c728e000-00000c728efff type=4 attr=000000000000000f
(XEN) [    1.184994]  00000c728f000-00000c728ffff type=7 attr=000000000000000f
(XEN) [    1.191926]  00000c7290000-00000c7290fff type=4 attr=000000000000000f
(XEN) [    1.198860]  00000c7291000-00000c7293fff type=7 attr=000000000000000f
(XEN) [    1.205794]  00000c7294000-00000c7297fff type=4 attr=000000000000000f
(XEN) [    1.212725]  00000c7298000-00000c72a2fff type=7 attr=000000000000000f
(XEN) [    1.219659]  00000c72a3000-00000c72a4fff type=4 attr=000000000000000f
(XEN) [    1.226591]  00000c72a5000-00000c72a8fff type=7 attr=000000000000000f
(XEN) [    1.233525]  00000c72a9000-00000c72aafff type=4 attr=000000000000000f
(XEN) [    1.240460]  00000c72ab000-00000c72acfff type=7 attr=000000000000000f
(XEN) [    1.247391]  00000c72ad000-00000c72aefff type=4 attr=000000000000000f
(XEN) [    1.254324]  00000c72af000-00000c72b0fff type=7 attr=000000000000000f
(XEN) [    1.261261]  00000c72b1000-00000c72b1fff type=4 attr=000000000000000f
(XEN) [    1.268193]  00000c72b2000-00000c72b2fff type=7 attr=000000000000000f
(XEN) [    1.275127]  00000c72b3000-00000c72b3fff type=4 attr=000000000000000f
(XEN) [    1.282060]  00000c72b4000-00000c72b4fff type=7 attr=000000000000000f
(XEN) [    1.288991]  00000c72b5000-00000c72b5fff type=4 attr=000000000000000f
(XEN) [    1.295924]  00000c72b6000-00000c72b7fff type=7 attr=000000000000000f
(XEN) [    1.302860]  00000c72b8000-00000c72b8fff type=4 attr=000000000000000f
(XEN) [    1.309793]  00000c72b9000-00000c7376fff type=7 attr=000000000000000f
(XEN) [    1.316726]  00000c7377000-00000c785afff type=4 attr=000000000000000f
(XEN) [    1.323658]  00000c785b000-00000c79d2fff type=3 attr=000000000000000f
(XEN) [    1.330593]  00000c79d3000-00000c7a14fff type=7 attr=000000000000000f
(XEN) [    1.337525]  00000c7a15000-00000c7a3dfff type=4 attr=000000000000000f
(XEN) [    1.344460]  00000c7a3e000-00000c7a42fff type=7 attr=000000000000000f
(XEN) [    1.351394]  00000c7a43000-00000c7a43fff type=4 attr=000000000000000f
(XEN) [    1.358324]  00000c7a44000-00000c7a44fff type=7 attr=000000000000000f
(XEN) [    1.365260]  00000c7a45000-00000c7a45fff type=4 attr=000000000000000f
(XEN) [    1.372191]  00000c7a46000-00000c7a46fff type=7 attr=000000000000000f
(XEN) [    1.379127]  00000c7a47000-00000c7a47fff type=2 attr=000000000000000f
(XEN) [    1.386061]  00000c7a48000-00000c7a48fff type=4 attr=000000000000000f
(XEN) [    1.392994]  00000c7a49000-00000c7a49fff type=7 attr=000000000000000f
(XEN) [    1.399926]  00000c7a4a000-00000c7a4bfff type=4 attr=000000000000000f
(XEN) [    1.406858]  00000c7a4c000-00000c7a4cfff type=7 attr=000000000000000f
(XEN) [    1.413794]  00000c7a4d000-00000c7a5dfff type=3 attr=000000000000000f
(XEN) [    1.420727]  00000c7a5e000-00000c7a95fff type=4 attr=000000000000000f
(XEN) [    1.427661]  00000c7a96000-00000c7a96fff type=7 attr=000000000000000f
(XEN) [    1.434592]  00000c7a97000-00000c7ae7fff type=4 attr=000000000000000f
(XEN) [    1.441525]  00000c7ae8000-00000c7b07fff type=3 attr=000000000000000f
(XEN) [    1.448458]  00000c7b08000-00000c7b08fff type=4 attr=000000000000000f
(XEN) [    1.455394]  00000c7b09000-00000c7b10fff type=3 attr=000000000000000f
(XEN) [    1.462326]  00000c7b11000-00000c7b18fff type=4 attr=000000000000000f
(XEN) [    1.469260]  00000c7b19000-00000c7b30fff type=3 attr=000000000000000f
(XEN) [    1.476193]  00000c7b31000-00000c7b32fff type=4 attr=000000000000000f
(XEN) [    1.483126]  00000c7b33000-00000c7b55fff type=3 attr=000000000000000f
(XEN) [    1.490059]  00000c7b56000-00000c7b60fff type=4 attr=000000000000000f
(XEN) [    1.496992]  00000c7b61000-00000c7b8cfff type=3 attr=000000000000000f
(XEN) [    1.503925]  00000c7b8d000-00000c9270fff type=4 attr=000000000000000f
(XEN) [    1.510861]  00000c9271000-00000c92d7fff type=3 attr=000000000000000f
(XEN) [    1.517792]  00000c92d8000-00000c92dbfff type=4 attr=000000000000000f
(XEN) [    1.524727]  00000c92dc000-00000c92e5fff type=3 attr=000000000000000f
(XEN) [    1.531661]  00000c92e6000-00000c9330fff type=4 attr=000000000000000f
(XEN) [    1.538593]  00000c9331000-00000c934afff type=3 attr=000000000000000f
(XEN) [    1.545528]  00000c934b000-00000c934efff type=4 attr=000000000000000f
(XEN) [    1.552460]  00000c934f000-00000c936cfff type=3 attr=000000000000000f
(XEN) [    1.559394]  00000c936d000-00000c936dfff type=4 attr=000000000000000f
(XEN) [    1.566325]  00000c936e000-00000c9374fff type=3 attr=000000000000000f
(XEN) [    1.573260]  00000c9375000-00000c937bfff type=4 attr=000000000000000f
(XEN) [    1.580192]  00000c937c000-00000c9389fff type=3 attr=000000000000000f
(XEN) [    1.587127]  00000c938a000-00000c938efff type=4 attr=000000000000000f
(XEN) [    1.594062]  00000c938f000-00000c9390fff type=3 attr=000000000000000f
(XEN) [    1.600993]  00000c9391000-00000c9392fff type=4 attr=000000000000000f
(XEN) [    1.607927]  00000c9393000-00000c9399fff type=3 attr=000000000000000f
(XEN) [    1.614859]  00000c939a000-00000c939bfff type=4 attr=000000000000000f
(XEN) [    1.621794]  00000c939c000-00000c939cfff type=3 attr=000000000000000f
(XEN) [    1.628728]  00000c939d000-00000c93a0fff type=4 attr=000000000000000f
(XEN) [    1.635662]  00000c93a1000-00000c93b7fff type=3 attr=000000000000000f
(XEN) [    1.642595]  00000c93b8000-00000c93b9fff type=4 attr=000000000000000f
(XEN) [    1.649527]  00000c93ba000-00000c93bbfff type=3 attr=000000000000000f
(XEN) [    1.656461]  00000c93bc000-00000c93bcfff type=4 attr=000000000000000f
(XEN) [    1.663394]  00000c93bd000-00000c93cbfff type=3 attr=000000000000000f
(XEN) [    1.670328]  00000c93cc000-00000c93d4fff type=4 attr=000000000000000f
(XEN) [    1.677260]  00000c93d5000-00000c93d6fff type=3 attr=000000000000000f
(XEN) [    1.684194]  00000c93d7000-00000c93d8fff type=4 attr=000000000000000f
(XEN) [    1.691126]  00000c93d9000-00000c93d9fff type=3 attr=000000000000000f
(XEN) [    1.698061]  00000c93da000-00000c93dafff type=4 attr=000000000000000f
(XEN) [    1.704993]  00000c93db000-00000c93dbfff type=3 attr=000000000000000f
(XEN) [    1.711927]  00000c93dc000-00000c9529fff type=4 attr=000000000000000f
(XEN) [    1.718862]  00000c952a000-00000c9533fff type=3 attr=000000000000000f
(XEN) [    1.725793]  00000c9534000-00000c9535fff type=4 attr=000000000000000f
(XEN) [    1.732726]  00000c9536000-00000c9539fff type=3 attr=000000000000000f
(XEN) [    1.739659]  00000c953a000-00000c953dfff type=4 attr=000000000000000f
(XEN) [    1.746595]  00000c953e000-00000c9545fff type=3 attr=000000000000000f
(XEN) [    1.753526]  00000c9546000-00000c9547fff type=4 attr=000000000000000f
(XEN) [    1.760459]  00000c9548000-00000c954bfff type=3 attr=000000000000000f
(XEN) [    1.767394]  00000c954c000-00000c954dfff type=4 attr=000000000000000f
(XEN) [    1.774328]  00000c954e000-00000c9556fff type=3 attr=000000000000000f
(XEN) [    1.781260]  00000c9557000-00000c955afff type=4 attr=000000000000000f
(XEN) [    1.788195]  00000c955b000-00000c955cfff type=3 attr=000000000000000f
(XEN) [    1.795128]  00000c955d000-00000c955ffff type=4 attr=000000000000000f
(XEN) [    1.802061]  00000c9560000-00000c956cfff type=3 attr=000000000000000f
(XEN) [    1.808995]  00000c956d000-00000c97fffff type=4 attr=000000000000000f
(XEN) [    1.815927]  00000c9800000-00000c981afff type=3 attr=000000000000000f
(XEN) [    1.822861]  00000c981b000-00000c982afff type=4 attr=000000000000000f
(XEN) [    1.829793]  00000c982b000-00000c983dfff type=3 attr=000000000000000f
(XEN) [    1.836726]  00000c983e000-00000c983ffff type=4 attr=000000000000000f
(XEN) [    1.843660]  00000c9840000-00000c9843fff type=3 attr=000000000000000f
(XEN) [    1.850596]  00000c9844000-00000c9848fff type=4 attr=000000000000000f
(XEN) [    1.857527]  00000c9849000-00000c985bfff type=3 attr=000000000000000f
(XEN) [    1.864461]  00000c985c000-00000c9860fff type=4 attr=000000000000000f
(XEN) [    1.871393]  00000c9861000-00000c9861fff type=3 attr=000000000000000f
(XEN) [    1.878328]  00000c9862000-00000c9862fff type=4 attr=000000000000000f
(XEN) [    1.885262]  00000c9863000-00000c9863fff type=3 attr=000000000000000f
(XEN) [    1.892196]  00000c9864000-00000c9866fff type=4 attr=000000000000000f
(XEN) [    1.899129]  00000c9867000-00000c9874fff type=3 attr=000000000000000f
(XEN) [    1.906061]  00000c9875000-00000c9875fff type=4 attr=000000000000000f
(XEN) [    1.912995]  00000c9876000-00000c9876fff type=3 attr=000000000000000f
(XEN) [    1.919927]  00000c9877000-00000c9882fff type=4 attr=000000000000000f
(XEN) [    1.926862]  00000c9883000-00000c988bfff type=3 attr=000000000000000f
(XEN) [    1.933794]  00000c988c000-00000c988efff type=4 attr=000000000000000f
(XEN) [    1.940727]  00000c988f000-00000c9894fff type=3 attr=000000000000000f
(XEN) [    1.947660]  00000c9895000-00000c98e1fff type=4 attr=000000000000000f
(XEN) [    1.954593]  00000c98e2000-00000c990ffff type=3 attr=000000000000000f
(XEN) [    1.961529]  00000c9910000-00000c9911fff type=4 attr=000000000000000f
(XEN) [    1.968463]  00000c9912000-00000c9913fff type=3 attr=000000000000000f
(XEN) [    1.975395]  00000c9914000-00000c9915fff type=4 attr=000000000000000f
(XEN) [    1.982326]  00000c9916000-00000c992dfff type=3 attr=000000000000000f
(XEN) [    1.989261]  00000c992e000-00000c9939fff type=4 attr=000000000000000f
(XEN) [    1.996196]  00000c993a000-00000c9960fff type=3 attr=000000000000000f
(XEN) [    2.003127]  00000c9961000-00000c9964fff type=4 attr=000000000000000f
(XEN) [    2.010063]  00000c9965000-00000c996cfff type=3 attr=000000000000000f
(XEN) [    2.016995]  00000c996d000-00000c9974fff type=4 attr=000000000000000f
(XEN) [    2.023929]  00000c9975000-00000c997efff type=3 attr=000000000000000f
(XEN) [    2.030860]  00000c997f000-00000c9988fff type=4 attr=000000000000000f
(XEN) [    2.037796]  00000c9989000-00000c99adfff type=3 attr=000000000000000f
(XEN) [    2.044728]  00000c99ae000-00000c99b7fff type=4 attr=000000000000000f
(XEN) [    2.051662]  00000c99b8000-00000c99b8fff type=3 attr=000000000000000f
(XEN) [    2.058594]  00000c99b9000-00000c99b9fff type=4 attr=000000000000000f
(XEN) [    2.065529]  00000c99ba000-00000c99c1fff type=3 attr=000000000000000f
(XEN) [    2.072461]  00000c99c2000-00000c99c4fff type=4 attr=000000000000000f
(XEN) [    2.079395]  00000c99c5000-00000c99c6fff type=3 attr=000000000000000f
(XEN) [    2.086329]  00000c99c7000-00000c99c7fff type=4 attr=000000000000000f
(XEN) [    2.093261]  00000c99c8000-00000c99d5fff type=3 attr=000000000000000f
(XEN) [    2.100196]  00000c99d6000-00000c99d9fff type=4 attr=000000000000000f
(XEN) [    2.107128]  00000c99da000-00000c99dffff type=3 attr=000000000000000f
(XEN) [    2.114061]  00000c99e0000-00000c99e5fff type=4 attr=000000000000000f
(XEN) [    2.120994]  00000c99e6000-00000c99e6fff type=3 attr=000000000000000f
(XEN) [    2.127929]  00000c99e7000-00000c99e8fff type=4 attr=000000000000000f
(XEN) [    2.134860]  00000c99e9000-00000c99fdfff type=3 attr=000000000000000f
(XEN) [    2.141796]  00000c99fe000-00000c99fefff type=4 attr=000000000000000f
(XEN) [    2.148727]  00000c99ff000-00000c9a01fff type=3 attr=000000000000000f
(XEN) [    2.155660]  00000c9a02000-00000c9a02fff type=4 attr=000000000000000f
(XEN) [    2.162594]  00000c9a03000-00000c9a12fff type=3 attr=000000000000000f
(XEN) [    2.169529]  00000c9a13000-00000c9a15fff type=4 attr=000000000000000f
(XEN) [    2.176463]  00000c9a16000-00000c9a17fff type=3 attr=000000000000000f
(XEN) [    2.183395]  00000c9a18000-00000c9a19fff type=4 attr=000000000000000f
(XEN) [    2.190329]  00000c9a1a000-00000c9a2ffff type=3 attr=000000000000000f
(XEN) [    2.197260]  00000c9a30000-00000c9a30fff type=4 attr=000000000000000f
(XEN) [    2.204197]  00000c9a31000-00000c9a31fff type=3 attr=000000000000000f
(XEN) [    2.211130]  00000c9a32000-00000c9a32fff type=4 attr=000000000000000f
(XEN) [    2.218063]  00000c9a33000-00000c9a33fff type=3 attr=000000000000000f
(XEN) [    2.224997]  00000c9a34000-00000c9a34fff type=4 attr=000000000000000f
(XEN) [    2.231928]  00000c9a35000-00000c9a35fff type=3 attr=000000000000000f
(XEN) [    2.238860]  00000c9a36000-00000c9a36fff type=4 attr=000000000000000f
(XEN) [    2.245796]  00000c9a37000-00000c9a37fff type=3 attr=000000000000000f
(XEN) [    2.252730]  00000c9a38000-00000c9a38fff type=4 attr=000000000000000f
(XEN) [    2.259664]  00000c9a39000-00000c9a4bfff type=3 attr=000000000000000f
(XEN) [    2.266594]  00000c9a4c000-00000c9a4dfff type=4 attr=000000000000000f
(XEN) [    2.273528]  00000c9a4e000-00000c9a52fff type=3 attr=000000000000000f
(XEN) [    2.280461]  00000c9a53000-00000c9a57fff type=4 attr=000000000000000f
(XEN) [    2.287395]  00000c9a58000-00000c9a5cfff type=3 attr=000000000000000f
(XEN) [    2.294330]  00000c9a5d000-00000c9a5ffff type=4 attr=000000000000000f
(XEN) [    2.301261]  00000c9a60000-00000c9a66fff type=3 attr=000000000000000f
(XEN) [    2.308194]  00000c9a67000-00000c9a69fff type=4 attr=000000000000000f
(XEN) [    2.315130]  00000c9a6a000-00000c9a73fff type=3 attr=000000000000000f
(XEN) [    2.322062]  00000c9a74000-00000c9a8afff type=4 attr=000000000000000f
(XEN) [    2.328996]  00000c9a8b000-00000c9a9cfff type=3 attr=000000000000000f
(XEN) [    2.335928]  00000c9a9d000-00000c9a9dfff type=4 attr=000000000000000f
(XEN) [    2.342863]  00000c9a9e000-00000c9a9ffff type=3 attr=000000000000000f
(XEN) [    2.349794]  00000c9aa0000-00000c9aa7fff type=4 attr=000000000000000f
(XEN) [    2.356729]  00000c9aa8000-00000c9aa8fff type=3 attr=000000000000000f
(XEN) [    2.363662]  00000c9aa9000-00000c9aa9fff type=4 attr=000000000000000f
(XEN) [    2.370596]  00000c9aaa000-00000c9aaafff type=3 attr=000000000000000f
(XEN) [    2.377528]  00000c9aab000-00000c9aacfff type=4 attr=000000000000000f
(XEN) [    2.384461]  00000c9aad000-00000c9ab1fff type=3 attr=000000000000000f
(XEN) [    2.391397]  00000c9ab2000-00000c9ab3fff type=4 attr=000000000000000f
(XEN) [    2.398328]  00000c9ab4000-00000c9ab7fff type=3 attr=000000000000000f
(XEN) [    2.405261]  00000c9ab8000-00000c9ab8fff type=4 attr=000000000000000f
(XEN) [    2.412196]  00000c9ab9000-00000c9abefff type=3 attr=000000000000000f
(XEN) [    2.419129]  00000c9abf000-00000c9abffff type=4 attr=000000000000000f
(XEN) [    2.426062]  00000c9ac0000-00000c9acbfff type=3 attr=000000000000000f
(XEN) [    2.432997]  00000c9acc000-00000c9accfff type=4 attr=000000000000000f
(XEN) [    2.439931]  00000c9acd000-00000c9acefff type=3 attr=000000000000000f
(XEN) [    2.446863]  00000c9acf000-00000c9ad0fff type=4 attr=000000000000000f
(XEN) [    2.453797]  00000c9ad1000-00000c9ad1fff type=3 attr=000000000000000f
(XEN) [    2.460731]  00000c9ad2000-00000c9ad2fff type=4 attr=000000000000000f
(XEN) [    2.467663]  00000c9ad3000-00000c9aeefff type=3 attr=000000000000000f
(XEN) [    2.474595]  00000c9aef000-00000c9af1fff type=4 attr=000000000000000f
(XEN) [    2.481530]  00000c9af2000-00000c9af3fff type=3 attr=000000000000000f
(XEN) [    2.488461]  00000c9af4000-00000c9af7fff type=4 attr=000000000000000f
(XEN) [    2.495396]  00000c9af8000-00000c9afbfff type=3 attr=000000000000000f
(XEN) [    2.502331]  00000c9afc000-00000c9afdfff type=4 attr=000000000000000f
(XEN) [    2.509264]  00000c9afe000-00000c9b07fff type=3 attr=000000000000000f
(XEN) [    2.516198]  00000c9b08000-00000c9f07fff type=4 attr=000000000000000f
(XEN) [    2.523130]  00000c9f08000-00000c9f27fff type=3 attr=000000000000000f
(XEN) [    2.530061]  00000c9f28000-00000c9f29fff type=4 attr=000000000000000f
(XEN) [    2.536996]  00000c9f2a000-00000c9f2bfff type=3 attr=000000000000000f
(XEN) [    2.543930]  00000c9f2c000-00000c9f2dfff type=4 attr=000000000000000f
(XEN) [    2.550863]  00000c9f2e000-00000c9f2efff type=3 attr=000000000000000f
(XEN) [    2.557798]  00000c9f2f000-00000c9f2ffff type=4 attr=000000000000000f
(XEN) [    2.564729]  00000c9f30000-00000c9f30fff type=3 attr=000000000000000f
(XEN) [    2.571663]  00000c9f31000-00000c9f31fff type=4 attr=000000000000000f
(XEN) [    2.578596]  00000c9f32000-00000c9f36fff type=3 attr=000000000000000f
(XEN) [    2.585530]  00000c9f37000-00000c9f3afff type=4 attr=000000000000000f
(XEN) [    2.592464]  00000c9f3b000-00000c9f3bfff type=3 attr=000000000000000f
(XEN) [    2.599398]  00000c9f3c000-00000c9f3cfff type=4 attr=000000000000000f
(XEN) [    2.606329]  00000c9f3d000-00000c9f3dfff type=3 attr=000000000000000f
(XEN) [    2.613263]  00000c9f3e000-00000ca411fff type=4 attr=000000000000000f
(XEN) [    2.620195]  00000ca412000-00000ca413fff type=3 attr=000000000000000f
(XEN) [    2.627130]  00000ca414000-00000ca415fff type=4 attr=000000000000000f
(XEN) [    2.634064]  00000ca416000-00000ca41cfff type=3 attr=000000000000000f
(XEN) [    2.640995]  00000ca41d000-00000ca41dfff type=4 attr=000000000000000f
(XEN) [    2.647931]  00000ca41e000-00000ca41efff type=3 attr=000000000000000f
(XEN) [    2.654863]  00000ca41f000-00000ca488fff type=4 attr=000000000000000f
(XEN) [    2.661797]  00000ca489000-00000ca489fff type=3 attr=000000000000000f
(XEN) [    2.668731]  00000ca48a000-00000ca48bfff type=4 attr=000000000000000f
(XEN) [    2.675664]  00000ca48c000-00000ca48cfff type=3 attr=000000000000000f
(XEN) [    2.682597]  00000ca48d000-00000ca491fff type=4 attr=000000000000000f
(XEN) [    2.689529]  00000ca492000-00000ca494fff type=3 attr=000000000000000f
(XEN) [    2.696464]  00000ca495000-00000cabc8fff type=4 attr=000000000000000f
(XEN) [    2.703395]  00000cabc9000-00000cc14cfff type=0 attr=000000000000000f
(XEN) [    2.710330]  00000cc14d000-00000cc195fff type=9 attr=000000000000000f
(XEN) [    2.717263]  00000cc196000-00000cc388fff type=10 attr=000000000000000f
(XEN) [    2.724285]  00000cc389000-00000cc389fff type=0 attr=000000000000000f
(XEN) [    2.731216]  00000cc38a000-00000cc709fff type=10 attr=000000000000000f
(XEN) [    2.738237]  00000cc70a000-00000cd179fff type=6 attr=800000000000000f
(XEN) [    2.745172]  00000cd17a000-00000cd1fefff type=5 attr=800000000000000f
(XEN) [    2.752104]  00000cd1ff000-00000cd7fffff type=4 attr=000000000000000f
(XEN) [    2.759035]  00000cd800000-00000cd8e9fff type=7 attr=000000000000000f
(XEN) [    2.765971]  00000cd8ea000-00000cd9e9fff type=4 attr=000000000000000f
(XEN) [    2.772902]  00000cd9ea000-00000cda05fff type=3 attr=000000000000000f
(XEN) [    2.779837]  00000cda06000-00000cda31fff type=4 attr=000000000000000f
(XEN) [    2.786769]  00000cda32000-00000cda44fff type=3 attr=000000000000000f
(XEN) [    2.793704]  00000cda45000-00000cdf57fff type=4 attr=000000000000000f
(XEN) [    2.800638]  00000cdf58000-00000cdf5afff type=3 attr=000000000000000f
(XEN) [    2.807569]  00000cdf5b000-00000cdf6dfff type=4 attr=000000000000000f
(XEN) [    2.814504]  00000cdf6e000-00000cdf77fff type=3 attr=000000000000000f
(XEN) [    2.821436]  00000cdf78000-00000cdf91fff type=4 attr=000000000000000f
(XEN) [    2.828370]  00000cdf92000-00000cdf97fff type=3 attr=000000000000000f
(XEN) [    2.835303]  00000cdf98000-00000cdfadfff type=4 attr=000000000000000f
(XEN) [    2.842238]  00000cdfae000-00000cdfb1fff type=3 attr=000000000000000f
(XEN) [    2.849171]  00000cdfb2000-00000cdfc5fff type=4 attr=000000000000000f
(XEN) [    2.856103]  00000cdfc6000-00000cdfcafff type=3 attr=000000000000000f
(XEN) [    2.863039]  00000cdfcb000-00000cdfdffff type=4 attr=000000000000000f
(XEN) [    2.869970]  00000cdfe0000-00000cdff1fff type=3 attr=000000000000000f
(XEN) [    2.876904]  00000cdff2000-00000cdff9fff type=4 attr=000000000000000f
(XEN) [    2.883836]  00000cdffa000-00000cdffffff type=3 attr=000000000000000f
(XEN) [    2.890771]  0000100000000-000080f33ffff type=7 attr=000000000000000f
(XEN) [    2.897703]  00000000a0000-00000000fffff type=0 attr=000000000000000f
(XEN) [    2.904639]  00000ce000000-00000cfffffff type=0 attr=000000000000000f
(XEN) [    2.911572]  00000f0000000-00000f7ffffff type=11 attr=800000000000100d
(XEN) [    2.918591]  00000fd000000-00000fedfffff type=11 attr=800000000000100d
(XEN) [    2.925610]  00000fee00000-00000fee00fff type=11 attr=8000000000000001
(XEN) [    2.932632]  00000fee01000-00000ffffffff type=11 attr=800000000000100d
(XEN) [    2.939649]  000080f340000-000082fffffff type=0 attr=000000000000000f
(XEN) [    2.946584]  0000830000000-00008501fffff type=11 attr=800000000000100d
(XEN) [    2.953605] alt table ffff82d0404a1ff8 -> ffff82d0404b3edc
(XEN) [    2.972988] AMD-Vi: IOMMU Extended Features:
(XEN) [    2.977755] - Peripheral Page Service Request
(XEN) [    2.982608] - x2APIC
(XEN) [    2.985294] - NX bit
(XEN) [    2.987982] - Invalidate All Command
(XEN) [    2.992053] - Guest APIC
(XEN) [    2.995088] - Performance Counters
(XEN) [    2.998987] - Host Address Translation Size: 0x2
(XEN) [    3.004101] - Guest Address Translation Size: 0
(XEN) [    3.009128] - Guest CR3 Root Table Level: 0x1
(XEN) [    3.013981] - Maximum PASID: 0xf
(XEN) [    3.017707] - SMI Filter Register: 0x1
(XEN) [    3.021955] - SMI Filter Register Count: 0x1
(XEN) [    3.026719] - Guest Virtual APIC Modes: 0x1
(XEN) [    3.031402] - Dual PPR Log: 0x2
(XEN) [    3.035041] - Dual Event Log: 0x2
(XEN) [    3.038853] - User / Supervisor Page Protection
(XEN) [    3.043880] - Device Table Segmentation: 0x3
(XEN) [    3.048647] - PPR Log Overflow Early Warning
(XEN) [    3.053415] - PPR Automatic Response
(XEN) [    3.057486] - Memory Access Routing and Control: 0
(XEN) [    3.062775] - Block StopMark Message
(XEN) [    3.066847] - Performance Optimization
(XEN) [    3.071093] - MSI Capability MMIO Access
(XEN) [    3.075515] - Guest I/O Protection
(XEN) [    3.079413] - Enhanced PPR Handling
(XEN) [    3.083400] - Attribute Forward
(XEN) [    3.087040] - Invalidate IOTLB Type
(XEN) [    3.091028] - VM Table Size: 0
(XEN) [    3.094579] - Guest Access Bit Update Disable
(XEN) [    3.110569] AMD-Vi: Disabled HAP memory map sharing with IOMMU
(XEN) [    3.116893] AMD-Vi: IOMMU 0 Enabled.
(XEN) [    3.120967] I/O virtualisation enabled
(XEN) [    3.125213]  - Dom0 mode: Relaxed
(XEN) [    3.129026] Interrupt remapping enabled
(XEN) [    3.133360] nr_sockets: 1
(XEN) [    3.136479] Enabling APIC mode.  Using 2 I/O APICs
(XEN) [    3.142373] ENABLING IO-APIC IRQs
(XEN) [    3.146186]  -> Using new ACK method
(XEN) [    3.150290] ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) [    3.306639] Wallclock source: CMOS RTC
(XEN) [    3.743286] Allocated console ring of 128 KiB.
(XEN) [    3.748226] mwait-idle: does not run on family 23 model 96
(XEN) [    3.754208] HVM: ASIDs enabled.
(XEN) [    3.757849] SVM: Supported advanced features:
(XEN) [    3.762701]  - Nested Page Tables (NPT)
(XEN) [    3.767032]  - Last Branch Record (LBR) Virtualisation
(XEN) [    3.772667]  - Next-RIP Saved on #VMEXIT
(XEN) [    3.777089]  - VMCB Clean Bits
(XEN) [    3.780642]  - TLB flush by ASID
(XEN) [    3.784366]  - DecodeAssists
(XEN) [    3.787748]  - Virtual VMLOAD/VMSAVE
(XEN) [    3.791823]  - Virtual GIF
(XEN) [    3.795027]  - Pause-Intercept Filter
(XEN) [    3.799189]  - Pause-Intercept Filter Threshold
(XEN) [    3.804213]  - TSC Rate MSR
(XEN) [    3.807508]  - MSR_SPEC_CTRL virtualisation
(XEN) [    3.812186] HVM: SVM enabled
(XEN) [    3.815569] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    3.821375] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    4.133050] Brought up 16 CPUs
(XEN) [    4.137694] Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) [    4.144282] Initializing null scheduler
(XEN) [    4.148611] WARNING: This is experimental software in development.
(XEN) [    4.155289] Use at your own risk.
(XEN) [    4.159102] mcheck_poll: Machine check polling timer started.
(XEN) [    4.165340] Running stub recovery selftests...
(XEN) [    4.170279] Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038ff6c
(XEN) [    4.178513] Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038ff6c
(XEN) [    4.186747] Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d04038ff6c
(XEN) [    4.194977] Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d04038ff6c
(XEN) [    4.223145] NX (Execute Disable) protection active
(XEN) [    4.228430] d0 has maximum 3328 PIRQs
(XEN) [    4.232678] *** Building a PVH Dom0 ***
(XEN) [    4.240543] d0: identity mappings for IOMMU:
(XEN) [    4.245312]  [00000000a0, 00000000ff] RW
(XEN) [    4.249728]  [0000009bff, 0000009fff] RW
(XEN) [    4.254154]  [00000cabc9, 00000cc14c] RW
(XEN) [    4.258764]  [00000cc389, 00000cc389] RW
(XEN) [    4.263189]  [00000cc70a, 00000cd1fe] RW
(XEN) [    4.268111]  [00000ce000, 00000cffff] RW
(XEN) [    4.272531]  [00000fd000, 00000fd2ff] RW
(XEN) [    4.277025]  [00000fd304, 00000febff] RW
(XEN) [    4.281513]  [00000fec02, 00000fedff] RW
(XEN) [    4.286221]  [00000fee01, 00000fffff] RW
(XEN) [    4.290940]  [000080f340, 00008501ff] RW
(XEN) [    4.296303] arch/x86/pci.c:109:d[IDLE]v0 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [    4.305839] arch/x86/pci.c:109:d[IDLE]v0 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [    4.315370] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [    4.324904] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [    4.334439] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [    4.343975] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [    4.353507] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [    4.363054] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [    4.372586] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [    4.382122] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [    4.391655] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [    4.401183] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [    4.410722] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [    4.420253] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [    4.429788] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [    4.439320] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [    4.557018] Dom0 memory allocation stats:
(XEN) [    4.561526] order  0 allocations: 4
(XEN) [    4.565508] order  1 allocations: 2
(XEN) [    4.569500] order  2 allocations: 2
(XEN) [    4.573482] order  3 allocations: 2
(XEN) [    4.577468] order  4 allocations: 2
(XEN) [    4.581456] order  5 allocations: 4
(XEN) [    4.585442] order  6 allocations: 3
(XEN) [    4.589431] order  7 allocations: 5
(XEN) [    4.593421] order  8 allocations: 4
(XEN) [    4.597407] order  9 allocations: 6
(XEN) [    4.601388] order 10 allocations: 3
(XEN) [    4.605380] order 11 allocations: 6
(XEN) [    4.609361] order 12 allocations: 3
(XEN) [    4.613351] order 13 allocations: 2
(XEN) [    4.617341] order 14 allocations: 3
(XEN) [    4.621328] order 15 allocations: 1
(XEN) [    4.625314] order 16 allocations: 2
(XEN) [    4.629298] order 17 allocations: 2
(XEN) [    4.633287] order 18 allocations: 2
(XEN) [    4.930845] ELF: phdr: paddr=0x1000000 memsz=0x1b1a00c
(XEN) [    4.936477] ELF: phdr: paddr=0x2c00000 memsz=0x892000
(XEN) [    4.942027] ELF: phdr: paddr=0x3492000 memsz=0x2fed8
(XEN) [    4.947484] ELF: phdr: paddr=0x34c2000 memsz=0x56e000
(XEN) [    4.953031] ELF: memory: 0x1000000 -> 0x3a30000
(XEN) [    4.958057] ELF: note: PHYS32_ENTRY = 0x1000000
(XEN) [    4.963088] ELF: note: GUEST_OS = "linux"
(XEN) [    4.967596] ELF: note: GUEST_VERSION = "2.6"
(XEN) [    4.972360] ELF: note: XEN_VERSION = "xen-3.0"
(XEN) [    4.977299] ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) [    4.982845] ELF: note: INIT_P2M = 0x8000000000
(XEN) [    4.987787] ELF: note: ENTRY = 0xffffffff834d4630
(XEN) [    4.992987] ELF: note: FEATURES = "!writable_page_tables"
(XEN) [    4.998881] ELF: note: PAE_MODE = "yes"
(XEN) [    5.003214] ELF: note: L1_MFN_VALID
(XEN) [    5.007197] ELF: note: MOD_START_PFN = 0x1
(XEN) [    5.011794] ELF: note: PADDR_OFFSET = 0
(XEN) [    5.016128] ELF: note: HYPERCALL_PAGE = 0xffffffff82034000
(XEN) [    5.022104] ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) [    5.027396] ELF: note: LOADER = "generic"
(XEN) [    5.031901] ELF: note: SUSPEND_CANCEL = 0x1
(XEN) [    5.036581] ELF: Found PVH image
(XEN) [    5.040306] ELF: addresses:
(XEN) [    5.043598]     virt_base        = 0x0
(XEN) [    5.047849]     elf_paddr_offset = 0x0
(XEN) [    5.052091]     virt_offset      = 0x0
(XEN) [    5.056343]     virt_kstart      = 0x1000000
(XEN) [    5.061110]     virt_kend        = 0x3a30000
(XEN) [    5.065876]     virt_entry       = 0x1000000
(XEN) [    5.070642]     p2m_base         = 0x8000000000
(XEN) [    5.075667] ELF: phdr 0 at 0x1000000 -> 0x2b1a00c
(XEN) [    5.088077] ELF: phdr 1 at 0x2c00000 -> 0x3492000
(XEN) [    5.095499] ELF: phdr 2 at 0x3492000 -> 0x34c1ed8
(XEN) [    5.100698] ELF: phdr 3 at 0x34c2000 -> 0x3789000
(XEN) [    5.165486] Dom0 memory map:
(XEN) [    5.168867]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [    5.174847]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [    5.180995]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [    5.186980]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [    5.193129]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [    5.199111]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [    5.205265]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [    5.211246]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [    5.217395]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [    5.223639]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [    5.229793]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [    5.235946]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [    5.242101]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [    5.248249]  [00000000cd1ff000, 00000000cdfffea7] (usable)
(XEN) [    5.254230]  [00000000cdfffea8, 00000000cdffff3f] (ACPI data)
(XEN) [    5.260471]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [    5.266625]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [    5.272780]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [    5.278932]  [0000000100000000, 0000000134aa3fff] (usable)
(XEN) [    5.284912]  [0000000134aa4000, 000000080f33ffff] (unusable)
(XEN) [    5.291067]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [    5.297219] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    5.303894] Scrubbing Free RAM in background
(XEN) [    5.308660] Std. Loglevel: All
(XEN) [    5.312212] Guest Loglevel: All
(XEN) [    5.315851] ***************************************************
(XEN) [    5.322262] WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) [    5.327552] This option is intended to aid debugging of Xen by ensuring
(XEN) [    5.334659] that all output is synchronously delivered on the serial line.
(XEN) [    5.342025] However it can introduce SIGNIFICANT latencies and affect
(XEN) [    5.348957] timekeeping. It is NOT recommended for production use!
(XEN) [    5.355629] ***************************************************
(XEN) [    5.362046] 3... 2... 1...
(XEN) [    8.365415] *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) [    8.373643] common/sched/null.c:357: 0 <-- d0v0
(XEN) [    8.378871] Freed 656kB init memory
[    0.000000] Linux version 6.11.0 (root@d3484571cc62) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924, GNU ld (GNU Binutils) 2.40) #1 SMP PREEMPT_DYNAMIC Mon May 12 16:50:26 UTC 2025
[    0.000000] Command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug rdinit=/bin/sh
[    0.000000] [Firmware Bug]: TSC doesn't count with P0 frequency!
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009bff000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20cfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20d000-0x00000000cabc8fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000cabc9000-0x00000000cc14cfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc14d000-0x00000000cc195fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000cc196000-0x00000000cc388fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cc389000-0x00000000cc389fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cc38a000-0x00000000cc709fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cc70a000-0x00000000cd1fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000cd1ff000-0x00000000cdfffea7] usable
[    0.000000] BIOS-e820: [mem 0x00000000cdfffea8-0x00000000cdffff3f] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000ce000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000080f33ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000080f340000-0x00000008501fffff] reserved
[    0.000000] printk: legacy bootconsole [xenboot0] enabled
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] APIC: Static calls initialized
[    0.000000] efi: EFI v2.7 by American Megatrends
[    0.000000] efi: ACPI=0xcc6f3000 ACPI 2.0=0xcc6f3014 TPMFinalLog=0xcc6c2000 SMBIOS=0xccfd6000 SMBIOS 3.0=0xccfd5000 (MEMATTR=0xc7a4b518 unusable) ESRT=0xcc15a018
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI:  /7D785 / 7D786, BIOS 5.16 02/24/2025
[    0.000000] DMI: Memory slots populated: 2/2
[    0.000000] Hypervisor detected: Xen HVM
[    0.000000] Xen version 4.21.
[    0.000004] HVMOP_pagetable_dying not supported
[    0.049129] tsc: Fast TSC calibration failed
[    0.053229] tsc: Detected 2894.552 MHz processor
[    0.057964] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.064495] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.070047] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
[    0.075557] MTRR map: 4 entries (3 fixed + 1 variable; max 20), built from 9 variable MTRRs
[    0.083821] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.091765] CPU MTRRs all blank - virtualized system.
[    0.096655] last_pfn = 0xcdfff max_arch_pfn = 0x400000000
[    0.105710] esrt: Reserving ESRT space from 0x00000000cc15a018 to 0x00000000cc15a050.
[    0.113365] Using GB pages for direct mapping
[    0.118520] Secure boot disabled
[    0.121581] RAMDISK: [mem 0x0a20d000-0x16ce0fff]
[    0.126688] ACPI: Early table checksum verification disabled
[    0.132179] ACPI: RSDP 0x00000000CDFFFEA8 000024 (v02 ALASKA)
[    0.137896] ACPI: XSDT 0x00000000CDFFFECC 00009C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.146390] ACPI: APIC 0x00000000CDFFFF68 000098 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.154883] ACPI: FACP 0x00000000CC18C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.163418] ACPI: DSDT 0x00000000CC183000 00876D (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.171867] ACPI: FACS 0x00000000CC6C0000 000040
[    0.176460] ACPI: SSDT 0x00000000CC18E000 00723C (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.184957] ACPI: MCFG 0x00000000CC181000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.193450] ACPI: SSDT 0x00000000CC17F000 000228 (v01 AMD    STD3     00000001 INTL 20120913)
[    0.201940] ACPI: VFCT 0x00000000CC171000 00D684 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.210434] ACPI: SSDT 0x00000000CC16B000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.218932] ACPI: SSDT 0x00000000CC168000 000139 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.227425] ACPI: SSDT 0x00000000CC167000 000227 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.235917] ACPI: SSDT 0x00000000CC166000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.244409] ACPI: SSDT 0x00000000CC164000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.252903] ACPI: SSDT 0x00000000CC160000 0030C8 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.261395] ACPI: SSDT 0x00000000CC15D000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.269887] ACPI: SSDT 0x00000000CC15C000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.278386] ACPI: FPDT 0x00000000CC15B000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.286871] ACPI: Reserving APIC table memory at [mem 0xcdffff68-0xcdffffff]
[    0.293892] ACPI: Reserving FACP table memory at [mem 0xcc18c000-0xcc18c113]
[    0.300912] ACPI: Reserving DSDT table memory at [mem 0xcc183000-0xcc18b76c]
[    0.307936] ACPI: Reserving FACS table memory at [mem 0xcc6c0000-0xcc6c003f]
[    0.314952] ACPI: Reserving SSDT table memory at [mem 0xcc18e000-0xcc19523b]
[    0.321975] ACPI: Reserving MCFG table memory at [mem 0xcc181000-0xcc18103b]
[    0.328991] ACPI: Reserving SSDT table memory at [mem 0xcc17f000-0xcc17f227]
[    0.336014] ACPI: Reserving VFCT table memory at [mem 0xcc171000-0xcc17e683]
[    0.343036] ACPI: Reserving SSDT table memory at [mem 0xcc16b000-0xcc16e9f3]
[    0.350053] ACPI: Reserving SSDT table memory at [mem 0xcc168000-0xcc168138]
[    0.357071] ACPI: Reserving SSDT table memory at [mem 0xcc167000-0xcc167226]
[    0.364091] ACPI: Reserving SSDT table memory at [mem 0xcc166000-0xcc166d36]
[    0.371117] ACPI: Reserving SSDT table memory at [mem 0xcc164000-0xcc1650a4]
[    0.378135] ACPI: Reserving SSDT table memory at [mem 0xcc160000-0xcc1630c7]
[    0.385154] ACPI: Reserving SSDT table memory at [mem 0xcc15d000-0xcc15d07c]
[    0.392175] ACPI: Reserving SSDT table memory at [mem 0xcc15c000-0xcc15c516]
[    0.399197] ACPI: Reserving FPDT table memory at [mem 0xcc15b000-0xcc15b043]
[    0.406323] No NUMA configuration found
[    0.410025] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
[    0.416704] NODE_DATA(0) allocated [mem 0x134a9f000-0x134aa2fff]
[    0.422715] Zone ranges:
[    0.425195]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.431349]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.437501]   Normal   [mem 0x0000000100000000-0x000000080f33ffff]
[    0.443657] Movable zone start for each node
[    0.447904] Early memory node ranges
[    0.451456]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.457694]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.463931]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.470176]   node   0: [mem 0x000000000a20d000-0x00000000cabc8fff]
[    0.476415]   node   0: [mem 0x00000000cd1ff000-0x00000000cdffefff]
[    0.482657]   node   0: [mem 0x0000000100000000-0x000000080f33ffff]
[    0.488899] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
[    0.495921] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.501735] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.507742] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.518450] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.524486] On node 0, zone DMA32: 9782 pages in unavailable ranges
[    0.574439] On node 0, zone Normal: 8193 pages in unavailable ranges
[    0.580657] On node 0, zone Normal: 3264 pages in unavailable ranges
[    0.587384] ACPI: PM-Timer IO Port: 0x808
[    0.591276] IOAPIC[0]: apic_id 17, version 17, address 0xfec00000, GSI 0-23
[    0.598186] IOAPIC[1]: apic_id 18, version 17, address 0xfec01000, GSI 24-55
[    0.605178] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.611503] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.618007] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.624419] CPU topo: Max. logical packages:   1
[    0.629009] CPU topo: Max. logical dies:       1
[    0.633602] CPU topo: Max. dies per package:   1
[    0.638202] CPU topo: Max. threads per core:   1
[    0.642787] CPU topo: Num. cores per package:     4
[    0.647644] CPU topo: Num. threads per package:   4
[    0.652496] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.658579] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.666105] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.673645] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    0.681185] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[    0.688720] PM: hibernation: Registered nosave memory: [mem 0xcabc9000-0xcc14cfff]
[    0.696261] PM: hibernation: Registered nosave memory: [mem 0xcc14d000-0xcc195fff]
[    0.703804] PM: hibernation: Registered nosave memory: [mem 0xcc196000-0xcc388fff]
[    0.711340] PM: hibernation: Registered nosave memory: [mem 0xcc389000-0xcc389fff]
[    0.718880] PM: hibernation: Registered nosave memory: [mem 0xcc38a000-0xcc709fff]
[    0.726420] PM: hibernation: Registered nosave memory: [mem 0xcc70a000-0xcd1fefff]
[    0.733960] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    0.741501] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    0.749043] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xcfffffff]
[    0.756580] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
[    0.764123] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.771972] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
[    0.779363] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.786907] [mem 0xd0000000-0xefffffff] available for PCI devices
[    0.792974] Booting kernel on Xen PVH
[    0.796612] Xen version: 4.21-unstable
[    0.800336] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.815555] setup_percpu: NR_CPUS:64 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.823091] percpu: Embedded 57 pages/cpu s196312 r8192 d28968 u524288
[    0.829446] pcpu-alloc: s196312 r8192 d28968 u524288 alloc=1*2097152
[    0.835770] pcpu-alloc: [0] 0 1 2 3
[    0.839349] Kernel command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug rdinit=/bin/sh
[    0.848216] random: crng init done
[    0.851873] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.859812] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.867406] Fallback order for Node 0: 0
[    0.867410] Built 1 zonelists, mobility grouping on.  Total pages: 8235162
[    0.878214] Policy zone: Normal
[    0.881329] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.888093] software IO TLB: area num 4.
[    0.978912] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Poking KASLR using RDRAND RDTSC...
[    0.989451] Dynamic Preempt: voluntary
[    0.993056] rcu: Preemptible hierarchical RCU implementation.
[    0.998752] rcu: 	RCU event tracing is enabled.
[    1.003258] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    1.009846] 	Trampoline variant of Tasks RCU enabled.
[    1.014872] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.022499] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.029175] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    1.037355] Using NULL legacy PIC
[    1.040500] NR_IRQS: 4352, nr_irqs: 1000, preallocated irqs: 0
[    1.046332] xen:events: Using FIFO-based ABI
(XEN) [    9.665683] d0v0: upcall vector f3
[    1.054458] xen:events: Xen HVM callback vector for event delivery is enabled
[    1.061589] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.068446] Console: colour dummy device 80x25
[    1.072827] printk: legacy console [tty0] enabled
[    1.077754] printk: legacy console [hvc0] enabled

[    1.077754] printk: legacy console [hvc0] enabled
[    1.087056] printk: legacy bootconsole [xenboot0] disabled

[    1.087056] printk: legacy bootconsole [xenboot0] disabled
[    1.098067] ACPI: Core revision 20240322

[    1.120616] Failed to register legacy timer interrupt

[    1.125582] APIC: Switch to symmetric I/O mode setup

[    1.131350] x2apic enabled

[    1.134849] APIC: Switched APIC routing to: physical x2apic

[    1.140426] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29b92898602, max_idle_ns: 440795349930 ns

[    1.150914] Calibrating delay loop (skipped), value calculated using timer frequency.. 5789.10 BogoMIPS (lpj=2894552)

[    1.151912] x86/cpu: User Mode Instruction Prevention (UMIP) activated

[    1.151912] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512

[    1.151912] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0

[    1.151912] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization

[    1.151912] Spectre V2 : Mitigation: Retpolines

[    1.151912] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch

[    1.151912] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT

[    1.151912] Spectre V2 : Enabling Speculation Barrier for firmware calls

[    1.151912] RETBleed: Mitigation: untrained return thunk

[    1.151912] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier

[    1.151912] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl

[    1.151912] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'

[    1.151912] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'

[    1.151912] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'

[    1.151912] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256

[    1.151912] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.

[    1.151912] Freeing SMP alternatives memory: 52K

[    1.151912] pid_max: default: 32768 minimum: 301

[    1.151912] LSM: initializing lsm=capability,selinux

[    1.151912] SELinux:  Initializing.

[    1.151912] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)

[    1.151912] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)

[    1.151912] clocksource: xen: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns

[    1.151912] Xen: using vcpuop timer interface

[    1.151912] installing Xen timer for CPU 0

[    1.151912] smpboot: CPU0: AMD Ryzen Embedded V2748 with Radeon Graphics (family: 0x17, model: 0x60, stepping: 0x1)

[    1.152030] Performance Events: PMU not available due to virtualization, using software events only.

[    1.152932] signal: max sigframe size: 1776

[    1.153935] rcu: Hierarchical SRCU implementation.

[    1.154917] rcu: 	Max phase no-delay instances is 400.

[    1.155943] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level

[    1.159788] smp: Bringing up secondary CPUs ...

[    1.159970] installing Xen timer for CPU 1

[    1.160979] smpboot: x86: Booting SMP configuration:

(XEN) [   10.018227] common/sched/null.c:357: 1 <-- d0v1
[    1.161918] .... node  #0, CPUs:      #1

[    1.163342] installing Xen timer for CPU 2

(XEN) [   10.031775] common/sched/null.c:357: 2 <-- d0v2
[    1.164997]  #2

[    1.166038] installing Xen timer for CPU 3

(XEN) [   10.042806] common/sched/null.c:357: 3 <-- d0v3
[    1.168024]  #3

[    1.171982] smp: Brought up 1 node, 4 CPUs

[    1.173919] smpboot: Total of 4 processors activated (23156.41 BogoMIPS)

[    1.175963] Memory: 3349440K/32940648K available (20480K kernel code, 2926K rwdata, 7276K rodata, 2980K init, 2524K bss, 29587252K reserved, 0K cma-reserved)

[    1.177671] devtmpfs: initialized

[    1.177940] x86/mm: Memory block size: 128MB

[    1.180920] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20cfff] (53248 bytes)

[    1.181919] ACPI: PM: Registering ACPI NVS region [mem 0xcc196000-0xcc388fff] (2043904 bytes)

[    1.182936] ACPI: PM: Registering ACPI NVS region [mem 0xcc38a000-0xcc709fff] (3670016 bytes)

[    1.183971] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns

[    1.184921] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)

[    1.185985] PM: RTC time: 01:17:40, date: 2025-05-13

[    1.187113] NET: Registered PF_NETLINK/PF_ROUTE protocol family

[    1.187932] xen:grant_table: Grant tables using version 1 layout

[    1.188935] Grant table initialized

[    1.189990] audit: initializing netlink subsys (disabled)

[    1.190931] audit: type=2000 audit(1747099060.684:1): state=initialized audit_enabled=0 res=1

[    1.190967] thermal_sys: Registered thermal governor 'step_wise'

[    1.198921] thermal_sys: Registered thermal governor 'user_space'

[    1.204927] cpuidle: using governor menu

[    1.215127] PCI: ECAM [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) for domain 0000 [bus 00-7f]

[    1.223933] PCI: Using configuration type 1 for base access

[    1.229940] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.

[    1.239039] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages

[    1.244919] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page

[    1.251918] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages

[    1.258918] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page

[    1.264972] ACPI: Added _OSI(Module Device)

[    1.268919] ACPI: Added _OSI(Processor Device)

[    1.273918] ACPI: Added _OSI(3.0 _SCP Extensions)

[    1.278918] ACPI: Added _OSI(Processor Aggregator Device)

[    1.295468] ACPI: 11 ACPI AML tables successfully acquired and loaded

(XEN) [   10.274536] d0: bind: m_gsi=9 g_gsi=9
[    1.307417] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored

[    1.319110] ACPI: Interpreter enabled

[    1.322931] ACPI: PM: (supports S0 S3 S4 S5)

[    1.327920] ACPI: Using IOAPIC for interrupt routing

[    1.333143] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug

[    1.341926] PCI: Ignoring E820 reservations for host bridge windows

[    1.348283] ACPI: Enabled 6 GPEs in block 00 to 1F

[    1.354452] ACPI: \_SB_.P0S0: New power resource

[    1.358938] ACPI: \_SB_.P3S0: New power resource

[    1.363969] ACPI: \_SB_.P0S1: New power resource

[    1.367935] ACPI: \_SB_.P3S1: New power resource

[    1.379271] ACPI: \_SB_.PRWL: New power resource

[    1.383936] ACPI: \_SB_.PRWB: New power resource

[    1.388275] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])

[    1.394922] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]

[    1.404052] acpi PNP0A08:00: _OSC: OS now controls [PME PCIeCapability LTR]

[    1.410924] acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf0000000-0xf7ffffff] for domain 0000 [bus 00-7f] only partially covers this bridge

[    1.423205] PCI host bridge to bus 0000:00

[    1.426919] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]

[    1.433919] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]

[    1.440918] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]

[    1.446919] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]

[    1.453925] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]

[    1.461920] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfebfffff window]

[    1.468923] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]

[    1.476919] pci_bus 0000:00: root bus resource [mem 0x830000000-0xffffffffff window]

[    1.483919] pci_bus 0000:00: root bus resource [bus 00-ff]

[    1.488947] pci 0000:00:00.0: [1022:1630] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.472494] PCI add device 0000:00:00.0
[    1.500945] pci 0000:00:00.2: [1022:1631] type 00 class 0x080600 conventional PCI endpoint

(XEN) [   10.485147] PCI add device 0000:00:00.2
[    1.513949] pci 0000:00:01.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.497804] PCI add device 0000:00:01.0
[    1.525953] pci 0000:00:02.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.510454] PCI add device 0000:00:02.0
[    1.538947] pci 0000:00:02.1: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    1.545970] pci 0000:00:02.1: PCI bridge to [bus 01]

[    1.550941] pci 0000:00:02.1:   bridge window [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    1.559115] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold

(XEN) [   10.541687] PCI add device 0000:00:02.1
[    1.569948] pci 0000:00:02.3: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    1.576967] pci 0000:00:02.3: PCI bridge to [bus 02]

[    1.581929] pci 0000:00:02.3:   bridge window [mem 0xfea00000-0xfeafffff]

[    1.588947] pci 0000:00:02.3: enabling Extended Tags

[    1.594103] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold

(XEN) [   10.576606] PCI add device 0000:00:02.3
[    1.603947] pci 0000:00:02.4: [1022:1634] type 01 class 0x060400 PCIe Root Port

[    1.611967] pci 0000:00:02.4: PCI bridge to [bus 03]

[    1.616926] pci 0000:00:02.4:   bridge window [io  0xf000-0xffff]

[    1.622922] pci 0000:00:02.4:   bridge window [mem 0xfe900000-0xfe9fffff]

[    1.628947] pci 0000:00:02.4: enabling Extended Tags

[    1.634107] pci 0000:00:02.4: PME# supported from D0 D3hot D3cold

(XEN) [   10.617715] PCI add device 0000:00:02.4
[    1.644954] pci 0000:00:08.0: [1022:1632] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.630365] PCI add device 0000:00:08.0
[    1.656946] pci 0000:00:08.1: [1022:1635] type 01 class 0x060400 PCIe Root Port

[    1.664968] pci 0000:00:08.1: PCI bridge to [bus 04]

[    1.669926] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]

[    1.675922] pci 0000:00:08.1:   bridge window [mem 0xfe400000-0xfe7fffff]

[    1.682932] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]

[    1.689933] pci 0000:00:08.1: enabling Extended Tags

[    1.695073] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold

(XEN) [   10.679171] PCI add device 0000:00:08.1
[    1.705949] pci 0000:00:08.2: [1022:1635] type 01 class 0x060400 PCIe Root Port

[    1.712968] pci 0000:00:08.2: PCI bridge to [bus 05]

[    1.717928] pci 0000:00:08.2:   bridge window [mem 0xfe800000-0xfe8fffff]

[    1.724945] pci 0000:00:08.2: enabling Extended Tags

[    1.730073] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold

(XEN) [   10.714019] PCI add device 0000:00:08.2
[    1.739969] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint

(XEN) [   10.726738] PCI add device 0000:00:14.0
[    1.752938] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint

(XEN) [   10.739462] PCI add device 0000:00:14.3
[    1.764957] pci 0000:00:18.0: [1022:1448] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.752110] PCI add device 0000:00:18.0
[    1.777936] pci 0000:00:18.1: [1022:1449] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.764766] PCI add device 0000:00:18.1
[    1.789935] pci 0000:00:18.2: [1022:144a] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.777422] PCI add device 0000:00:18.2
[    1.802935] pci 0000:00:18.3: [1022:144b] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.790071] PCI add device 0000:00:18.3
[    1.814935] pci 0000:00:18.4: [1022:144c] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.802729] PCI add device 0000:00:18.4
[    1.827937] pci 0000:00:18.5: [1022:144d] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.815382] PCI add device 0000:00:18.5
[    1.838935] pci 0000:00:18.6: [1022:144e] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.828030] PCI add device 0000:00:18.6
[    1.851935] pci 0000:00:18.7: [1022:144f] type 00 class 0x060000 conventional PCI endpoint

(XEN) [   10.840687] PCI add device 0000:00:18.7
[    1.864015] pci 0000:01:00.0: [10ee:5700] type 00 class 0x120000 PCIe Endpoint

[    1.870947] pci 0000:01:00.0: BAR 0 [mem 0xffe0000000-0xffefffffff 64bit pref]

[    1.878936] pci 0000:01:00.0: BAR 2 [mem 0xfff8040000-0xfff807ffff 64bit pref]

[    1.886124] pci 0000:01:00.0: supports D1

[    1.889918] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold

(XEN) [   10.877577] PCI add device 0000:01:00.0
[    1.900962] pci 0000:01:00.1: [10ee:5701] type 00 class 0x120000 PCIe Endpoint

[    1.907947] pci 0000:01:00.1: BAR 0 [mem 0xfff8000000-0xfff803ffff 64bit pref]

[    1.914935] pci 0000:01:00.1: BAR 2 [mem 0xfff0000000-0xfff7ffffff 64bit pref]

[    1.922107] pci 0000:01:00.1: supports D1

[    1.925918] pci 0000:01:00.1: PME# supported from D0 D1 D3hot D3cold

(XEN) [   10.914398] PCI add device 0000:01:00.1
[    1.936942] pci 0000:00:02.1: PCI bridge to [bus 01]

[    1.942017] pci 0000:02:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint

(XEN) [   10.931041] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   10.940143] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   10.949240] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   10.958341] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
[    1.967917] pci 0000:02:00.0: BAR 0 [mem 0xfea00000-0xfea03fff 64bit]

(XEN) [   10.973941] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   10.983041] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   10.992138] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.001238] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.010340] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.019444] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.028543] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.037639] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.046744] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.055838] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.064941] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.074043] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.083139] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.092244] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.101343] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.110439] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.119544] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.128639] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.137744] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.146840] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.156365] PCI add device 0000:02:00.0
[    2.070931] pci 0000:00:02.3: PCI bridge to [bus 02]

[    2.076019] pci 0000:03:00.0: [10ec:8125] type 00 class 0x020000 PCIe Endpoint

(XEN) [   11.172999] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.182099] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.191205] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.200299] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.209404] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.218500] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.227600] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.236703] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.119918] pci 0000:03:00.0: BAR 0 [io  0xf000-0xf0ff]

(XEN) [   11.251089] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.260186] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.269286] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.278389] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.287491] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.296590] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.305689] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.314790] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.323892] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.332991] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.342089] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.351190] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.360287] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.369387] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.378490] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.387587] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.192918] pci 0000:03:00.0: BAR 2 [mem 0xfe900000-0xfe90ffff 64bit]

(XEN) [   11.403192] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.412291] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.421387] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.430492] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.439588] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.448690] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.457786] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.466890] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.236918] pci 0000:03:00.0: BAR 4 [mem 0xfe910000-0xfe913fff 64bit]

(XEN) [   11.482487] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.491586] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.500686] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.509790] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.518890] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.527990] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.537087] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.546192] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.281152] pci 0000:03:00.0: supports D1 D2

[    2.285918] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold

(XEN) [   11.566678] PCI add device 0000:03:00.0
[    2.297042] pci 0000:00:02.4: PCI bridge to [bus 03]

[    2.302008] pci 0000:04:00.0: [1002:1636] type 00 class 0x030000 PCIe Legacy Endpoint

(XEN) [   11.583924] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.593457] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.602558] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.611660] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.328917] pci 0000:04:00.0: BAR 0 [mem 0xd0000000-0xdfffffff 64bit pref]

(XEN) [   11.627694] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.637217] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.646322] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.655418] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.354917] pci 0000:04:00.0: BAR 2 [mem 0xe0000000-0xe01fffff 64bit pref]

(XEN) [   11.671451] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.680984] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.690087] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.699190] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.380917] pci 0000:04:00.0: BAR 4 [io  0xe000-0xe0ff]

(XEN) [   11.713571] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.723104] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.732208] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.741304] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.405917] pci 0000:04:00.0: BAR 5 [mem 0xfe700000-0xfe77ffff]

(XEN) [   11.756390] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.765927] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.775022] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   11.784122] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.430927] pci 0000:04:00.0: enabling Extended Tags

[    2.436150] pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold

[    2.443011] pci 0000:04:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)

(XEN) [   11.820368] PCI add device 0000:04:00.0
[    2.462947] pci 0000:04:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint

[    2.469936] pci 0000:04:00.1: BAR 0 [mem 0xfe7c8000-0xfe7cbfff]

[    2.475970] pci 0000:04:00.1: enabling Extended Tags

[    2.481001] pci 0000:04:00.1: PME# supported from D1 D2 D3hot D3cold

(XEN) [   11.850005] PCI add device 0000:04:00.1
[    2.491947] pci 0000:04:00.2: [1022:15df] type 00 class 0x108000 PCIe Endpoint

[    2.498950] pci 0000:04:00.2: BAR 2 [mem 0xfe600000-0xfe6fffff]

[    2.504940] pci 0000:04:00.2: BAR 5 [mem 0xfe7cc000-0xfe7cdfff]

[    2.510935] pci 0000:04:00.2: enabling Extended Tags

(XEN) [   11.878663] PCI add device 0000:04:00.2
[    2.519946] pci 0000:04:00.3: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint

(XEN) [   11.890280] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.899376] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.908480] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.917579] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
[    2.545917] pci 0000:04:00.3: BAR 0 [mem 0xfe500000-0xfe5fffff 64bit]

(XEN) [   11.933180] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.942279] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.951377] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.960479] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.969582] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.978681] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.987779] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   11.996880] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.005980] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.015079] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.024177] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.033282] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.042377] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.051482] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.060581] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.069680] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.078777] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.087880] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.096980] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.106077] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
[    2.648930] pci 0000:04:00.3: enabling Extended Tags

[    2.654012] pci 0000:04:00.3: PME# supported from D0 D3hot D3cold

(XEN) [   12.126358] PCI add device 0000:04:00.3
[    2.664946] pci 0000:04:00.4: [1022:1639] type 00 class 0x0c0330 PCIe Endpoint

(XEN) [   12.137970] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.147072] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.156171] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.165270] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
[    2.690917] pci 0000:04:00.4: BAR 0 [mem 0xfe400000-0xfe4fffff 64bit]

(XEN) [   12.180871] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.189976] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.199070] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.208173] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.217274] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.226371] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.235472] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.244573] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.253672] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.262774] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.271871] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.280974] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.290070] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.299176] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.308271] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.317376] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.326474] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.335571] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.344673] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.353771] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
[    2.793930] pci 0000:04:00.4: enabling Extended Tags

[    2.799012] pci 0000:04:00.4: PME# supported from D0 D3hot D3cold

(XEN) [   12.374057] PCI add device 0000:04:00.4
[    2.809947] pci 0000:04:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint

[    2.816936] pci 0000:04:00.5: BAR 0 [mem 0xfe780000-0xfe7bffff]

[    2.822970] pci 0000:04:00.5: enabling Extended Tags

[    2.828029] pci 0000:04:00.5: PME# supported from D0 D3hot D3cold

(XEN) [   12.402828] PCI add device 0000:04:00.5
[    2.837947] pci 0000:04:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint

[    2.844936] pci 0000:04:00.6: BAR 0 [mem 0xfe7c0000-0xfe7c7fff]

[    2.850970] pci 0000:04:00.6: enabling Extended Tags

[    2.856001] pci 0000:04:00.6: PME# supported from D0 D3hot D3cold

(XEN) [   12.431598] PCI add device 0000:04:00.6
[    2.866982] pci 0000:00:08.1: PCI bridge to [bus 04]

[    2.872007] pci 0000:05:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   12.448239] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.457341] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.466439] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.475541] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.484640] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.493738] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.502838] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.511942] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.521042] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.530140] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.539238] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.548341] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.557439] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.566541] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.575643] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.584744] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.593838] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.602939] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.612044] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.621140] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.630241] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.639344] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.648438] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.657541] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
[    2.993918] pci 0000:05:00.0: BAR 5 [mem 0xfe801000-0xfe8017ff]

(XEN) [   12.672618] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.681720] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.690824] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.699923] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
[    3.018929] pci 0000:05:00.0: enabling Extended Tags

[    3.025208] pci 0000:05:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)

(XEN) [   12.730008] PCI add device 0000:05:00.0
[    3.043948] pci 0000:05:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   12.741624] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.750721] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.759818] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.768921] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.778022] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.787118] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.796224] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.805319] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.814424] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.823519] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.832622] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.841723] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.850819] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.859918] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.869022] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.878119] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.887218] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.896319] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.905421] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.914522] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.923624] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.932720] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.941822] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.950922] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
[    3.158919] pci 0000:05:00.1: BAR 5 [mem 0xfe800000-0xfe8007ff]

(XEN) [   12.966003] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.975099] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.984199] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   12.993302] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
[    3.182927] pci 0000:05:00.1: enabling Extended Tags

(XEN) [   13.007493] PCI add device 0000:05:00.1
[    3.192957] pci 0000:00:08.2: PCI bridge to [bus 05]

[    3.197552] ACPI: PCI: Interrupt link LNKA configured for IRQ 0

[    3.203964] ACPI: PCI: Interrupt link LNKB configured for IRQ 0

[    3.209957] ACPI: PCI: Interrupt link LNKC configured for IRQ 0

[    3.214967] ACPI: PCI: Interrupt link LNKD configured for IRQ 0

[    3.220961] ACPI: PCI: Interrupt link LNKE configured for IRQ 0

[    3.226953] ACPI: PCI: Interrupt link LNKF configured for IRQ 0

[    3.232954] ACPI: PCI: Interrupt link LNKG configured for IRQ 0

[    3.238954] ACPI: PCI: Interrupt link LNKH configured for IRQ 0

[    3.244874] xen:balloon: Initialising balloon driver

[    3.332995] iommu: Default domain type: Translated

[    3.337921] iommu: DMA domain TLB invalidation policy: lazy mode

[    3.343973] SCSI subsystem initialized

[    3.347935] libata version 3.00 loaded.

[    3.350931] ACPI: bus type USB registered

[    3.354927] usbcore: registered new interface driver usbfs

[    3.360921] usbcore: registered new interface driver hub

[    3.365922] usbcore: registered new device driver usb

[    3.370926] pps_core: LinuxPPS API ver. 1 registered

[    3.375918] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

[    3.384921] PTP clock support registered

[    3.388962] efivars: Registered efivars operations

[    3.392934] Advanced Linux Sound Architecture Driver Initialized.

[    3.399013] NetLabel: Initializing

[    3.402918] NetLabel:  domain hash size = 128

[    3.406918] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO

[    3.412928] NetLabel:  unlabeled traffic allowed by default

[    3.417935] PCI: Using ACPI for IRQ routing

[    3.429818] PCI: pci_cache_line_size set to 64 bytes

[    3.435030] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00

[    3.442919] resource: Expanded resource Reserved due to conflict with PCI Bus 0000:00

[    3.449919] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]

[    3.455918] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]

[    3.461918] e820: reserve RAM buffer [mem 0xcabc9000-0xcbffffff]

[    3.467918] e820: reserve RAM buffer [mem 0xcdfffea8-0xcfffffff]

[    3.473919] e820: reserve RAM buffer [mem 0x80f340000-0x80fffffff]

[    3.479931] pci 0000:04:00.0: vgaarb: setting as boot VGA device

[    3.480912] pci 0000:04:00.0: vgaarb: bridge control possible

[    3.480912] pci 0000:04:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none

[    3.499918] vgaarb: loaded

[    3.503009] clocksource: Switched to clocksource tsc-early

[    3.508401] VFS: Disk quotas dquot_6.6.0

[    3.512329] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)

[    3.519305] pnp: PnP ACPI init

[    3.522461] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved

[    3.529237] system 00:02: [io  0x0a00-0x0a0f] has been reserved

[    3.535089] system 00:02: [io  0x0a10-0x0a1f] has been reserved

[    3.541070] system 00:02: [io  0x0a20-0x0a2f] has been reserved

[    3.547255] pnp 00:03: [dma 0 disabled]

[    3.551244] pnp 00:04: [dma 0 disabled]

[    3.555230] system 00:05: [io  0x04d0-0x04d1] has been reserved

[    3.561079] system 00:05: [io  0x040b] has been reserved

[    3.566450] system 00:05: [io  0x04d6] has been reserved

[    3.571826] system 00:05: [io  0x0c00-0x0c01] has been reserved

[    3.577806] system 00:05: [io  0x0c14] has been reserved

[    3.583179] system 00:05: [io  0x0c50-0x0c51] has been reserved

[    3.589156] system 00:05: [io  0x0c52] has been reserved

[    3.594527] system 00:05: [io  0x0c6c] has been reserved

[    3.599900] system 00:05: [io  0x0c6f] has been reserved

[    3.605276] system 00:05: [io  0x0cd0-0x0cd1] has been reserved

[    3.611257] system 00:05: [io  0x0cd2-0x0cd3] has been reserved

[    3.617237] system 00:05: [io  0x0cd4-0x0cd5] has been reserved

[    3.623216] system 00:05: [io  0x0cd6-0x0cd7] has been reserved

[    3.629194] system 00:05: [io  0x0cd8-0x0cdf] has been reserved

[    3.635177] system 00:05: [io  0x0800-0x089f] has been reserved

[    3.641155] system 00:05: [io  0x0b00-0x0b0f] has been reserved

[    3.647135] system 00:05: [io  0x0b20-0x0b3f] has been reserved

[    3.653119] system 00:05: [io  0x0900-0x090f] has been reserved

[    3.659096] system 00:05: [io  0x0910-0x091f] has been reserved

[    3.665078] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved

[    3.672096] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved

[    3.679118] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved

[    3.685791] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved

[    3.692466] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved

[    3.699485] system 00:05: [mem 0xfec10000-0xfec10fff] could not be reserved

[    3.706505] system 00:05: [mem 0xff000000-0xffffffff] has been reserved

[    3.713869] pnp: PnP ACPI: found 6 devices

[    3.725584] PM-Timer failed consistency check  (0xffffff) - aborting.

[    3.731969] NET: Registered PF_INET protocol family

[    3.736936] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)

[    3.744840] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)

[    3.753289] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)

[    3.761099] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)

[    3.769080] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)

[    3.776576] TCP: Hash tables configured (established 32768 bind 32768)

[    3.783115] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)

[    3.789861] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)

[    3.797074] NET: Registered PF_UNIX/PF_LOCAL protocol family

[    3.803327] RPC: Registered named UNIX socket transport module.

[    3.809178] RPC: Registered udp transport module.

[    3.813940] RPC: Registered tcp transport module.

[    3.818704] RPC: Registered tcp-with-tls transport module.

[    3.824250] RPC: Registered tcp NFSv4.1 backchannel transport module.

[    3.831383] pci 0000:00:02.1: PCI bridge to [bus 01]

[    3.836301] pci 0000:00:02.1:   bridge window [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    3.844432] pci 0000:00:02.3: PCI bridge to [bus 02]

[    3.849456] pci 0000:00:02.3:   bridge window [mem 0xfea00000-0xfeafffff]

[    3.856310] pci 0000:00:02.4: PCI bridge to [bus 03]

[    3.861328] pci 0000:00:02.4:   bridge window [io  0xf000-0xffff]

[    3.867490] pci 0000:00:02.4:   bridge window [mem 0xfe900000-0xfe9fffff]

[    3.874339] pci 0000:00:08.1: PCI bridge to [bus 04]

[    3.879358] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]

[    3.885527] pci 0000:00:08.1:   bridge window [mem 0xfe400000-0xfe7fffff]

[    3.892366] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]

[    3.900167] pci 0000:00:08.2: PCI bridge to [bus 05]

[    3.905192] pci 0000:00:08.2:   bridge window [mem 0xfe800000-0xfe8fffff]

[    3.912044] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]

[    3.918272] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]

[    3.924516] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]

[    3.930753] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]

[    3.936990] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]

[    3.943927] pci_bus 0000:00: resource 9 [mem 0xd0000000-0xfebfffff window]

[    3.950861] pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]

[    3.957876] pci_bus 0000:00: resource 11 [mem 0x830000000-0xffffffffff window]

[    3.965164] pci_bus 0000:01: resource 2 [mem 0xffe0000000-0xfff80fffff 64bit pref]

[    3.972789] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]

[    3.979115] pci_bus 0000:03: resource 0 [io  0xf000-0xffff]

[    3.984743] pci_bus 0000:03: resource 1 [mem 0xfe900000-0xfe9fffff]

[    3.991069] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]

[    3.996706] pci_bus 0000:04: resource 1 [mem 0xfe400000-0xfe7fffff]

[    4.003034] pci_bus 0000:04: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]

[    4.010310] pci_bus 0000:05: resource 1 [mem 0xfe800000-0xfe8fffff]

[    4.016803] pci 0000:01:00.0: CLS mismatch (64 != 484), using 64 bytes

[    4.023285] pci 0000:04:00.1: D0 power state depends on 0000:04:00.0

[    4.029677] pci 0000:04:00.3: extending delay after power-on from D3hot to 20 msec

[    4.037476] pci 0000:04:00.4: extending delay after power-on from D3hot to 20 msec

[    4.045045] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)

[    4.045472] Unpacking initramfs...

[    4.051466] software IO TLB: mapped [mem 0x00000000c6bc9000-0x00000000cabc9000] (64MB)

[    4.051485] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b92898602, max_idle_ns: 440795349930 ns

[    4.073016] clocksource: Switched to clocksource tsc

[    4.079129] Initialise system trusted keyrings

[    4.083643] workingset: timestamp_bits=56 max_order=20 bucket_order=0

[    4.090194] NFS: Registering the id_resolver key type

[    4.095195] Key type id_resolver registered

[    4.099428] Key type id_legacy registered

[    4.103572] 9p: Installing v9fs 9p2000 file system support

[    4.118306] Key type asymmetric registered

[    4.122350] Asymmetric key parser 'x509' registered

[    4.125097] Freeing initrd memory: 207696K

[    4.127311] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)

[    4.138910] io scheduler mq-deadline registered

[    4.143485] io scheduler kyber registered

[    4.147998] pcieport 0000:00:02.1: PME: Signaling with IRQ 43

[    4.153961] pcieport 0000:00:02.3: PME: Signaling with IRQ 44

[    4.159891] pcieport 0000:00:02.4: PME: Signaling with IRQ 45

[    4.165824] pcieport 0000:00:08.1: PME: Signaling with IRQ 46

[    4.171780] pcieport 0000:00:08.2: PME: Signaling with IRQ 47

[    4.177679] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0

[    4.185977] ACPI: button: Power Button [PWRB]

[    4.190395] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1

[    4.197876] ACPI: button: Power Button [PWRF]

[    4.202281] ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)

[    4.209784] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input2

[    4.220153] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    4.227141] ACPI: \_SB_.PLTF.P000: Found 3 idle states

[    4.232416] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    4.239445] ACPI: \_SB_.PLTF.P001: Found 3 idle states

[    4.244694] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)

[    4.251751] ACPI: \_SB_.PLTF.P002: Found 3 idle states

[    4.257279] thermal LNXTHERM:00: registered as thermal_zone0

[    4.262877] ACPI: thermal: Thermal Zone [THRM] (20 C)

[    4.268057] thermal LNXTHERM:01: registered as thermal_zone1

[    4.273696] ACPI: thermal: Thermal Zone [WDTF] (0 C)

[    4.279161] xen:xen_evtchn: Event-channel device installed

[    4.284701] xen_mcelog: Failed to get CPU numbers

[    4.289386] xen_pciback: backend is vpci

[    4.293506] xen_acpi_processor: Uploading Xen processor PM info

[    4.300284] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

[    4.306641] 00:04: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A

[    4.314211] hpet_acpi_add: no address or irqs in _CRS

[    4.319243] Non-volatile memory driver v1.3

[    4.323448] Linux agpgart interface v0.103

[    4.327994] ACPI: bus type drm_connector registered

[    4.334028] loop: module loaded

[    4.337449] ahci 0000:05:00.0: version 3.0

[    4.337568] nvme nvme0: pci function 0000:02:00.0

[    4.341654] ahci 0000:05:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

[    4.353030] nvme nvme0: missing or invalid SUBNQN field.

[    4.354302] ahci 0000:05:00.0: 1/1 ports implemented (port mask 0x1)

[    4.354304] ahci 0000:05:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part

[    4.354540] scsi host0: ahci

[    4.366109] nvme nvme0: D3 entry latency set to 8 seconds

[    4.374956] ata1: SATA max UDMA/133 abar m2048@0xfe801000 port 0xfe801100 irq 50 lpm-pol 3

[    4.391810] ahci 0000:05:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

[    4.399745] ahci 0000:05:00.1: 1/1 ports implemented (port mask 0x1)

[    4.406157] ahci 0000:05:00.1: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part

[    4.415251] scsi host1: ahci

[    4.418100] ata2: SATA max UDMA/133 abar m2048@0xfe800000 port 0xfe800100 irq 54 lpm-pol 3

[    4.426681] Rounding down aligned max_sectors from 4294967295 to 4294967288

[    4.433681] db_root: cannot open: /etc/target

[    4.438091] tun: Universal TUN/TAP device driver, 1.6

[    4.443177] e100: Intel(R) PRO/100 Network Driver

[    4.443279] nvme nvme0: 4/0/0 default/read/poll queues

[    4.447867] e100: Copyright(c) 1999-2006 Intel Corporation

[    4.447873] e1000: Intel(R) PRO/1000 Network Driver

[    4.463563] e1000: Copyright (c) 1999-2006 Intel Corporation.

[    4.469382] e1000e: Intel(R) PRO/1000 Network Driver

[    4.474394] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.

[    4.480386] Intel(R) 2.5G Ethernet Linux Driver

[    4.482309]  nvme0n1: p1 p2

[    4.484963] Copyright(c) 2018 Intel Corporation.

[    4.492511] sky2: driver version 1.30

[    4.504111] modprobe (76) used greatest stack depth: 13736 bytes left

[    4.504462] r8169 0000:03:00.0 eth0: RTL8125B, dc:9c:52:27:ae:c4, XID 641, IRQ 60

[    4.518031] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]

[    4.526622] xen_netfront: Initialising Xen virtual ethernet driver

[    4.533028] xhci_hcd 0000:04:00.3: xHCI Host Controller

[    4.538261] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1

[    4.545726] xhci_hcd 0000:04:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010

[    4.555139] xhci_hcd 0000:04:00.3: xHCI Host Controller

[    4.560364] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 2

[    4.567755] xhci_hcd 0000:04:00.3: Host supports USB 3.1 Enhanced SuperSpeed

[    4.574980] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11

[    4.583172] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    4.590446] usb usb1: Product: xHCI Host Controller

[    4.595389] usb usb1: Manufacturer: Linux 6.11.0 xhci-hcd

[    4.600849] usb usb1: SerialNumber: 0000:04:00.3

[    4.605676] hub 1-0:1.0: USB hub found

[    4.609387] hub 1-0:1.0: 4 ports detected

[    4.613647] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.

[    4.621769] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11

[    4.629982] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    4.637260] usb usb2: Product: xHCI Host Controller

[    4.642200] usb usb2: Manufacturer: Linux 6.11.0 xhci-hcd

[    4.647659] usb usb2: SerialNumber: 0000:04:00.3

[    4.652593] hub 2-0:1.0: USB hub found

[    4.656285] hub 2-0:1.0: 2 ports detected

[    4.660474] xhci_hcd 0000:04:00.4: xHCI Host Controller

[    4.665691] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 3

[    4.673183] xhci_hcd 0000:04:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000010

[    4.682595] xhci_hcd 0000:04:00.4: xHCI Host Controller

[    4.687793] xhci_hcd 0000:04:00.4: new USB bus registered, assigned bus number 4

[    4.695217] xhci_hcd 0000:04:00.4: Host supports USB 3.1 Enhanced SuperSpeed

[    4.700676] ata1: SATA link down (SStatus 0 SControl 300)

[    4.702324] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11

[    4.716101] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    4.723366] usb usb3: Product: xHCI Host Controller

[    4.728304] usb usb3: Manufacturer: Linux 6.11.0 xhci-hcd

[    4.733771] usb usb3: SerialNumber: 0000:04:00.4

[    4.735756] ata2: SATA link down (SStatus 0 SControl 300)

[    4.738526] hub 3-0:1.0: USB hub found

[    4.747734] hub 3-0:1.0: 4 ports detected

[    4.751864] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.

[    4.759954] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11

[    4.768261] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1

[    4.775548] usb usb4: Product: xHCI Host Controller

[    4.780485] usb usb4: Manufacturer: Linux 6.11.0 xhci-hcd

[    4.785950] usb usb4: SerialNumber: 0000:04:00.4

[    4.791173] hub 4-0:1.0: USB hub found

[    4.794879] hub 4-0:1.0: 2 ports detected

[    4.799103] usbcore: registered new interface driver usblp

[    4.804538] usbcore: registered new interface driver usb-storage

[    4.811164] i8042: PNP: No PS/2 controller found.

[    4.815800] i8042: Probing ports directly.

[    4.820837] i8042: No controller found

[    4.824729] rtc_cmos 00:01: RTC can wake from S4

[    4.829414] rtc_cmos 00:01: registered as rtc0

[    4.833830] rtc_cmos 00:01: no alarms, y3k, 114 bytes nvram

[    4.839448] fail to initialize ptp_kvm

[    4.839999] xen_wdt xen_wdt: initialized (timeout=60s, nowayout=0)

[    4.850290] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev

[    4.859173] amd_pstate: The CPPC feature is supported but currently disabled by the BIOS.

[    4.859173] Please enable it if your BIOS has the CPPC option.

[    4.873223] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled

[    4.880716] hid: raw HID events driver (C) Jiri Kosina

[    4.885933] usbcore: registered new interface driver usbhid

[    4.891497] usbhid: USB HID core driver

[    4.895875] snd_hda_intel 0000:04:00.1: enabling device (0000 -> 0002)

(XEN) [   14.729255] arch/x86/pci.c:109:d0v1 0000:04:00.1: BAR at [fe7c8, fe7cb] not in memory map hole
(XEN) [   14.738355] arch/x86/pci.c:109:d0v1 0000:04:00.1: BAR at [fe7c8, fe7cb] not in memory map hole
[    4.920775] snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002)

(XEN) [   14.754160] arch/x86/pci.c:109:d0v1 0000:04:00.6: BAR at [fe7c0, fe7c7] not in memory map hole
(XEN) [   14.763258] arch/x86/pci.c:109:d0v1 0000:04:00.6: BAR at [fe7c0, fe7c7] not in memory map hole
[    4.946137] Initializing XFRM netlink socket

[    4.948778] snd_hda_intel 0000:04:00.1: Cannot probe codecs, giving up

[    4.950357] N(XEN) [   14.785248] arch/x86/hvm/vmsi.c:845:d0v1 0000:04:00.1: PIRQ 3313: unsupported address 0
ET: Registered P(XEN) [   14.795126] arch/x86/hvm/vmsi.c:845:d0v1 0000:04:00.1: PIRQ 3313: unsupported address 0
F_INET6 protocol(XEN) [   14.805004] arch/x86/hvm/vmsi.c:845:d0v1 0000:04:00.1: PIRQ 3313: unsupported address 0
 family

[    4.987701] Segment Routing with IPv6

[    4.991307] In-situ OAM (IOAM) with IPv6

[    4.995369] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver

[    5.001424] NET: Registered PF_PACKET protocol family

[    5.006423] 9pnet: Installing 9P2000 support

[    5.010763] Key type dns_resolver registered

[    5.010776] usb 3-4: new high-speed USB device number 2 using xhci_hcd

[    5.021919] IPI shorthand broadcast: enabled

[    5.027665] sched_clock: Marking stable (4945008067, 82506219)->(6239324175, -1211809889)

[    5.035950] registered taskstats version 1

[    5.039991] Loading compiled-in X.509 certificates

[    5.045567] Demotion targets for Node 0: null

[    5.049986] PM:   Magic number: 9:791:255

[    5.053965] memory memory129: hash matches

[    5.058100] printk: legacy console [netcon0] enabled

[    5.063115] netconsole: network logging started

[    5.068260] cfg80211: Loading compiled-in X.509 certificates for regulatory database

[    5.076716] modprobe (85) used greatest stack depth: 13688 bytes left

[    5.077348] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'

[    5.088914] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'

[    5.096102] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2

[    5.101591] ALSA device list:

[    5.104751] cfg80211: failed to load regulatory.db

[    5.112633]   No soundcards found.

[    5.116571] Freeing unused kernel image (initmem) memory: 2980K

[    5.122420] Write protecting the kernel read-only data: 28672k

[    5.128648] Freeing unused kernel image (rodata/data gap) memory: 916K

[    5.159104] usb 3-4: New USB device found, idVendor=0403, idProduct=6011, bcdDevice= 8.00

[    5.167209] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3

[    5.171518] x86/mm: Checked W+X mappings: passed, no W+X pages found.

[    5.174401] usb 3-4: Product: VE2302

[    5.174402] usb 3-4: Manufacturer: Xilinx

[    5.174403] usb 3-4: SerialNumber: 52H2511000012

[    5.193314] Run /bin/sh as init process

[    5.197206]   with arguments:

[    5.200233]     /bin/sh

[    5.202752]   with environment:

[    5.205953]     HOME=/

[    5.208382]     TERM=linux

/bin/sh: can't access tty; job control turned off

~ # l smount -t proc proc /proc

ysfs sysfs /sys[   37.684328] m~ # ount (90) used gmreatest stack deopth: 13528 bytesu left

nt -t sysfs sysfs /sys

[   37.693736] m~ # ount (91) used gmreatest stack deopth: 13336 bytesu left

nt -t devtmpfs devtmpfs /dev

~ # ls /dev/nvm*

/dev/nvme0      /dev/nvme0n1    /dev/nvme0n1p1  /dev/nvme0n1p2

~ # mount /dev/nmvvme0n1p12 /mnt

[   51.723385] EXT4-fs (nvme0n1p2): recovery complete

[   51.728145] EXT4-fs (nvme0n1p2): mounted filesystem 0b5dc40a-1394-42c8-a3a3-d8e49bef803c r/w with ordered data mode. Quota mode: none.

[   51.740335] m~ # ount (94) used greatest stack depth: 13264 bytes left

ls /mnt

bin         home        lost+found  root        swapfile

boot        lib         media       run         sys

cdrom       lib32       mnt         sbin        tmp

dev         lib64       opt         snap        usr

etc         libx32      proc        srv         var

[   53.383849] l~ # s (98) used greatest stack depth: 13128 bytes left


Thanks for using picocom
picocom v1.7

port is        : /dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller-if00-port0
flowcontrol    : none
baudrate is    : 115200
parity is      : none
databits are   : 8
escape is      : C-a
local echo is  : no
noinit is      : no
noreset is     : no
nolock is      : no
send_cmd is    : sz -vv
receive_cmd is : rz -vv
imap is        :
omap is        :
emap is        : crcrlf,delbs,
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Roger Pau Monné 5 months, 2 weeks ago
On Mon, May 12, 2025 at 10:55:18AM -0700, Lira, Victor M wrote:
> On 5/12/2025 9:16 AM, Roger Pau Monné wrote:
> > Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.
> > 
> > 
> > On Fri, Apr 25, 2025 at 09:47:57AM -0700, Lira, Victor M wrote:
> > > I can confirm with the patch the NVME drive can be accessed despite the "not
> > > mapping BAR" warning from Xen.
> > > Output log attached.
> > Thanks a lot for the test, and sorry for the delay in getting back.  I
> > was busy with other stuff and needed some time to figure out the best
> > way to deal with this.  Can you give a try to the patch below?  I hope
> > it will still fix the issue.
> No worries,  I applied this patch to the latest staging c45e57f59d69, and
> the result is also successful NVME drive access.
> Output log attached and I see no "failed to sanitize" warnings.

Thanks for the testing.

I've formally submitted this as:

https://lore.kernel.org/xen-devel/20250515084123.43289-1-roger.pau@citrix.com/

Functionality wise I think it should be the same as the last patch you
tried.  Could you give it a spin and maybe provide a Tested-by if
suitable?

Thanks, Roger.

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Lira, Victor M 5 months, 2 weeks ago
> Thanks for the testing.
>
> I've formally submitted this as:
>
> https://lore.kernel.org/xen-devel/20250515084123.43289-1-roger.pau@citrix.com/
>
> Functionality wise I think it should be the same as the last patch you
> tried.  Could you give it a spin and maybe provide a Tested-by if
> suitable?
>
> Thanks, Roger.
OK, I'll give it a test.


Victor
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jan Beulich 6 months, 3 weeks ago
On 11.04.2025 09:31, Roger Pau Monné wrote:
> Yup, the check is independent, but pf-fixup would create additional
> p2m mappings if required (note this is only available on staging).

It's also in 4.19.2 and on the 4.20 branch. 4.18 is where I couldn't
easily backport it to.

Jan

Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jan Beulich 7 months ago
On 04.04.2025 03:01, Stefano Stabellini wrote:
> On one Sapphire AMD x86 board, I see this:
> 
> 
> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
> [...]
> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position

I, too, see something like this on an SPR system. That's a firmware issue,
which hence first of all should be dealt with at the firmware side.

> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
> This is because the pci_check_bar->is_memory_hole check fails due to the
> MMIO region overlapping with the EFI reserved region.

And then what's the actual, observable problem? On my system I haven't
noticed anything going wrong yet, albeit the affected device is also left
without a driver.

Also aiui you strictly mean PVH Dom0 here?

> --- a/xen/arch/x86/mm.c
> +++ b/xen/arch/x86/mm.c
> @@ -797,6 +797,9 @@ bool is_memory_hole(mfn_t start, mfn_t end)
>          if ( !entry->size )
>              continue;
>  
> +        if ( entry->type > 1 )
> +            continue;

I'm sorry to ask, but what's a literal 1 here? I'm pretty convinced we
would want to still object to overlaps with unusable ranges, for example.
Yet by open-coding what E820_RAM expands to you completely hide what this
check is about. Yes, this is an RFC, but even there such context is
important.

Furthermore my general take here is: We shouldn't simply silence issues
arising from firmware doing odd things. My take here is still the same
as the position I took when I still was maintainer of the EFI code in
Xen: We shouldn't by default work around such issues, when doing so may
negatively affect systems not exposing such odd behavior.

Finally a Misra-related observation while looking at this: Isn't
is_memory_hole() unreachable code in a !HVM configuration?

Jan
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jason Andryuk 6 months, 3 weeks ago
On 2025-04-04 04:07, Jan Beulich wrote:
> On 04.04.2025 03:01, Stefano Stabellini wrote:
>> On one Sapphire AMD x86 board, I see this:
>>
>>
>> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
>> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
>> [...]
>> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
> 
> I, too, see something like this on an SPR system. That's a firmware issue,
> which hence first of all should be dealt with at the firmware side.
> 
>> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
>> This is because the pci_check_bar->is_memory_hole check fails due to the
>> MMIO region overlapping with the EFI reserved region.
> 
> And then what's the actual, observable problem? On my system I haven't
> noticed anything going wrong yet, albeit the affected device is also left
> without a driver.

The nvme drive (0000:02:00.0 with the invalid position above) fails to 
work and no root drive is available.

> Also aiui you strictly mean PVH Dom0 here?

I think we only looked at PVH Dom0.

Regards,
Jason
Re: [RFC] xen/x86: allow overlaps with non-RAM regions
Posted by Jan Beulich 6 months, 3 weeks ago
On 10.04.2025 22:55, Jason Andryuk wrote:
> On 2025-04-04 04:07, Jan Beulich wrote:
>> On 04.04.2025 03:01, Stefano Stabellini wrote:
>>> On one Sapphire AMD x86 board, I see this:
>>>
>>>
>>> (XEN) [0000003943ca6ff2]  [00000000f0000000, 00000000f7ffffff] (reserved)
>>> (XEN) [00000039460886d9]  [00000000fd000000, 00000000ffffffff] (reserved)
>>> [...]
>>> (XEN) [    4.612235] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
>>
>> I, too, see something like this on an SPR system. That's a firmware issue,
>> which hence first of all should be dealt with at the firmware side.
>>
>>> Linux boots fine on this platform but Linux as Dom0 on Xen does not.
>>> This is because the pci_check_bar->is_memory_hole check fails due to the
>>> MMIO region overlapping with the EFI reserved region.
>>
>> And then what's the actual, observable problem? On my system I haven't
>> noticed anything going wrong yet, albeit the affected device is also left
>> without a driver.
> 
> The nvme drive (0000:02:00.0 with the invalid position above) fails to 
> work and no root drive is available.

And what - if anything - does baremetal Linux say about this pretty obvious
firmware bug?

Jan