All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions
@ 2025-05-15  8:41 Roger Pau Monne
  2025-05-15  9:24 ` Jan Beulich
  0 siblings, 1 reply; 5+ messages in thread
From: Roger Pau Monne @ 2025-05-15  8:41 UTC (permalink / raw)
  To: xen-devel
  Cc: Roger Pau Monne, Stefano Stabellini, Julien Grall,
	Bertrand Marquis, Michal Orzel, Volodymyr Babchuk, Jan Beulich,
	Andrew Cooper, Stefano Stabellini

For once the message printed when a BAR overlaps with a non-hole regions is
not accurate on x86.  While the BAR won't be mapped by the vPCI logic, it
is quite likely overlapping with a reserved region in the memory map, and
already mapped as by default all reserved regions are identity mapped in
the p2m.  Fix the message so it just warns about the overlap, without
mentioning that the BAR won't be mapped, as this has caused confusion in
the past.

Secondly, when an overlap is detected the BAR 'enabled' field is not set,
hence other vPCI code that depends on it like vPCI MSI-X handling won't
function properly, as it sees the BAR as disabled, even when memory
decoding is enabled for the device and the BAR is likely mapped in the
p2m.  Change the handling of BARs that overlap non-hole regions to instead
remove any overlapped regions from the rangeset, so the resulting ranges to
map just contain the hole regions.  This requires introducing a new
pci_sanitize_bar_memory() that's implemented per-arch and sanitizes the
address range to add to the p2m.

For x86 pci_sanitize_bar_memory() removes any regions present in the host
memory map, for ARM this is currently left as a dummy handler to not change
existing behavior.

Ultimately the above changes should fix the vPCI MSI-X handlers not working
correctly when the BAR that contains the MSI-X table overlaps with a
non-hole region, as then the 'enabled' BAR bit won't be set and the MSI-X
traps won't handle accesses as expected.

Reported-by: Stefano Stabellini <stefano.stabellini@amd.com>
Fixes: 53d9133638c3 ('pci: do not disable memory decoding for devices')
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
---
 xen/arch/arm/include/asm/pci.h |  3 ++
 xen/arch/x86/include/asm/pci.h | 12 ++------
 xen/arch/x86/pci.c             | 50 ++++++++++++++++++++++++++++++++++
 xen/drivers/vpci/header.c      |  9 ++++++
 4 files changed, 65 insertions(+), 9 deletions(-)

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..afaf9fe1c053 100644
--- a/xen/arch/x86/pci.c
+++ b/xen/arch/x86/pci.c
@@ -98,3 +98,53 @@ 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;
+}
+
+/* Remove overlaps with any ranges defined in the host memory map. */
+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;
+
+        rc = rangeset_remove_range(r, PFN_DOWN(entry->addr),
+                                   PFN_UP(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..1f48f2aac64e 100644
--- a/xen/drivers/vpci/header.c
+++ b/xen/drivers/vpci/header.c
@@ -394,6 +394,15 @@ 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#%u memory: %d\n",
+                    &pdev->sbdf, i, rc);
+            return rc;
+        }
     }
 
     /* Remove any MSIX regions if present. */
-- 
2.48.1



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

* Re: [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions
  2025-05-15  8:41 [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions Roger Pau Monne
@ 2025-05-15  9:24 ` Jan Beulich
  2025-05-15 10:11   ` Roger Pau Monné
  0 siblings, 1 reply; 5+ messages in thread
From: Jan Beulich @ 2025-05-15  9:24 UTC (permalink / raw)
  To: Roger Pau Monne
  Cc: Stefano Stabellini, Julien Grall, Bertrand Marquis, Michal Orzel,
	Volodymyr Babchuk, Andrew Cooper, Stefano Stabellini, xen-devel

On 15.05.2025 10:41, Roger Pau Monne wrote:
> For once the message printed when a BAR overlaps with a non-hole regions is
> not accurate on x86.  While the BAR won't be mapped by the vPCI logic, it
> is quite likely overlapping with a reserved region in the memory map, and
> already mapped as by default all reserved regions are identity mapped in
> the p2m.  Fix the message so it just warns about the overlap, without
> mentioning that the BAR won't be mapped, as this has caused confusion in
> the past.
> 
> Secondly, when an overlap is detected the BAR 'enabled' field is not set,
> hence other vPCI code that depends on it like vPCI MSI-X handling won't
> function properly, as it sees the BAR as disabled, even when memory
> decoding is enabled for the device and the BAR is likely mapped in the
> p2m.  Change the handling of BARs that overlap non-hole regions to instead
> remove any overlapped regions from the rangeset, so the resulting ranges to
> map just contain the hole regions.  This requires introducing a new
> pci_sanitize_bar_memory() that's implemented per-arch and sanitizes the
> address range to add to the p2m.
> 
> For x86 pci_sanitize_bar_memory() removes any regions present in the host
> memory map, for ARM this is currently left as a dummy handler to not change
> existing behavior.
> 
> Ultimately the above changes should fix the vPCI MSI-X handlers not working
> correctly when the BAR that contains the MSI-X table overlaps with a
> non-hole region, as then the 'enabled' BAR bit won't be set and the MSI-X
> traps won't handle accesses as expected.

While all of this reads plausible, I may need to look at this again later,
to hopefully grok the connections and implications.

> --- 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>

Please don't, ...

> @@ -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);

... all you need is a struct forward decl here.

> --- a/xen/arch/x86/pci.c
> +++ b/xen/arch/x86/pci.c
> @@ -98,3 +98,53 @@ 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;
> +}
> +
> +/* Remove overlaps with any ranges defined in the host memory map. */
> +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;
> +
> +        rc = rangeset_remove_range(r, PFN_DOWN(entry->addr),
> +                                   PFN_UP(entry->addr + entry->size - 1));
> +        if ( rc )
> +            return rc;

Perhaps better continue the loop in a best effort manner, only accumulating
the error to then ...

> +    }
> +
> +    return 0;
> +}

... return here?

Jan


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

* Re: [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions
  2025-05-15  9:24 ` Jan Beulich
@ 2025-05-15 10:11   ` Roger Pau Monné
  2025-05-16  0:20     ` Lira, Victor M
  2025-05-16  7:28     ` Jan Beulich
  0 siblings, 2 replies; 5+ messages in thread
From: Roger Pau Monné @ 2025-05-15 10:11 UTC (permalink / raw)
  To: Jan Beulich
  Cc: Stefano Stabellini, Julien Grall, Bertrand Marquis, Michal Orzel,
	Volodymyr Babchuk, Andrew Cooper, Stefano Stabellini, xen-devel

On Thu, May 15, 2025 at 11:24:59AM +0200, Jan Beulich wrote:
> On 15.05.2025 10:41, Roger Pau Monne wrote:
> > For once the message printed when a BAR overlaps with a non-hole regions is
> > not accurate on x86.  While the BAR won't be mapped by the vPCI logic, it
> > is quite likely overlapping with a reserved region in the memory map, and
> > already mapped as by default all reserved regions are identity mapped in
> > the p2m.  Fix the message so it just warns about the overlap, without
> > mentioning that the BAR won't be mapped, as this has caused confusion in
> > the past.
> > 
> > Secondly, when an overlap is detected the BAR 'enabled' field is not set,
> > hence other vPCI code that depends on it like vPCI MSI-X handling won't
> > function properly, as it sees the BAR as disabled, even when memory
> > decoding is enabled for the device and the BAR is likely mapped in the
> > p2m.  Change the handling of BARs that overlap non-hole regions to instead
> > remove any overlapped regions from the rangeset, so the resulting ranges to
> > map just contain the hole regions.  This requires introducing a new
> > pci_sanitize_bar_memory() that's implemented per-arch and sanitizes the
> > address range to add to the p2m.
> > 
> > For x86 pci_sanitize_bar_memory() removes any regions present in the host
> > memory map, for ARM this is currently left as a dummy handler to not change
> > existing behavior.
> > 
> > Ultimately the above changes should fix the vPCI MSI-X handlers not working
> > correctly when the BAR that contains the MSI-X table overlaps with a
> > non-hole region, as then the 'enabled' BAR bit won't be set and the MSI-X
> > traps won't handle accesses as expected.
> 
> While all of this reads plausible, I may need to look at this again later,
> to hopefully grok the connections and implications.

Thanks, it's indeed not trivial to follow.  I've attempted to write
this as best as I could.

I think the fix is far easier to understand than the description of
the issue and the connection with vPCI MSI-X handling.

> > --- 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>
> 
> Please don't, ...
> 
> > @@ -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);
> 
> ... all you need is a struct forward decl here.

Hm, but any user that makes use of pci_sanitize_bar_memory() will need
to include rangeset.h anyway, hence it seemed better to just include
the header rather that pollute the current one by adding forward
declarations.

> 
> > --- a/xen/arch/x86/pci.c
> > +++ b/xen/arch/x86/pci.c
> > @@ -98,3 +98,53 @@ 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;
> > +}
> > +
> > +/* Remove overlaps with any ranges defined in the host memory map. */
> > +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;
> > +
> > +        rc = rangeset_remove_range(r, PFN_DOWN(entry->addr),
> > +                                   PFN_UP(entry->addr + entry->size - 1));
> > +        if ( rc )
> > +            return rc;
> 
> Perhaps better continue the loop in a best effort manner, only accumulating
> the error to then ...
> 
> > +    }
> > +
> > +    return 0;
> > +}
> 
> ... return here?

I think for the usage here, any error should be fatal, and should
result in the contents of the rangeset not being mapped.  Failure to
remove sensitive ranges from the rangeset cannot be worked around IMO,
hence accumulating errors doesn't seem helpful.

Thanks, Roger.


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

* Re: [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions
  2025-05-15 10:11   ` Roger Pau Monné
@ 2025-05-16  0:20     ` Lira, Victor M
  2025-05-16  7:28     ` Jan Beulich
  1 sibling, 0 replies; 5+ messages in thread
From: Lira, Victor M @ 2025-05-16  0:20 UTC (permalink / raw)
  To: xen-devel

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

Hello,

I tested the patch based on staging (f1f351df0309) on hardware that has 
the issue of the overlap (0xfea00000 in the logs attached).

Linux 6.11 defconfig + CONFIG_BLK_DEV_NVME

Without the patch we see these messages and the NVME is not accessible:
> [  313.438979] nvme nvme0: I/O tag 4 (2004) QID 0 timeout, completion 
> polled
>
> (XEN) [  322.972867] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory 
> write to 0xfea0300c size 4
With the patch we see only the added warning and the NVME is accessible:
> (XEN) [    4.746374] arch/x86/pci.c:109:d[IDLE]v0 0000:02:00.0: BAR at 
> [fea00, fea03] not in memory map hole

Tested-by: Victor M Lira <victorm.lira@amd.com>


Victor

[-- Attachment #2: test-without.log --]
[-- Type: text/plain, Size: 122341 bytes --]

Xen 4.21-unstable
(XEN) [0000002789a0cc7b] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Thu May 15 16:36:35 UTC 2025
(XEN) [000000278be2be2d] Latest ChangeSet:
(XEN) [000000278c8f16f5] build-id: 062fae5bc422b682af3e8d2ee9c79e674c6d5e6c
(XEN) [000000278db5c2de] Console output is synchronous.
(XEN) [000000278e8ffcc3] CPU Vendor: AMD, Family 23 (0x17), Model 96 (0x60), Stepping 1 (raw 00860f01)
(XEN) [00000027901e151b] BSP microcode revision: 0x0860010c
(XEN) [000000279107910d] Bootloader: GRUB 2.13
(XEN) [0000002791bf4b33] Command line: console=com1 com1=115200,8n1,0x3F8,4 sched=null loglvl=all guest_loglvl=all console_timestamps=boot iommu=verbose dom0=pvh,verbose dom0_max_vcpus=4 dom0_mem=4G argo=1,mac-permissive=1 sync_console noreboot wow
(XEN) [00000027957c3c96] Xen image load base address: 0xc6800000
(XEN) [000000279678df1e] Video information:
(XEN) [000000279725182e]  VGA is text mode 80x25, font 8x16
(XEN) [00000027980ea1b8] Disc information:
(XEN) [0000002798b70c90]  Found 0 MBR signatures
(XEN) [0000002799767e73]  Found 1 EDD information structures
(XEN) [000000279a63d618] EFI RAM map:
(XEN) [000000279af91c64]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [000000279c1088f8]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [000000279d2f9423]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [000000279e46fead]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [000000279f6629ad]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [00000027a07d93c3]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [00000027a19ca3cd]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [00000027a2b412a5]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [00000027a3d32fb6]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [00000027a4f62945]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [00000027a61538db]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [00000027a7343fb8]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [00000027a853585e]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [00000027a9726868]  [00000000cd1ff000, 00000000cdffffff] (usable)
(XEN) [00000027aa89d27e]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [00000027aba8fdd5]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [00000027acc8122d]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [00000027ade71d75]  [0000000100000000, 000000080f33ffff] (usable)
(XEN) [00000027aefe878b]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [00000027bc634253] ACPI: RSDP CC6F3014, 0024 (r2 ALASKA)
(XEN) [00000027bd582278] ACPI: XSDT CC6F2728, 00D4 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [00000027bec7b70d] ACPI: FACP CC18C000, 0114 (r6 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000027c0372762] ACPI: DSDT CC183000, 876D (r2 ALASKA   A M I   1072009 INTL 20120913)
(XEN) [00000027c1a6a99d] ACPI: FACS CC6C0000, 0040
(XEN) [00000027c26da12b] ACPI: SSDT CC18E000, 723C (r2    AMD AmdTable        2 MSFT  4000000)
(XEN) [00000027c3dd23bd] ACPI: IVRS CC18D000, 01A4 (r2  AMD   AmdTable        1 AMD         0)
(XEN) [00000027c54ca5db] ACPI: FIDT CC182000, 009C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [00000027c6bc0be1] ACPI: MCFG CC181000, 003C (r1 ALASKA    A M I  1072009 MSFT    10013)
(XEN) [00000027c82b8685] ACPI: HPET CC180000, 0038 (r1 ALASKA    A M I  1072009 AMI         5)
(XEN) [00000027c99af683] ACPI: SSDT CC17F000, 0228 (r1    AMD     STD3        1 INTL 20120913)
(XEN) [00000027cb0a6fe8] ACPI: VFCT CC171000, D684 (r1 ALASKA   A M I         1  AMD 31504F47)
(XEN) [00000027cc79fb33] ACPI: TPM2 CC170000, 004C (r4 ALASKA   A M I         1 AMI         0)
(XEN) [00000027cde97dc5] ACPI: SSDT CC16C000, 39F4 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000027cf58dbdd] ACPI: CRAT CC16B000, 0F28 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000027d0c859ad] ACPI: CDIT CC16A000, 0029 (r1    AMD AmdTable        1 AMD         1)
(XEN) [00000027d237e036] ACPI: SSDT CC169000, 0139 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027d3a7477b] ACPI: SSDT CC168000, 0227 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027d516d31d] ACPI: SSDT CC167000, 0D37 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027d68639ee] ACPI: SSDT CC165000, 10A5 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027d7f5af05] ACPI: SSDT CC161000, 30C8 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027d965437d] ACPI: WSMT CC160000, 0028 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000027dad4c14d] ACPI: APIC CC15F000, 00DE (r3 ALASKA   A M I   1072009 AMI     10013)
(XEN) [00000027dc4435f0] ACPI: SSDT CC15E000, 007D (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027ddb39857] ACPI: SSDT CC15D000, 0517 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [00000027df2311d8] ACPI: FPDT CC15C000, 0044 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [00000027e092a277] System RAM: 32168MB (32940656kB)
(XEN) [00000027e5c27631] No NUMA configuration found
(XEN) [00000027e69121db] Faking a node at 0000000000000000-000000080f340000
(XEN) [00000027f0aa5e12] Domain heap initialised
(XEN) [00000027f2a9954b] SMBIOS 3.2 present.
(XEN) [00000027f35af632] Using APIC driver default
(XEN) [00000027f421f70a] ACPI: PM-Timer IO Port: 0x808 (32 bits)
(XEN) [00000027f51ea286] ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) [00000027f6361a33] ACPI: SLEEP INFO: pm1x_cnt[1:804,1:0], pm1x_evt[1:800,1:0]
(XEN) [00000027f77b6eea] ACPI: 32/64X FACS address mismatch in FADT - cc6c0000/0000000000000000, using 32
(XEN) [00000027f9151712] ACPI:             wakeup_vec[cc6c000c], vec_size[20]
(XEN) [00000027fa4379ed] ACPI: Local APIC address 0xfee00000
(XEN) [00000027fb3217d3] Overriding APIC driver with bigsmp
(XEN) [00000027fc1b936d] ACPI: IOAPIC (id[0x11] address[0xfec00000] gsi_base[0])
(XEN) [00000027fd557415] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
(XEN) [00000027feadeaa0] ACPI: IOAPIC (id[0x12] address[0xfec01000] gsi_base[24])
(XEN) [00000027ffebacdf] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
(XEN) [00000028014802a1] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) [000000280285c80b] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) [0000002803cb2a3d] ACPI: IRQ0 used by override.
(XEN) [00000028049d9118] ACPI: IRQ2 used by override.
(XEN) [000000280570257d] ACPI: IRQ9 used by override.
(XEN) [000000280642a357] ACPI: HPET id: 0x10228201 base: 0xfed00000
(XEN) [00000028074ad470] PCI: MCFG configuration 0: base f0000000 segment 0000 buses 00 - 7f
(XEN) [0000002808b291ae] PCI: MCFG area at f0000000 reserved in E820
(XEN) [0000002809be9eed] PCI: Using MCFG for segment 0000 bus 00-7f
(XEN) [000000280ac6a796] Using ACPI (MADT) for SMP configuration information
(XEN) [000000280bf153e5] SMP: Allowing 16 CPUs (0 hotplug CPUs)
(XEN) [000000280cea118d] IRQ limits: 56 GSI, 3272 MSI/MSI-X
(XEN) [000000280dd38e2d] CPU0: 1400 ... 2900 MHz
(XEN) [000000280e930dff] xstate: size: 0x380 and states: 0x207
(XEN) [000000280f87fc87] CPU0: AMD Fam17h machine check reporting enabled
(XEN) [0000002810a71584] Speculative mitigation facilities:
(XEN) [0000002811907dc0]   Hardware hints: IBRS_FAST IBRS_SAME_MODE
(XEN) [000000281298a2f4]   Hardware features: IBPB IBRS STIBP SSBD
(XEN) [00000028139cfca8]   Compiled-in support: INDIRECT_THUNK RETURN_THUNK SHADOW_PAGING HARDEN_ARRAY HARDEN_BRANCH HARDEN_GUEST_ACCESS HARDEN_LOCK
(XEN) [0000002815db2a37]   Xen settings: BTI-Thunk: RETPOLINE, SPEC_CTRL: IBRS- STIBP+ SSBD-, Other: BRANCH_HARDEN
(XEN) [0000002817973e85]   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB IBPB-entry
(XEN) [00000028190a8622]   Support for PV VMs: IBPB-entry
(XEN) [0000002819ec5c5a]   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (without PCID)
(XEN) [000000281b57fe77]   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) [000000281c7ad38c] Using scheduler: null Scheduler (null)
(XEN) [000000281d73b9c2] Initializing null scheduler
(XEN) [000000281e425727] WARNING: This is experimental software in development.
(XEN) [000000281f787b7d] Use at your own risk.
(XEN) [0000002828cc38ec] Platform timer is 14.318MHz HPET
(XEN) [    0.929789] Detected 2894.573 MHz processor.
(XEN) [    0.936264] Freed 1008kB unused BSS memory
(XEN) [    0.940857] EFI memory map:
(XEN) [    0.944150]  0000000000000-0000000003fff type=2 attr=000000000000000f
(XEN) [    0.951082]  0000000004000-000000008efff type=7 attr=000000000000000f
(XEN) [    0.958017]  000000008f000-000000009efff type=2 attr=000000000000000f
(XEN) [    0.964951]  000000009f000-000000009ffff type=4 attr=000000000000000f
(XEN) [    0.971882]  0000000100000-0000000e89fff type=2 attr=000000000000000f
(XEN) [    0.978817]  0000000e8a000-0000000ffffff type=7 attr=000000000000000f
(XEN) [    0.985749]  0000001000000-000000101ffff type=4 attr=000000000000000f
(XEN) [    0.992685]  0000001020000-0000009bfefff type=7 attr=000000000000000f
(XEN) [    0.999618]  0000009bff000-0000009ffffff type=0 attr=000000000000000f
(XEN) [    1.006550]  000000a000000-000000a1fffff type=7 attr=000000000000000f
(XEN) [    1.013482]  000000a200000-000000a20cfff type=10 attr=000000000000000f
(XEN) [    1.020502]  000000a20d000-0000016d03fff type=2 attr=000000000000000f
(XEN) [    1.027435]  0000016d04000-00000c4f87fff type=7 attr=000000000000000f
(XEN) [    1.034370]  00000c4f88000-00000c709cfff type=1 attr=000000000000000f
(XEN) [    1.041302]  00000c709d000-00000c71b2fff type=7 attr=000000000000000f
(XEN) [    1.048235]  00000c71b3000-00000c71dbfff type=4 attr=000000000000000f
(XEN) [    1.055168]  00000c71dc000-00000c7216fff type=3 attr=000000000000000f
(XEN) [    1.062103]  00000c7217000-00000c7218fff type=7 attr=000000000000000f
(XEN) [    1.069036]  00000c7219000-00000c7219fff type=4 attr=000000000000000f
(XEN) [    1.075971]  00000c721a000-00000c7225fff type=3 attr=000000000000000f
(XEN) [    1.082903]  00000c7226000-00000c7227fff type=7 attr=000000000000000f
(XEN) [    1.089837]  00000c7228000-00000c722cfff type=4 attr=000000000000000f
(XEN) [    1.096770]  00000c722d000-00000c7232fff type=7 attr=000000000000000f
(XEN) [    1.103704]  00000c7233000-00000c7233fff type=2 attr=000000000000000f
(XEN) [    1.110636]  00000c7234000-00000c7235fff type=7 attr=000000000000000f
(XEN) [    1.117568]  00000c7236000-00000c7238fff type=4 attr=000000000000000f
(XEN) [    1.124503]  00000c7239000-00000c723cfff type=7 attr=000000000000000f
(XEN) [    1.131438]  00000c723d000-00000c7251fff type=4 attr=000000000000000f
(XEN) [    1.138370]  00000c7252000-00000c725ffff type=3 attr=000000000000000f
(XEN) [    1.145302]  00000c7260000-00000c729dfff type=4 attr=000000000000000f
(XEN) [    1.152237]  00000c729e000-00000c729ffff type=7 attr=000000000000000f
(XEN) [    1.159169]  00000c72a0000-00000c72a1fff type=4 attr=000000000000000f
(XEN) [    1.166101]  00000c72a2000-00000c72a3fff type=7 attr=000000000000000f
(XEN) [    1.173037]  00000c72a4000-00000c72a4fff type=4 attr=000000000000000f
(XEN) [    1.179969]  00000c72a5000-00000c72a5fff type=7 attr=000000000000000f
(XEN) [    1.186903]  00000c72a6000-00000c72a7fff type=4 attr=000000000000000f
(XEN) [    1.193834]  00000c72a8000-00000c72aafff type=7 attr=000000000000000f
(XEN) [    1.200770]  00000c72ab000-00000c72abfff type=4 attr=000000000000000f
(XEN) [    1.207702]  00000c72ac000-00000c72adfff type=7 attr=000000000000000f
(XEN) [    1.214637]  00000c72ae000-00000c72b0fff type=4 attr=000000000000000f
(XEN) [    1.221569]  00000c72b1000-00000c72bbfff type=7 attr=000000000000000f
(XEN) [    1.228504]  00000c72bc000-00000c72befff type=4 attr=000000000000000f
(XEN) [    1.235435]  00000c72bf000-00000c72c2fff type=7 attr=000000000000000f
(XEN) [    1.242369]  00000c72c3000-00000c72c4fff type=4 attr=000000000000000f
(XEN) [    1.249304]  00000c72c5000-00000c72c6fff type=7 attr=000000000000000f
(XEN) [    1.256236]  00000c72c7000-00000c72c8fff type=4 attr=000000000000000f
(XEN) [    1.263167]  00000c72c9000-00000c72cafff type=7 attr=000000000000000f
(XEN) [    1.270103]  00000c72cb000-00000c72cbfff type=4 attr=000000000000000f
(XEN) [    1.277035]  00000c72cc000-00000c72ccfff type=7 attr=000000000000000f
(XEN) [    1.283969]  00000c72cd000-00000c72cefff type=4 attr=000000000000000f
(XEN) [    1.290901]  00000c72cf000-00000c72d1fff type=7 attr=000000000000000f
(XEN) [    1.297836]  00000c72d2000-00000c72d3fff type=4 attr=000000000000000f
(XEN) [    1.304768]  00000c72d4000-00000c7376fff type=7 attr=000000000000000f
(XEN) [    1.311703]  00000c7377000-00000c785afff type=4 attr=000000000000000f
(XEN) [    1.318636]  00000c785b000-00000c79d2fff type=3 attr=000000000000000f
(XEN) [    1.325568]  00000c79d3000-00000c7a2efff type=7 attr=000000000000000f
(XEN) [    1.332503]  00000c7a2f000-00000c7a4cfff type=4 attr=000000000000000f
(XEN) [    1.339434]  00000c7a4d000-00000c7a5dfff type=3 attr=000000000000000f
(XEN) [    1.346369]  00000c7a5e000-00000c7ae7fff type=4 attr=000000000000000f
(XEN) [    1.353301]  00000c7ae8000-00000c7b07fff type=3 attr=000000000000000f
(XEN) [    1.360234]  00000c7b08000-00000c7b08fff type=4 attr=000000000000000f
(XEN) [    1.367167]  00000c7b09000-00000c7b10fff type=3 attr=000000000000000f
(XEN) [    1.374101]  00000c7b11000-00000c7b18fff type=4 attr=000000000000000f
(XEN) [    1.381035]  00000c7b19000-00000c7b30fff type=3 attr=000000000000000f
(XEN) [    1.387968]  00000c7b31000-00000c7b32fff type=4 attr=000000000000000f
(XEN) [    1.394900]  00000c7b33000-00000c7b55fff type=3 attr=000000000000000f
(XEN) [    1.401834]  00000c7b56000-00000c7b60fff type=4 attr=000000000000000f
(XEN) [    1.408768]  00000c7b61000-00000c7b8cfff type=3 attr=000000000000000f
(XEN) [    1.415700]  00000c7b8d000-00000c9270fff type=4 attr=000000000000000f
(XEN) [    1.422637]  00000c9271000-00000c92d7fff type=3 attr=000000000000000f
(XEN) [    1.429568]  00000c92d8000-00000c92dbfff type=4 attr=000000000000000f
(XEN) [    1.436502]  00000c92dc000-00000c92e5fff type=3 attr=000000000000000f
(XEN) [    1.443434]  00000c92e6000-00000c9330fff type=4 attr=000000000000000f
(XEN) [    1.450369]  00000c9331000-00000c934afff type=3 attr=000000000000000f
(XEN) [    1.457301]  00000c934b000-00000c934efff type=4 attr=000000000000000f
(XEN) [    1.464236]  00000c934f000-00000c936cfff type=3 attr=000000000000000f
(XEN) [    1.471168]  00000c936d000-00000c936dfff type=4 attr=000000000000000f
(XEN) [    1.478103]  00000c936e000-00000c9374fff type=3 attr=000000000000000f
(XEN) [    1.485034]  00000c9375000-00000c937bfff type=4 attr=000000000000000f
(XEN) [    1.491969]  00000c937c000-00000c9389fff type=3 attr=000000000000000f
(XEN) [    1.498902]  00000c938a000-00000c938efff type=4 attr=000000000000000f
(XEN) [    1.505836]  00000c938f000-00000c9390fff type=3 attr=000000000000000f
(XEN) [    1.512767]  00000c9391000-00000c9392fff type=4 attr=000000000000000f
(XEN) [    1.519702]  00000c9393000-00000c9399fff type=3 attr=000000000000000f
(XEN) [    1.526633]  00000c939a000-00000c939bfff type=4 attr=000000000000000f
(XEN) [    1.533569]  00000c939c000-00000c939cfff type=3 attr=000000000000000f
(XEN) [    1.540500]  00000c939d000-00000c93a0fff type=4 attr=000000000000000f
(XEN) [    1.547435]  00000c93a1000-00000c93b7fff type=3 attr=000000000000000f
(XEN) [    1.554367]  00000c93b8000-00000c93b9fff type=4 attr=000000000000000f
(XEN) [    1.561300]  00000c93ba000-00000c93bbfff type=3 attr=000000000000000f
(XEN) [    1.568234]  00000c93bc000-00000c93bcfff type=4 attr=000000000000000f
(XEN) [    1.575168]  00000c93bd000-00000c93cbfff type=3 attr=000000000000000f
(XEN) [    1.582102]  00000c93cc000-00000c93d4fff type=4 attr=000000000000000f
(XEN) [    1.589034]  00000c93d5000-00000c93d6fff type=3 attr=000000000000000f
(XEN) [    1.595969]  00000c93d7000-00000c93d8fff type=4 attr=000000000000000f
(XEN) [    1.602900]  00000c93d9000-00000c93d9fff type=3 attr=000000000000000f
(XEN) [    1.609834]  00000c93da000-00000c93dafff type=4 attr=000000000000000f
(XEN) [    1.616767]  00000c93db000-00000c93dbfff type=3 attr=000000000000000f
(XEN) [    1.623702]  00000c93dc000-00000c9529fff type=4 attr=000000000000000f
(XEN) [    1.630636]  00000c952a000-00000c9533fff type=3 attr=000000000000000f
(XEN) [    1.637568]  00000c9534000-00000c9535fff type=4 attr=000000000000000f
(XEN) [    1.644499]  00000c9536000-00000c9539fff type=3 attr=000000000000000f
(XEN) [    1.651433]  00000c953a000-00000c953dfff type=4 attr=000000000000000f
(XEN) [    1.658368]  00000c953e000-00000c9545fff type=3 attr=000000000000000f
(XEN) [    1.665299]  00000c9546000-00000c9547fff type=4 attr=000000000000000f
(XEN) [    1.672235]  00000c9548000-00000c954bfff type=3 attr=000000000000000f
(XEN) [    1.679166]  00000c954c000-00000c954dfff type=4 attr=000000000000000f
(XEN) [    1.686099]  00000c954e000-00000c9556fff type=3 attr=000000000000000f
(XEN) [    1.693032]  00000c9557000-00000c955afff type=4 attr=000000000000000f
(XEN) [    1.699967]  00000c955b000-00000c955cfff type=3 attr=000000000000000f
(XEN) [    1.706902]  00000c955d000-00000c955ffff type=4 attr=000000000000000f
(XEN) [    1.713833]  00000c9560000-00000c956cfff type=3 attr=000000000000000f
(XEN) [    1.720768]  00000c956d000-00000c97fffff type=4 attr=000000000000000f
(XEN) [    1.727699]  00000c9800000-00000c981afff type=3 attr=000000000000000f
(XEN) [    1.734634]  00000c981b000-00000c982afff type=4 attr=000000000000000f
(XEN) [    1.741566]  00000c982b000-00000c983dfff type=3 attr=000000000000000f
(XEN) [    1.748501]  00000c983e000-00000c983ffff type=4 attr=000000000000000f
(XEN) [    1.755433]  00000c9840000-00000c9843fff type=3 attr=000000000000000f
(XEN) [    1.762366]  00000c9844000-00000c9848fff type=4 attr=000000000000000f
(XEN) [    1.769300]  00000c9849000-00000c985bfff type=3 attr=000000000000000f
(XEN) [    1.776234]  00000c985c000-00000c9860fff type=4 attr=000000000000000f
(XEN) [    1.783166]  00000c9861000-00000c9861fff type=3 attr=000000000000000f
(XEN) [    1.790101]  00000c9862000-00000c9862fff type=4 attr=000000000000000f
(XEN) [    1.797033]  00000c9863000-00000c9863fff type=3 attr=000000000000000f
(XEN) [    1.803968]  00000c9864000-00000c9866fff type=4 attr=000000000000000f
(XEN) [    1.810899]  00000c9867000-00000c9874fff type=3 attr=000000000000000f
(XEN) [    1.817834]  00000c9875000-00000c9875fff type=4 attr=000000000000000f
(XEN) [    1.824766]  00000c9876000-00000c9876fff type=3 attr=000000000000000f
(XEN) [    1.831701]  00000c9877000-00000c9882fff type=4 attr=000000000000000f
(XEN) [    1.838633]  00000c9883000-00000c988bfff type=3 attr=000000000000000f
(XEN) [    1.845565]  00000c988c000-00000c988efff type=4 attr=000000000000000f
(XEN) [    1.852501]  00000c988f000-00000c9894fff type=3 attr=000000000000000f
(XEN) [    1.859433]  00000c9895000-00000c98e1fff type=4 attr=000000000000000f
(XEN) [    1.866368]  00000c98e2000-00000c990ffff type=3 attr=000000000000000f
(XEN) [    1.873300]  00000c9910000-00000c9911fff type=4 attr=000000000000000f
(XEN) [    1.880232]  00000c9912000-00000c9913fff type=3 attr=000000000000000f
(XEN) [    1.887165]  00000c9914000-00000c9915fff type=4 attr=000000000000000f
(XEN) [    1.894100]  00000c9916000-00000c992dfff type=3 attr=000000000000000f
(XEN) [    1.901032]  00000c992e000-00000c9939fff type=4 attr=000000000000000f
(XEN) [    1.907967]  00000c993a000-00000c9960fff type=3 attr=000000000000000f
(XEN) [    1.914898]  00000c9961000-00000c9964fff type=4 attr=000000000000000f
(XEN) [    1.921834]  00000c9965000-00000c996cfff type=3 attr=000000000000000f
(XEN) [    1.928766]  00000c996d000-00000c9974fff type=4 attr=000000000000000f
(XEN) [    1.935698]  00000c9975000-00000c997efff type=3 attr=000000000000000f
(XEN) [    1.942632]  00000c997f000-00000c9988fff type=4 attr=000000000000000f
(XEN) [    1.949565]  00000c9989000-00000c99adfff type=3 attr=000000000000000f
(XEN) [    1.956498]  00000c99ae000-00000c99b7fff type=4 attr=000000000000000f
(XEN) [    1.963433]  00000c99b8000-00000c99b8fff type=3 attr=000000000000000f
(XEN) [    1.970367]  00000c99b9000-00000c99b9fff type=4 attr=000000000000000f
(XEN) [    1.977299]  00000c99ba000-00000c99c1fff type=3 attr=000000000000000f
(XEN) [    1.984234]  00000c99c2000-00000c99c4fff type=4 attr=000000000000000f
(XEN) [    1.991166]  00000c99c5000-00000c99c6fff type=3 attr=000000000000000f
(XEN) [    1.998101]  00000c99c7000-00000c99c7fff type=4 attr=000000000000000f
(XEN) [    2.005032]  00000c99c8000-00000c99d5fff type=3 attr=000000000000000f
(XEN) [    2.011966]  00000c99d6000-00000c99d9fff type=4 attr=000000000000000f
(XEN) [    2.018898]  00000c99da000-00000c99dffff type=3 attr=000000000000000f
(XEN) [    2.025832]  00000c99e0000-00000c99e5fff type=4 attr=000000000000000f
(XEN) [    2.032767]  00000c99e6000-00000c99e6fff type=3 attr=000000000000000f
(XEN) [    2.039698]  00000c99e7000-00000c99e8fff type=4 attr=000000000000000f
(XEN) [    2.046633]  00000c99e9000-00000c99fdfff type=3 attr=000000000000000f
(XEN) [    2.053565]  00000c99fe000-00000c99fefff type=4 attr=000000000000000f
(XEN) [    2.060498]  00000c99ff000-00000c9a01fff type=3 attr=000000000000000f
(XEN) [    2.067433]  00000c9a02000-00000c9a02fff type=4 attr=000000000000000f
(XEN) [    2.074365]  00000c9a03000-00000c9a12fff type=3 attr=000000000000000f
(XEN) [    2.081298]  00000c9a13000-00000c9a15fff type=4 attr=000000000000000f
(XEN) [    2.088232]  00000c9a16000-00000c9a17fff type=3 attr=000000000000000f
(XEN) [    2.095167]  00000c9a18000-00000c9a19fff type=4 attr=000000000000000f
(XEN) [    2.102098]  00000c9a1a000-00000c9a2ffff type=3 attr=000000000000000f
(XEN) [    2.109033]  00000c9a30000-00000c9a30fff type=4 attr=000000000000000f
(XEN) [    2.115965]  00000c9a31000-00000c9a31fff type=3 attr=000000000000000f
(XEN) [    2.122900]  00000c9a32000-00000c9a32fff type=4 attr=000000000000000f
(XEN) [    2.129833]  00000c9a33000-00000c9a33fff type=3 attr=000000000000000f
(XEN) [    2.136765]  00000c9a34000-00000c9a34fff type=4 attr=000000000000000f
(XEN) [    2.143698]  00000c9a35000-00000c9a35fff type=3 attr=000000000000000f
(XEN) [    2.150633]  00000c9a36000-00000c9a36fff type=4 attr=000000000000000f
(XEN) [    2.157565]  00000c9a37000-00000c9a37fff type=3 attr=000000000000000f
(XEN) [    2.164499]  00000c9a38000-00000c9a38fff type=4 attr=000000000000000f
(XEN) [    2.171432]  00000c9a39000-00000c9a4bfff type=3 attr=000000000000000f
(XEN) [    2.178364]  00000c9a4c000-00000c9a4dfff type=4 attr=000000000000000f
(XEN) [    2.185300]  00000c9a4e000-00000c9a52fff type=3 attr=000000000000000f
(XEN) [    2.192231]  00000c9a53000-00000c9a57fff type=4 attr=000000000000000f
(XEN) [    2.199166]  00000c9a58000-00000c9a5cfff type=3 attr=000000000000000f
(XEN) [    2.206099]  00000c9a5d000-00000c9a5ffff type=4 attr=000000000000000f
(XEN) [    2.213033]  00000c9a60000-00000c9a66fff type=3 attr=000000000000000f
(XEN) [    2.219966]  00000c9a67000-00000c9a69fff type=4 attr=000000000000000f
(XEN) [    2.226897]  00000c9a6a000-00000c9a73fff type=3 attr=000000000000000f
(XEN) [    2.233832]  00000c9a74000-00000c9a8afff type=4 attr=000000000000000f
(XEN) [    2.240764]  00000c9a8b000-00000c9a9cfff type=3 attr=000000000000000f
(XEN) [    2.247699]  00000c9a9d000-00000c9a9dfff type=4 attr=000000000000000f
(XEN) [    2.254633]  00000c9a9e000-00000c9a9ffff type=3 attr=000000000000000f
(XEN) [    2.261565]  00000c9aa0000-00000c9aa7fff type=4 attr=000000000000000f
(XEN) [    2.268497]  00000c9aa8000-00000c9aa8fff type=3 attr=000000000000000f
(XEN) [    2.275431]  00000c9aa9000-00000c9aa9fff type=4 attr=000000000000000f
(XEN) [    2.282366]  00000c9aaa000-00000c9aaafff type=3 attr=000000000000000f
(XEN) [    2.289297]  00000c9aab000-00000c9aacfff type=4 attr=000000000000000f
(XEN) [    2.296233]  00000c9aad000-00000c9ab1fff type=3 attr=000000000000000f
(XEN) [    2.303165]  00000c9ab2000-00000c9ab3fff type=4 attr=000000000000000f
(XEN) [    2.310099]  00000c9ab4000-00000c9ab7fff type=3 attr=000000000000000f
(XEN) [    2.317031]  00000c9ab8000-00000c9ab8fff type=4 attr=000000000000000f
(XEN) [    2.323966]  00000c9ab9000-00000c9abefff type=3 attr=000000000000000f
(XEN) [    2.330900]  00000c9abf000-00000c9abffff type=4 attr=000000000000000f
(XEN) [    2.337831]  00000c9ac0000-00000c9acbfff type=3 attr=000000000000000f
(XEN) [    2.344766]  00000c9acc000-00000c9accfff type=4 attr=000000000000000f
(XEN) [    2.351698]  00000c9acd000-00000c9acefff type=3 attr=000000000000000f
(XEN) [    2.358633]  00000c9acf000-00000c9ad0fff type=4 attr=000000000000000f
(XEN) [    2.365565]  00000c9ad1000-00000c9ad1fff type=3 attr=000000000000000f
(XEN) [    2.372499]  00000c9ad2000-00000c9ad2fff type=4 attr=000000000000000f
(XEN) [    2.379430]  00000c9ad3000-00000c9aeefff type=3 attr=000000000000000f
(XEN) [    2.386364]  00000c9aef000-00000c9af1fff type=4 attr=000000000000000f
(XEN) [    2.393298]  00000c9af2000-00000c9af3fff type=3 attr=000000000000000f
(XEN) [    2.400231]  00000c9af4000-00000c9af7fff type=4 attr=000000000000000f
(XEN) [    2.407165]  00000c9af8000-00000c9afbfff type=3 attr=000000000000000f
(XEN) [    2.414097]  00000c9afc000-00000c9afdfff type=4 attr=000000000000000f
(XEN) [    2.421033]  00000c9afe000-00000c9b07fff type=3 attr=000000000000000f
(XEN) [    2.427963]  00000c9b08000-00000c9f07fff type=4 attr=000000000000000f
(XEN) [    2.434897]  00000c9f08000-00000c9f27fff type=3 attr=000000000000000f
(XEN) [    2.441832]  00000c9f28000-00000c9f29fff type=4 attr=000000000000000f
(XEN) [    2.448763]  00000c9f2a000-00000c9f2bfff type=3 attr=000000000000000f
(XEN) [    2.455698]  00000c9f2c000-00000c9f2dfff type=4 attr=000000000000000f
(XEN) [    2.462632]  00000c9f2e000-00000c9f2efff type=3 attr=000000000000000f
(XEN) [    2.469563]  00000c9f2f000-00000c9f2ffff type=4 attr=000000000000000f
(XEN) [    2.476498]  00000c9f30000-00000c9f30fff type=3 attr=000000000000000f
(XEN) [    2.483432]  00000c9f31000-00000c9f31fff type=4 attr=000000000000000f
(XEN) [    2.490363]  00000c9f32000-00000c9f36fff type=3 attr=000000000000000f
(XEN) [    2.497298]  00000c9f37000-00000c9f3afff type=4 attr=000000000000000f
(XEN) [    2.504230]  00000c9f3b000-00000c9f3bfff type=3 attr=000000000000000f
(XEN) [    2.511163]  00000c9f3c000-00000c9f3cfff type=4 attr=000000000000000f
(XEN) [    2.518096]  00000c9f3d000-00000c9f3dfff type=3 attr=000000000000000f
(XEN) [    2.525031]  00000c9f3e000-00000ca411fff type=4 attr=000000000000000f
(XEN) [    2.531963]  00000ca412000-00000ca413fff type=3 attr=000000000000000f
(XEN) [    2.538898]  00000ca414000-00000ca415fff type=4 attr=000000000000000f
(XEN) [    2.545832]  00000ca416000-00000ca41cfff type=3 attr=000000000000000f
(XEN) [    2.552762]  00000ca41d000-00000ca41dfff type=4 attr=000000000000000f
(XEN) [    2.559696]  00000ca41e000-00000ca41efff type=3 attr=000000000000000f
(XEN) [    2.566632]  00000ca41f000-00000ca488fff type=4 attr=000000000000000f
(XEN) [    2.573564]  00000ca489000-00000ca489fff type=3 attr=000000000000000f
(XEN) [    2.580498]  00000ca48a000-00000ca48bfff type=4 attr=000000000000000f
(XEN) [    2.587432]  00000ca48c000-00000ca48cfff type=3 attr=000000000000000f
(XEN) [    2.594363]  00000ca48d000-00000ca491fff type=4 attr=000000000000000f
(XEN) [    2.601296]  00000ca492000-00000ca494fff type=3 attr=000000000000000f
(XEN) [    2.608231]  00000ca495000-00000cabc8fff type=4 attr=000000000000000f
(XEN) [    2.615163]  00000cabc9000-00000cc14cfff type=0 attr=000000000000000f
(XEN) [    2.622097]  00000cc14d000-00000cc195fff type=9 attr=000000000000000f
(XEN) [    2.629030]  00000cc196000-00000cc388fff type=10 attr=000000000000000f
(XEN) [    2.636051]  00000cc389000-00000cc389fff type=0 attr=000000000000000f
(XEN) [    2.642983]  00000cc38a000-00000cc709fff type=10 attr=000000000000000f
(XEN) [    2.650004]  00000cc70a000-00000cd179fff type=6 attr=800000000000000f
(XEN) [    2.656937]  00000cd17a000-00000cd1fefff type=5 attr=800000000000000f
(XEN) [    2.663871]  00000cd1ff000-00000cd7fffff type=4 attr=000000000000000f
(XEN) [    2.670803]  00000cd800000-00000cd8e9fff type=7 attr=000000000000000f
(XEN) [    2.677738]  00000cd8ea000-00000cd9e9fff type=4 attr=000000000000000f
(XEN) [    2.684669]  00000cd9ea000-00000cda05fff type=3 attr=000000000000000f
(XEN) [    2.691604]  00000cda06000-00000cda31fff type=4 attr=000000000000000f
(XEN) [    2.698536]  00000cda32000-00000cda44fff type=3 attr=000000000000000f
(XEN) [    2.705471]  00000cda45000-00000cdf57fff type=4 attr=000000000000000f
(XEN) [    2.712403]  00000cdf58000-00000cdf5afff type=3 attr=000000000000000f
(XEN) [    2.719335]  00000cdf5b000-00000cdf6dfff type=4 attr=000000000000000f
(XEN) [    2.726271]  00000cdf6e000-00000cdf77fff type=3 attr=000000000000000f
(XEN) [    2.733202]  00000cdf78000-00000cdf91fff type=4 attr=000000000000000f
(XEN) [    2.740138]  00000cdf92000-00000cdf97fff type=3 attr=000000000000000f
(XEN) [    2.747069]  00000cdf98000-00000cdfadfff type=4 attr=000000000000000f
(XEN) [    2.754005]  00000cdfae000-00000cdfb1fff type=3 attr=000000000000000f
(XEN) [    2.760936]  00000cdfb2000-00000cdfc5fff type=4 attr=000000000000000f
(XEN) [    2.767869]  00000cdfc6000-00000cdfcafff type=3 attr=000000000000000f
(XEN) [    2.774803]  00000cdfcb000-00000cdfdffff type=4 attr=000000000000000f
(XEN) [    2.781738]  00000cdfe0000-00000cdff1fff type=3 attr=000000000000000f
(XEN) [    2.788669]  00000cdff2000-00000cdff9fff type=4 attr=000000000000000f
(XEN) [    2.795604]  00000cdffa000-00000cdffffff type=3 attr=000000000000000f
(XEN) [    2.802535]  0000100000000-000080f33ffff type=7 attr=000000000000000f
(XEN) [    2.809470]  00000000a0000-00000000fffff type=0 attr=000000000000000f
(XEN) [    2.816402]  00000ce000000-00000cfffffff type=0 attr=000000000000000f
(XEN) [    2.823335]  00000f0000000-00000f7ffffff type=11 attr=800000000000100d
(XEN) [    2.830357]  00000fd000000-00000fedfffff type=11 attr=800000000000100d
(XEN) [    2.837377]  00000fee00000-00000fee00fff type=11 attr=8000000000000001
(XEN) [    2.844397]  00000fee01000-00000ffffffff type=11 attr=800000000000100d
(XEN) [    2.851416]  000080f340000-000082fffffff type=0 attr=000000000000000f
(XEN) [    2.858351]  0000830000000-00008501fffff type=11 attr=800000000000100d
(XEN) [    2.865371] alt table ffff82d0404a2018 -> ffff82d0404b3efc
(XEN) [    2.884766] AMD-Vi: IOMMU Extended Features:
(XEN) [    2.889531] - Peripheral Page Service Request
(XEN) [    2.894384] - x2APIC
(XEN) [    2.897071] - NX bit
(XEN) [    2.899759] - Invalidate All Command
(XEN) [    2.903831] - Guest APIC
(XEN) [    2.906866] - Performance Counters
(XEN) [    2.910764] - Host Address Translation Size: 0x2
(XEN) [    2.915878] - Guest Address Translation Size: 0
(XEN) [    2.920906] - Guest CR3 Root Table Level: 0x1
(XEN) [    2.925759] - Maximum PASID: 0xf
(XEN) [    2.929485] - SMI Filter Register: 0x1
(XEN) [    2.933732] - SMI Filter Register Count: 0x1
(XEN) [    2.938499] - Guest Virtual APIC Modes: 0x1
(XEN) [    2.943177] - Dual PPR Log: 0x2
(XEN) [    2.946819] - Dual Event Log: 0x2
(XEN) [    2.950631] - User / Supervisor Page Protection
(XEN) [    2.955658] - Device Table Segmentation: 0x3
(XEN) [    2.960425] - PPR Log Overflow Early Warning
(XEN) [    2.965192] - PPR Automatic Response
(XEN) [    2.969266] - Memory Access Routing and Control: 0
(XEN) [    2.974552] - Block StopMark Message
(XEN) [    2.978624] - Performance Optimization
(XEN) [    2.982872] - MSI Capability MMIO Access
(XEN) [    2.987293] - Guest I/O Protection
(XEN) [    2.991190] - Enhanced PPR Handling
(XEN) [    2.995178] - Attribute Forward
(XEN) [    2.998817] - Invalidate IOTLB Type
(XEN) [    3.002805] - VM Table Size: 0
(XEN) [    3.006357] - Guest Access Bit Update Disable
(XEN) [    3.022669] AMD-Vi: Disabled HAP memory map sharing with IOMMU
(XEN) [    3.028996] AMD-Vi: IOMMU 0 Enabled.
(XEN) [    3.033070] I/O virtualisation enabled
(XEN) [    3.037316]  - Dom0 mode: Relaxed
(XEN) [    3.041127] Interrupt remapping enabled
(XEN) [    3.045462] nr_sockets: 1
(XEN) [    3.048583] Enabling APIC mode.  Using 2 I/O APICs
(XEN) [    3.054471] ENABLING IO-APIC IRQs
(XEN) [    3.058286]  -> Using new ACK method
(XEN) [    3.062383] ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) [    3.218735] Wallclock source: CMOS RTC
(XEN) [    3.989133] Allocated console ring of 128 KiB.
(XEN) [    3.994074] mwait-idle: does not run on family 23 model 96
(XEN) [    4.000052] HVM: ASIDs enabled.
(XEN) [    4.003693] SVM: Supported advanced features:
(XEN) [    4.008546]  - Nested Page Tables (NPT)
(XEN) [    4.012881]  - Last Branch Record (LBR) Virtualisation
(XEN) [    4.018513]  - Next-RIP Saved on #VMEXIT
(XEN) [    4.022934]  - VMCB Clean Bits
(XEN) [    4.026486]  - TLB flush by ASID
(XEN) [    4.030213]  - DecodeAssists
(XEN) [    4.033594]  - Virtual VMLOAD/VMSAVE
(XEN) [    4.037665]  - Virtual GIF
(XEN) [    4.040872]  - Pause-Intercept Filter
(XEN) [    4.045031]  - Pause-Intercept Filter Threshold
(XEN) [    4.050060]  - TSC Rate MSR
(XEN) [    4.053354]  - MSR_SPEC_CTRL virtualisation
(XEN) [    4.058033] HVM: SVM enabled
(XEN) [    4.061412] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    4.067219] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    4.378713] Brought up 16 CPUs
(XEN) [    4.383439] Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) [    4.390021] Initializing null scheduler
(XEN) [    4.394357] WARNING: This is experimental software in development.
(XEN) [    4.401027] Use at your own risk.
(XEN) [    4.404844] mcheck_poll: Machine check polling timer started.
(XEN) [    4.411085] Running stub recovery selftests...
(XEN) [    4.416023] Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d040395502
(XEN) [    4.424257] Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d040395502
(XEN) [    4.432490] Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d040395502
(XEN) [    4.440721] Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d040395502
(XEN) [    4.468878] NX (Execute Disable) protection active
(XEN) [    4.474166] d0 has maximum 3328 PIRQs
(XEN) [    4.478490] *** Building a PVH Dom0 ***
(XEN) [    4.486912] d0: identity mappings for IOMMU:
(XEN) [    4.491679]  [00000000a0, 00000000ff] RW
(XEN) [    4.496100]  [0000009bff, 0000009fff] RW
(XEN) [    4.500519]  [00000cabc9, 00000cc14c] RW
(XEN) [    4.505240]  [00000cc389, 00000cc389] RW
(XEN) [    4.509661]  [00000cc70a, 00000cd1fe] RW
(XEN) [    4.514780]  [00000ce000, 00000cffff] RW
(XEN) [    4.519200]  [00000fd000, 00000fd2ff] RW
(XEN) [    4.523770]  [00000fd304, 00000febff] RW
(XEN) [    4.528341]  [00000fec02, 00000fedff] RW
(XEN) [    4.533195]  [00000fee01, 00000fffff] RW
(XEN) [    4.538046]  [000080f340, 00008501ff] RW
(XEN) [    4.543660] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [    4.550948] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [    4.558228] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
(XEN) [    4.565503] 0000:04:00.0: not mapping BAR [fe700, fe77f] invalid position
(XEN) [    4.572962] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [    4.580245] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [    4.587521] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [    4.594800] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [    4.734791] Dom0 memory allocation stats:
(XEN) [    4.739299] order  0 allocations: 4
(XEN) [    4.743287] order  1 allocations: 2
(XEN) [    4.747272] order  2 allocations: 2
(XEN) [    4.751255] order  3 allocations: 2
(XEN) [    4.755244] order  4 allocations: 2
(XEN) [    4.759231] order  5 allocations: 4
(XEN) [    4.763216] order  6 allocations: 3
(XEN) [    4.767205] order  7 allocations: 5
(XEN) [    4.771193] order  8 allocations: 4
(XEN) [    4.775178] order  9 allocations: 6
(XEN) [    4.779162] order 10 allocations: 3
(XEN) [    4.783153] order 11 allocations: 6
(XEN) [    4.787136] order 12 allocations: 3
(XEN) [    4.791127] order 13 allocations: 2
(XEN) [    4.795112] order 14 allocations: 3
(XEN) [    4.799095] order 15 allocations: 1
(XEN) [    4.803081] order 16 allocations: 2
(XEN) [    4.807071] order 17 allocations: 2
(XEN) [    4.811060] order 18 allocations: 2
(XEN) [    5.156981] ELF: phdr: paddr=0x1000000 memsz=0x1b1a00c
(XEN) [    5.162614] ELF: phdr: paddr=0x2c00000 memsz=0x892000
(XEN) [    5.168158] ELF: phdr: paddr=0x3492000 memsz=0x2fed8
(XEN) [    5.173622] ELF: phdr: paddr=0x34c2000 memsz=0x56e000
(XEN) [    5.179169] ELF: memory: 0x1000000 -> 0x3a30000
(XEN) [    5.184198] ELF: note: PHYS32_ENTRY = 0x1000000
(XEN) [    5.189221] ELF: note: GUEST_OS = "linux"
(XEN) [    5.193731] ELF: note: GUEST_VERSION = "2.6"
(XEN) [    5.198494] ELF: note: XEN_VERSION = "xen-3.0"
(XEN) [    5.203435] ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) [    5.208979] ELF: note: INIT_P2M = 0x8000000000
(XEN) [    5.213919] ELF: note: ENTRY = 0xffffffff834d4630
(XEN) [    5.219119] ELF: note: FEATURES = "!writable_page_tables"
(XEN) [    5.225012] ELF: note: PAE_MODE = "yes"
(XEN) [    5.229346] ELF: note: L1_MFN_VALID
(XEN) [    5.233336] ELF: note: MOD_START_PFN = 0x1
(XEN) [    5.237926] ELF: note: PADDR_OFFSET = 0
(XEN) [    5.242259] ELF: note: HYPERCALL_PAGE = 0xffffffff82034000
(XEN) [    5.248239] ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) [    5.253525] ELF: note: LOADER = "generic"
(XEN) [    5.258032] ELF: note: SUSPEND_CANCEL = 0x1
(XEN) [    5.262712] ELF: Found PVH image
(XEN) [    5.266441] ELF: addresses:
(XEN) [    5.269734]     virt_base        = 0x0
(XEN) [    5.273982]     elf_paddr_offset = 0x0
(XEN) [    5.278229]     virt_offset      = 0x0
(XEN) [    5.282473]     virt_kstart      = 0x1000000
(XEN) [    5.287238]     virt_kend        = 0x3a30000
(XEN) [    5.292010]     virt_entry       = 0x1000000
(XEN) [    5.296772]     p2m_base         = 0x8000000000
(XEN) [    5.301799] ELF: phdr 0 at 0x1000000 -> 0x2b1a00c
(XEN) [    5.314198] ELF: phdr 1 at 0x2c00000 -> 0x3492000
(XEN) [    5.321575] ELF: phdr 2 at 0x3492000 -> 0x34c1ed8
(XEN) [    5.326776] ELF: phdr 3 at 0x34c2000 -> 0x3789000
(XEN) [    5.389553] Dom0 memory map:
(XEN) [    5.392928]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [    5.398912]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [    5.405066]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [    5.411047]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [    5.417195]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [    5.423175]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [    5.429331]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [    5.435311]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [    5.441464]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [    5.447702]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [    5.453857]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [    5.460012]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [    5.466164]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [    5.472318]  [00000000cd1ff000, 00000000cdfffea7] (usable)
(XEN) [    5.478296]  [00000000cdfffea8, 00000000cdffff3f] (ACPI data)
(XEN) [    5.484534]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [    5.490692]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [    5.496846]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [    5.502997]  [0000000100000000, 0000000134aa3fff] (usable)
(XEN) [    5.508980]  [0000000134aa4000, 000000080f33ffff] (unusable)
(XEN) [    5.515128]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [    5.521281] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    5.527957] Scrubbing Free RAM in background
(XEN) [    5.532726] Std. Loglevel: All
(XEN) [    5.536278] Guest Loglevel: All
(XEN) [    5.539918] ***************************************************
(XEN) [    5.546327] WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) [    5.551615] This option is intended to aid debugging of Xen by ensuring
(XEN) [    5.558725] that all output is synchronously delivered on the serial line.
(XEN) [    5.566087] However it can introduce SIGNIFICANT latencies and affect
(XEN) [    5.573026] timekeeping. It is NOT recommended for production use!
(XEN) [    5.579695] ***************************************************
(XEN) [    5.586267] 3... 2... 1...
(XEN) [    8.589295] *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) [    8.597527] common/sched/null.c:357: 0 <-- d0v0
(XEN) [    8.602747] Freed 636kB 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=0xc7236518 unusable) ESRT=0xcc15b018
[    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.051108] tsc: Fast TSC calibration failed
[    0.055209] tsc: Detected 2894.572 MHz processor
[    0.059939] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.066477] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.072028] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
[    0.077532] MTRR map: 4 entries (3 fixed + 1 variable; max 20), built from 9 variable MTRRs
[    0.085806] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.093295] CPU MTRRs all blank - virtualized system.
[    0.098184] last_pfn = 0xcdfff max_arch_pfn = 0x400000000
[    0.107233] esrt: Reserving ESRT space from 0x00000000cc15b018 to 0x00000000cc15b050.
[    0.114891] Using GB pages for direct mapping
[    0.120045] Secure boot disabled
[    0.123101] RAMDISK: [mem 0x0a20d000-0x16d03fff]
[    0.128233] ACPI: Early table checksum verification disabled
[    0.133725] ACPI: RSDP 0x00000000CDFFFEA8 000024 (v02 ALASKA)
[    0.139443] ACPI: XSDT 0x00000000CDFFFECC 00009C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.147937] ACPI: APIC 0x00000000CDFFFF68 000098 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.156427] ACPI: FACP 0x00000000CC18C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.164959] ACPI: DSDT 0x00000000CC183000 00876D (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.173413] ACPI: FACS 0x00000000CC6C0000 000040
[    0.178012] ACPI: SSDT 0x00000000CC18E000 00723C (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.186503] ACPI: MCFG 0x00000000CC181000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.194998] ACPI: SSDT 0x00000000CC17F000 000228 (v01 AMD    STD3     00000001 INTL 20120913)
[    0.203489] ACPI: VFCT 0x00000000CC171000 00D684 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.211980] ACPI: SSDT 0x00000000CC16C000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.220475] ACPI: SSDT 0x00000000CC169000 000139 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.228972] ACPI: SSDT 0x00000000CC168000 000227 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.237463] ACPI: SSDT 0x00000000CC167000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.245956] ACPI: SSDT 0x00000000CC165000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.254450] ACPI: SSDT 0x00000000CC161000 0030C8 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.262941] ACPI: SSDT 0x00000000CC15E000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.271433] ACPI: SSDT 0x00000000CC15D000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.279927] ACPI: FPDT 0x00000000CC15C000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.288417] ACPI: Reserving APIC table memory at [mem 0xcdffff68-0xcdffffff]
[    0.295440] ACPI: Reserving FACP table memory at [mem 0xcc18c000-0xcc18c113]
[    0.302462] ACPI: Reserving DSDT table memory at [mem 0xcc183000-0xcc18b76c]
[    0.309479] ACPI: Reserving FACS table memory at [mem 0xcc6c0000-0xcc6c003f]
[    0.316500] ACPI: Reserving SSDT table memory at [mem 0xcc18e000-0xcc19523b]
[    0.323520] ACPI: Reserving MCFG table memory at [mem 0xcc181000-0xcc18103b]
[    0.330540] ACPI: Reserving SSDT table memory at [mem 0xcc17f000-0xcc17f227]
[    0.337562] ACPI: Reserving VFCT table memory at [mem 0xcc171000-0xcc17e683]
[    0.344581] ACPI: Reserving SSDT table memory at [mem 0xcc16c000-0xcc16f9f3]
[    0.351600] ACPI: Reserving SSDT table memory at [mem 0xcc169000-0xcc169138]
[    0.358622] ACPI: Reserving SSDT table memory at [mem 0xcc168000-0xcc168226]
[    0.365639] ACPI: Reserving SSDT table memory at [mem 0xcc167000-0xcc167d36]
[    0.372662] ACPI: Reserving SSDT table memory at [mem 0xcc165000-0xcc1660a4]
[    0.379677] ACPI: Reserving SSDT table memory at [mem 0xcc161000-0xcc1640c7]
[    0.386696] ACPI: Reserving SSDT table memory at [mem 0xcc15e000-0xcc15e07c]
[    0.393716] ACPI: Reserving SSDT table memory at [mem 0xcc15d000-0xcc15d516]
[    0.400741] ACPI: Reserving FPDT table memory at [mem 0xcc15c000-0xcc15c043]
[    0.407867] No NUMA configuration found
[    0.411573] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
[    0.418247] NODE_DATA(0) allocated [mem 0x134a9f000-0x134aa2fff]
[    0.424259] Zone ranges:
[    0.426736]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.432893]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.439045]   Normal   [mem 0x0000000100000000-0x000000080f33ffff]
[    0.445196] Movable zone start for each node
[    0.449445] Early memory node ranges
[    0.452996]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.459241]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.465479]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.471719]   node   0: [mem 0x000000000a20d000-0x00000000cabc8fff]
[    0.477959]   node   0: [mem 0x00000000cd1ff000-0x00000000cdffefff]
[    0.484198]   node   0: [mem 0x0000000100000000-0x000000080f33ffff]
[    0.490441] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
[    0.497465] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.503283] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.509281] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.519933] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.525972] On node 0, zone DMA32: 9782 pages in unavailable ranges
[    0.575339] On node 0, zone Normal: 8193 pages in unavailable ranges
[    0.581560] On node 0, zone Normal: 3264 pages in unavailable ranges
[    0.588299] ACPI: PM-Timer IO Port: 0x808
[    0.592194] IOAPIC[0]: apic_id 17, version 17, address 0xfec00000, GSI 0-23
[    0.599107] IOAPIC[1]: apic_id 18, version 17, address 0xfec01000, GSI 24-55
[    0.606089] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.612417] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.618919] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.625334] CPU topo: Max. logical packages:   1
[    0.629921] CPU topo: Max. logical dies:       1
[    0.634518] CPU topo: Max. dies per package:   1
[    0.639115] CPU topo: Max. threads per core:   1
[    0.643705] CPU topo: Num. cores per package:     4
[    0.648559] CPU topo: Num. threads per package:   4
[    0.653413] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.659489] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.667018] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.674558] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    0.682095] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[    0.689634] PM: hibernation: Registered nosave memory: [mem 0xcabc9000-0xcc14cfff]
[    0.697174] PM: hibernation: Registered nosave memory: [mem 0xcc14d000-0xcc195fff]
[    0.704719] PM: hibernation: Registered nosave memory: [mem 0xcc196000-0xcc388fff]
[    0.712257] PM: hibernation: Registered nosave memory: [mem 0xcc389000-0xcc389fff]
[    0.719799] PM: hibernation: Registered nosave memory: [mem 0xcc38a000-0xcc709fff]
[    0.727334] PM: hibernation: Registered nosave memory: [mem 0xcc70a000-0xcd1fefff]
[    0.734880] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    0.742419] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    0.749954] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xcfffffff]
[    0.757499] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
[    0.765034] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.772875] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
[    0.780266] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.787808] [mem 0xd0000000-0xefffffff] available for PCI devices
[    0.793879] Booting kernel on Xen PVH
[    0.797515] Xen version: 4.21-unstable
[    0.801241] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.816458] setup_percpu: NR_CPUS:64 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.823993] percpu: Embedded 57 pages/cpu s196312 r8192 d28968 u524288
[    0.830351] pcpu-alloc: s196312 r8192 d28968 u524288 alloc=1*2097152
[    0.836674] pcpu-alloc: [0] 0 1 2 3
[    0.840250] Kernel command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug rdinit=/bin/sh
[    0.849117] random: crng init done
[    0.852768] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.860701] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.868300] Fallback order for Node 0: 0
[    0.868303] Built 1 zonelists, mobility grouping on.  Total pages: 8235162
[    0.879105] Policy zone: Normal
[    0.882224] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.888989] software IO TLB: area num 4.
[    0.979092] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Poking KASLR using RDRAND RDTSC...
[    0.989625] Dynamic Preempt: voluntary
[    0.993226] rcu: Preemptible hierarchical RCU implementation.
[    0.998926] rcu: 	RCU event tracing is enabled.
[    1.003430] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    1.010014] 	Trampoline variant of Tasks RCU enabled.
[    1.015044] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.022667] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.029345] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    1.037526] Using NULL legacy PIC
[    1.040670] NR_IRQS: 4352, nr_irqs: 1000, preallocated irqs: 0
[    1.046497] xen:events: Using FIFO-based ABI
(XEN) [    9.889672] d0v0: upcall vector f3
[    1.054631] xen:events: Xen HVM callback vector for event delivery is enabled
[    1.061759] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.068950] Console: colour dummy device 80x25
[    1.073225] printk: legacy console [tty0] enabled
[    1.078154] printk: legacy console [hvc0] enabled

[    1.078154] printk: legacy console [hvc0] enabled
[    1.087451] printk: legacy bootconsole [xenboot0] disabled

[    1.087451] printk: legacy bootconsole [xenboot0] disabled
[    1.098467] ACPI: Core revision 20240322

[    1.121114] Failed to register legacy timer interrupt

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

[    1.131894] x2apic enabled

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

[    1.141017] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29b93b4bb21, max_idle_ns: 440795288346 ns

[    1.151503] Calibrating delay loop (skipped), value calculated using timer frequency.. 5789.14 BogoMIPS (lpj=2894572)

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

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

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

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

[    1.152501] Spectre V2 : Mitigation: Retpolines

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

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

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

[    1.152501] RETBleed: Mitigation: untrained return thunk

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

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

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

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

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

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

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

[    1.152501] Freeing SMP alternatives memory: 52K

[    1.152501] pid_max: default: 32768 minimum: 301

[    1.152501] LSM: initializing lsm=capability,selinux

[    1.152501] SELinux:  Initializing.

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

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

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

[    1.152501] Xen: using vcpuop timer interface

[    1.152501] installing Xen timer for CPU 0

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

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

[    1.153522] signal: max sigframe size: 1776

[    1.154522] rcu: Hierarchical SRCU implementation.

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

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

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

[    1.160561] installing Xen timer for CPU 1

[    1.161571] smpboot: x86: Booting SMP configuration:

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

[    1.163918] installing Xen timer for CPU 2

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

[    1.166627] installing Xen timer for CPU 3

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

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

[    1.174508] smpboot: Total of 4 processors activated (23156.57 BogoMIPS)

[    1.176551] Memory: 3349300K/32940648K available (20480K kernel code, 2926K rwdata, 7276K rodata, 2980K init, 2524K bss, 29587392K reserved, 0K cma-reserved)

[    1.178255] devtmpfs: initialized

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

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

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

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

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

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

[    1.186578] PM: RTC time: 02:40:27, date: 2025-05-16

[    1.187704] NET: Registered PF_NETLINK/PF_ROUTE protocol family

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

[    1.189525] Grant table initialized

[    1.190579] audit: initializing netlink subsys (disabled)

[    1.191520] audit: type=2000 audit(1747363227.996:1): state=initialized audit_enabled=0 res=1

[    1.191556] thermal_sys: Registered thermal governor 'step_wise'

[    1.199510] thermal_sys: Registered thermal governor 'user_space'

[    1.205517] cpuidle: using governor menu

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

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

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

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

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

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

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

[    1.265561] ACPI: Added _OSI(Module Device)

[    1.269508] ACPI: Added _OSI(Processor Device)

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

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

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

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

[    1.318255] ACPI: Interpreter enabled

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

[    1.325509] ACPI: Using IOAPIC for interrupt routing

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

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

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

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

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

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

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

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

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

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

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

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

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

[    1.420799] PCI host bridge to bus 0000:00

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

(XEN) [   11.167033] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   11.174313] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   11.181598] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   11.188873] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   11.196158] 0000:02:00.0: not mapping BAR [fea00, fea03] invalid position
(XEN) [   11.203873] PCI add device 0000:02:00.0
[    1.963520] pci 0000:00:02.3: PCI bridge to [bus 02]

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

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

(XEN) [   11.240357] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   11.247640] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
(XEN) [   11.254918] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   11.262200] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    1.983506] pci 0000:03:00.0: BAR 2 [mem 0xfe900000-0xfe90ffff 64bit]

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

(XEN) [   11.297042] 0000:03:00.0: not mapping BAR [fe900, fe90f] invalid position
(XEN) [   11.304317] 0000:03:00.0: not mapping BAR [fe910, fe913] invalid position
[    1.997747] pci 0000:03:00.0: supports D1 D2

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

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

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

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

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

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

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

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

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

[    2.066602] 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.431563] PCI add device 0000:04:00.0
[    2.086537] pci 0000:04:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint

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

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

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

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

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

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

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

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

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

(XEN) [   11.515259] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   11.522538] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   11.529822] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   11.537104] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
(XEN) [   11.544381] 0000:04:00.3: not mapping BAR [fe500, fe5ff] invalid position
[    2.161517] pci 0000:04:00.3: enabling Extended Tags

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

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

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

(XEN) [   11.588232] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   11.595515] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   11.602794] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   11.610077] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
(XEN) [   11.617354] 0000:04:00.4: not mapping BAR [fe400, fe4ff] invalid position
[    2.195518] pci 0000:04:00.4: enabling Extended Tags

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

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

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

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

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

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

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

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

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

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

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

(XEN) [   11.710001] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   11.717280] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   11.724557] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   11.731837] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   11.739117] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
(XEN) [   11.746402] 0000:05:00.0: not mapping BAR [fe801, fe801] invalid position
[    2.285507] pci 0000:05:00.0: BAR 5 [mem 0xfe801000-0xfe8017ff]

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

[    2.296768] 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) [   11.787642] PCI add device 0000:05:00.0
[    2.316536] pci 0000:05:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   11.799258] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   11.806538] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   11.813815] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   11.821095] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   11.828380] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
(XEN) [   11.835657] 0000:05:00.1: not mapping BAR [fe800, fe800] invalid position
[    2.328506] pci 0000:05:00.1: BAR 5 [mem 0xfe800000-0xfe8007ff]

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

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

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

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

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

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

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

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

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

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

[    2.398466] xen:balloon: Initialising balloon driver

[    2.486577] iommu: Default domain type: Translated

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

[    2.497559] SCSI subsystem initialized

[    2.501520] libata version 3.00 loaded.

[    2.505522] ACPI: bus type USB registered

[    2.509515] usbcore: registered new interface driver usbfs

[    2.514510] usbcore: registered new interface driver hub

[    2.519510] usbcore: registered new device driver usb

[    2.524515] pps_core: LinuxPPS API ver. 1 registered

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

[    2.537510] PTP clock support registered

[    2.541554] efivars: Registered efivars operations

[    2.546523] Advanced Linux Sound Architecture Driver Initialized.

[    2.552603] NetLabel: Initializing

[    2.556507] NetLabel:  domain hash size = 128

[    2.560507] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO

[    2.566518] NetLabel:  unlabeled traffic allowed by default

[    2.571533] PCI: Using ACPI for IRQ routing

[    2.583463] PCI: pci_cache_line_size set to 64 bytes

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

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

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

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

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

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

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

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

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

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

[    2.654507] vgaarb: loaded

[    2.657606] clocksource: Switched to clocksource tsc-early

[    2.663197] VFS: Disk quotas dquot_6.6.0

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

[    2.674016] pnp: PnP ACPI init

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[    2.868697] pnp: PnP ACPI: found 6 devices

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

[    2.887197] NET: Registered PF_INET protocol family

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

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

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

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

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

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

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

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

[    2.952320] NET: Registered PF_UNIX/PF_LOCAL protocol family

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

[    2.964111] RPC: Registered udp transport module.

[    2.968874] RPC: Registered tcp transport module.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[    3.200787] Unpacking initramfs...

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

[    3.206933] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b93b4bb21, max_idle_ns: 440795288346 ns

[    3.228463] clocksource: Switched to clocksource tsc

[    3.234561] Initialise system trusted keyrings

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

[    3.245666] NFS: Registering the id_resolver key type

[    3.250662] Key type id_resolver registered

[    3.254893] Key type id_legacy registered

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

[    3.273712] Key type asymmetric registered

[    3.277756] Asymmetric key parser 'x509' registered

[    3.280504] Freeing initrd memory: 207836K

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

[    3.294312] io scheduler mq-deadline registered

[    3.298895] io scheduler kyber registered

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

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

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

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

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

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

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

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

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

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

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

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

[    3.382276] ACPI: \_SB_.PLTF.P000: Found 3 idle states

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

[    3.394579] ACPI: \_SB_.PLTF.P001: Found 3 idle states

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

[    3.406884] ACPI: \_SB_.PLTF.P002: Found 3 idle states

[    3.412399] thermal LNXTHERM:00: registered as thermal_zone0

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

[    3.423174] thermal LNXTHERM:01: registered as thermal_zone1

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

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

[    3.439770] xen_mcelog: Failed to get CPU numbers

[    3.444461] xen_pciback: backend is vpci

[    3.448579] xen_acpi_processor: Uploading Xen processor PM info

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

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

[    3.469253] hpet_acpi_add: no address or irqs in _CRS

[    3.474280] Non-volatile memory driver v1.3

[    3.478482] Linux agpgart interface v0.103

[    3.483058] ACPI: bus type drm_connector registered

[    3.489101] loop: module loaded

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

[    3.492640] nvme nvme0: pci function 0000:02:00.0

[    3.496706] a(XEN) [   13.029674] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea0300c size 4
hci 0000:05:00.0(XEN) [   13.039636] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
: AHCI vers 0001(XEN) [   13.049516] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
.0301, 32 comman(XEN) [   13.059400] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
d slots, 6 Gbps,(XEN) [   13.069279] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
 SATA mode

(XEN) [   13.078989] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0300c size 4
(XEN) [   13.087479] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0301c size 4
[    3.560519] a(XEN) [   13.097360] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0302c size 4
hci 0000:05:00.0(XEN) [   13.107236] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0303c size 4
: 1/1 ports impl(XEN) [   13.117119] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0304c size 4
emented (port ma(XEN) [   13.127002] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0305c size 4
sk 0x1)

(XEN) [   13.136360] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0306c size 4
(XEN) [   13.144855] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0307c size 4
[    3.617888] a(XEN) [   13.154735] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0308c size 4
hci 0000:05:00.0(XEN) [   13.164612] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0309c size 4
: flags: 64bit n(XEN) [   13.174492] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030ac size 4
cq sntf ilck pm (XEN) [   13.184371] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030bc size 4
led clo only pmp(XEN) [   13.194251] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030cc size 4
 fbs pio slum pa(XEN) [   13.204133] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030dc size 4
rt

(XEN) [   13.213146] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030ec size 4
(XEN) [   13.221639] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030fc size 4
(XEN) [   13.230130] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0310c size 4
(XEN) [   13.238628] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0311c size 4
(XEN) [   13.247119] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0312c size 4
(XEN) [   13.255610] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0313c size 4
(XEN) [   13.264105] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0314c size 4
(XEN) [   13.272599] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0315c size 4
(XEN) [   13.281090] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0316c size 4
(XEN) [   13.289582] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0317c size 4
(XEN) [   13.298080] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0318c size 4
(XEN) [   13.306575] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0319c size 4
(XEN) [   13.315062] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031ac size 4
(XEN) [   13.323559] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031bc size 4
(XEN) [   13.332052] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031cc size 4
(XEN) [   13.340542] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031dc size 4
[    3.813606] s(XEN) [   13.350422] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031ec size 4
csi host0: ahci
(XEN) [   13.360302] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031fc size 4

(XEN) [   13.368972] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0320c size 4
[    3.850523] ata1: SATA max UDMA/133 abar m2048@0xfe801000 por(XEN) [   13.383014] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
(XEN) [   13.391502] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
t 0xfe801100 irq(XEN) [   13.401385] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
(XEN) [   13.409877] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
 50 lpm-pol 3

(XEN) [   13.419845] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
(XEN) [   13.428339] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
(XEN) [   13.436831] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
(XEN) [   13.445322] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
(XEN) [   13.453904] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0300c size 4
[    3.935546] ahci 0000:05:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode

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

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

[    3.959027] scsi host1: ahci

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

[    3.970443] Rounding down aligned max_sectors from 4294967295 to 4294967288

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

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

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

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

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

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

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

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

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

[    4.023791] Copyright(c) 2018 Intel Corporation.

[    4.028479] sky2: driver version 1.30

(XEN) [   13.565929] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe91000c size 4
(XEN) [   13.574512] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe910000 size 4
(XEN) [   13.583003] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe910004 size 4
(XEN) [   13.591497] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe910008 size 4
(XEN) [   13.599990] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe910008 size 4
(XEN) [   13.608568] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91000c size 4
(XEN) [   13.617065] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91001c size 4
(XEN) [   13.625703] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91002c size 4
(XEN) [   13.634197] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91003c size 4
(XEN) [   13.642691] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91004c size 4
(XEN) [   13.651186] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91005c size 4
(XEN) [   13.659680] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91006c size 4
(XEN) [   13.668168] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91007c size 4
(XEN) [   13.676663] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91008c size 4
(XEN) [   13.685154] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91009c size 4
(XEN) [   13.693651] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9100ac size 4
(XEN) [   13.702146] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9100bc size 4
(XEN) [   13.710634] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9100cc size 4
(XEN) [   13.719131] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9100dc size 4
(XEN) [   13.727626] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9100ec size 4
(XEN) [   13.736118] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9100fc size 4
(XEN) [   13.744609] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91010c size 4
(XEN) [   13.753103] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91011c size 4
(XEN) [   13.761594] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91012c size 4
(XEN) [   13.770092] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91013c size 4
(XEN) [   13.778586] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91014c size 4
(XEN) [   13.787074] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91015c size 4
(XEN) [   13.795569] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91016c size 4
[    4.261102] a(XEN) [   13.805450] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91017c size 4
ta1: SATA link d(XEN) [   13.815327] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91018c size 4
own (SStatus 0 S(XEN) [   13.825207] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe91019c size 4
Control 300)

(XEN) [   13.835000] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9101ac size 4
(XEN) [   13.843494] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9101bc size 4
[    4.296881] a(XEN) [   13.853375] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9101cc size 4
ta2: SATA link d(XEN) [   13.863257] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9101dc size 4
own (SStatus 0 S(XEN) [   13.873136] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9101ec size 4
Control 300)

(XEN) [   13.882932] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe9101fc size 4
[    4.364884] modprobe (75) used greatest stack depth: 14184 bytes left

[    4.365083] r8169 0000:03:00.0 eth0: RTL8125B, dc:9c:52:27:ae:c4, XID 641, IRQ 56

[    4.378799] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]

[    4.387386] xen_netfront: Initialising Xen virtual ethernet driver

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

[    4.399018] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1

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

(XEN) [   13.942559] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe00c size 4
(XEN) [   13.951137] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe01c size 4
(XEN) [   13.959719] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe02c size 4
(XEN) [   13.968297] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe03c size 4
(XEN) [   13.976877] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe04c size 4
(XEN) [   13.985458] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe000 size 4
(XEN) [   13.993953] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe004 size 4
(XEN) [   14.002447] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe008 size 4
(XEN) [   14.010939] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe008 size 4
(XEN) [   14.019517] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe010 size 4
(XEN) [   14.028014] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe014 size 4
(XEN) [   14.036504] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe018 size 4
(XEN) [   14.044997] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe018 size 4
(XEN) [   14.053581] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe020 size 4
(XEN) [   14.062075] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe024 size 4
(XEN) [   14.070566] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe028 size 4
(XEN) [   14.079057] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe028 size 4
(XEN) [   14.087639] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe030 size 4
(XEN) [   14.096130] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe034 size 4
(XEN) [   14.104627] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe038 size 4
(XEN) [   14.113117] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe038 size 4
(XEN) [   14.121697] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe040 size 4
(XEN) [   14.130192] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe044 size 4
(XEN) [   14.138683] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe048 size 4
(XEN) [   14.147176] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe048 size 4
(XEN) [   14.155756] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe00c size 4
(XEN) [   14.164250] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe01c size 4
(XEN) [   14.172744] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe02c size 4
(XEN) [   14.181239] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe03c size 4
(XEN) [   14.189730] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe04c size 4
(XEN) [   14.198224] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe05c size 4
(XEN) [   14.206716] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe06c size 4
(XEN) [   14.215209] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe07c size 4
(XEN) [   14.223704] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe000 size 4
(XEN) [   14.232199] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe004 size 4
(XEN) [   14.240690] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe008 size 4
(XEN) [   14.249187] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe008 size 4
(XEN) [   14.257763] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe000 size 4
(XEN) [   14.266256] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe004 size 4
(XEN) [   14.274751] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe008 size 4
(XEN) [   14.283242] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe5fe008 size 4
(XEN) [   14.291826] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe5fe00c size 4
[    4.773419] xhci_hcd 0000:04:00.3: xHCI Host Controller

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

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

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

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

[    4.808877] usb usb1: Product: xHCI Host Controller

[    4.813814] usb usb1: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

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

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

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

[    4.855732] usb usb2: Product: xHCI Host Controller

[    4.860668] usb usb2: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

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

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

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

(XEN) [   14.427868] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe00c size 4
(XEN) [   14.436446] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe01c size 4
(XEN) [   14.445027] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe02c size 4
(XEN) [   14.453608] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe03c size 4
(XEN) [   14.462186] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe04c size 4
(XEN) [   14.470764] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory write to 0xfe4fe000 size 4
(XEN) [   14.479257] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory write to 0xfe4fe004 size 4
(XEN) [   14.487753] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory write to 0xfe4fe008 size 4
(XEN) [   14.496248] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe008 size 4
(XEN) [   14.504825] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory write to 0xfe4fe010 size 4
(XEN) [   14.513319] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory write to 0xfe4fe014 size 4
(XEN) [   14.521814] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory write to 0xfe4fe018 size 4
(XEN) [   14.530306] arch/x86/hvm/emulate.c:417:d0v3 unhandled memory read from 0xfe4fe018 size 4
(XEN) [   14.538912] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfe4fe020 size 4
(XEN) [   14.547406] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfe4fe024 size 4
(XEN) [   14.555900] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfe4fe028 size 4
(XEN) [   14.564397] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfe4fe028 size 4
(XEN) [   14.572976] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfe4fe030 size 4
(XEN) [   14.581467] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfe4fe034 size 4
(XEN) [   14.589959] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfe4fe038 size 4
(XEN) [   14.598453] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfe4fe038 size 4
(XEN) [   14.607038] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe040 size 4
(XEN) [   14.615529] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe044 size 4
(XEN) [   14.624020] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe048 size 4
(XEN) [   14.632517] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe4fe048 size 4
(XEN) [   14.641098] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe00c size 4
(XEN) [   14.649590] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe01c size 4
(XEN) [   14.658084] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe02c size 4
(XEN) [   14.666575] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe03c size 4
(XEN) [   14.675066] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe04c size 4
(XEN) [   14.683564] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe05c size 4
(XEN) [   14.692055] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe06c size 4
(XEN) [   14.700546] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe07c size 4
(XEN) [   14.709038] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe000 size 4
(XEN) [   14.717532] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe004 size 4
(XEN) [   14.726026] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe008 size 4
(XEN) [   14.734521] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe4fe008 size 4
(XEN) [   14.743099] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe000 size 4
(XEN) [   14.751591] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe004 size 4
(XEN) [   14.760088] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe008 size 4
(XEN) [   14.768582] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfe4fe008 size 4
(XEN) [   14.777164] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfe4fe00c size 4
[    5.258861] xhci_hcd 0000:04:00.4: xHCI Host Controller

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

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

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

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

[    5.295253] usb usb3: Product: xHCI Host Controller

[    5.300182] usb usb3: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

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

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

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

[    5.342238] usb usb4: Product: xHCI Host Controller

[    5.347172] usb usb4: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

[    5.365911] usbcore: registered new interface driver usblp

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

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

[    5.382513] i8042: Probing ports directly.

[    5.387538] i8042: No controller found

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

[    5.396432] rtc_cmos 00:01: registered as rtc0

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

[    5.406469] fail to initialize ptp_kvm

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

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

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

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

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

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

[    5.452639] usbcore: registered new interface driver usbhid

[    5.458203] usbhid: USB HID core driver

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

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

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

[    5.494793] NET: Registered PF_INET6 protocol family

[    5.500618] Segment Routing with IPv6

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

[    5.504224] I(XEN) [   15.039159] arch/x86/hvm/vmsi.c:845:d0v0 0000:04:00.1: PIRQ 3320: unsupported address 0
n-situ OAM (IOAM(XEN) [   15.049040] arch/x86/hvm/vmsi.c:845:d0v0 0000:04:00.1: PIRQ 3320: unsupported address 0
) with IPv6

(XEN) [   15.058746] arch/x86/hvm/vmsi.c:845:d0v0 0000:04:00.1: PIRQ 3320: unsupported address 0
[    5.540289] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver

[    5.546319] NET: Registered PF_PACKET protocol family

[    5.551376] 9pnet: Installing 9P2000 support

[    5.555704] Key type dns_resolver registered

[    5.560321] IPI shorthand broadcast: enabled

[    5.566068] sched_clock: Marking stable (5483008779, 82921418)->(6253958763, -688028566)

[    5.574241] registered taskstats version 1

[    5.578269] Loading compiled-in X.509 certificates

[    5.583870] Demotion targets for Node 0: null

[    5.588276] PM:   Magic number: 9:537:662

[    5.592281] printk: legacy console [netcon0] enabled

[    5.597275] netconsole: network logging started

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

[    5.610830] modprobe (87) used greatest stack depth: 13688 bytes left

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

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

[    5.630215] ALSA device list:

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

[    5.633944]   No soundcards found.

[    5.641910] cfg80211: failed to load regulatory.db

[   12.895094] xhci_hcd 0000:04:00.4: Error while assigning device slot ID: Command Aborted

[   12.903124] xhci_hcd 0000:04:00.4: Max number of devices this xHCI host supports is 64.

[   12.911182] usb usb3-port4: couldn't allocate usb_device

[   65.950969] snd_hda_intel 0000:04:00.6: Cannot probe codecs, giving up

(XEN) [   75.484565] arch/x86/hvm/vmsi.c:845:d0v3 0000:04:00.6: PIRQ 3319: unsupported address 0
(XEN) [   75.493056] arch/x86/hvm/vmsi.c:845:d0v3 0000:04:00.6: PIRQ 3319: unsupported address 0
(XEN) [   75.501554] arch/x86/hvm/vmsi.c:845:d0v3 0000:04:00.6: PIRQ 3319: unsupported address 0
[   67.680666] nvme nvme0: I/O tag 4 (1004) QID 0 timeout, completion polled

[   67.680690] nvme nvme0: missing or invalid SUBNQN field.

[  129.119168] nvme nvme0: I/O tag 5 (1005) QID 0 timeout, completion polled

[  129.125980] nvme nvme0: D3 entry latency set to 8 seconds

[  190.560637] nvme nvme0: I/O tag 6 (1006) QID 0 timeout, completion polled

[  252.000630] nvme nvme0: I/O tag 7 (1007) QID 0 timeout, completion polled

[  313.438979] nvme nvme0: I/O tag 4 (2004) QID 0 timeout, completion polled

(XEN) [  322.972867] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0300c size 4
(XEN) [  322.981365] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03000 size 4
(XEN) [  322.989943] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
(XEN) [  322.998437] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
(XEN) [  323.006926] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
(XEN) [  323.015420] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
(XEN) [  323.024002] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0300c size 4
(XEN) [  323.032496] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03000 size 4
(XEN) [  323.041077] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea0300c size 4
(XEN) [  323.049653] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea0301c size 4
(XEN) [  323.058239] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea0302c size 4
(XEN) [  323.066814] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea0303c size 4
(XEN) [  323.075398] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea0304c size 4
(XEN) [  323.083973] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
(XEN) [  323.092472] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
(XEN) [  323.100960] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
(XEN) [  323.109456] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
(XEN) [  323.118038] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03010 size 4
(XEN) [  323.126529] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03014 size 4
(XEN) [  323.135020] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03018 size 4
(XEN) [  323.143515] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03018 size 4
(XEN) [  323.152093] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03020 size 4
(XEN) [  323.160590] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03024 size 4
(XEN) [  323.169082] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03028 size 4
(XEN) [  323.177573] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03028 size 4
(XEN) [  323.186153] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03030 size 4
(XEN) [  323.194646] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03034 size 4
(XEN) [  323.203140] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03038 size 4
(XEN) [  323.211634] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03038 size 4
(XEN) [  323.220216] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03040 size 4
(XEN) [  323.228706] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03044 size 4
(XEN) [  323.237204] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03048 size 4
(XEN) [  323.245698] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03048 size 4
(XEN) [  323.254273] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0300c size 4
(XEN) [  323.262768] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0301c size 4
(XEN) [  323.271259] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0302c size 4
(XEN) [  323.279753] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0303c size 4
(XEN) [  323.288251] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0304c size 4
(XEN) [  323.296739] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0305c size 4
(XEN) [  323.305233] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0306c size 4
(XEN) [  323.313726] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0307c size 4
(XEN) [  323.322222] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0308c size 4
(XEN) [  323.330715] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0309c size 4
(XEN) [  323.339211] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030ac size 4
(XEN) [  323.347702] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030bc size 4
(XEN) [  323.356193] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030cc size 4
(XEN) [  323.364685] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030dc size 4
(XEN) [  323.373183] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030ec size 4
(XEN) [  323.381678] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea030fc size 4
(XEN) [  323.390168] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0310c size 4
(XEN) [  323.398663] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0311c size 4
(XEN) [  323.407155] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0312c size 4
(XEN) [  323.415646] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0313c size 4
(XEN) [  323.424139] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0314c size 4
(XEN) [  323.432634] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0315c size 4
(XEN) [  323.441125] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0316c size 4
(XEN) [  323.449619] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0317c size 4
(XEN) [  323.458111] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0318c size 4
(XEN) [  323.466605] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0319c size 4
(XEN) [  323.475099] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031ac size 4
(XEN) [  323.483594] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031bc size 4
(XEN) [  323.492085] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031cc size 4
(XEN) [  323.500578] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031dc size 4
(XEN) [  323.509074] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031ec size 4
(XEN) [  323.517565] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea031fc size 4
(XEN) [  323.526058] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0320c size 4
(XEN) [  323.534557] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
(XEN) [  323.543047] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
(XEN) [  323.551538] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
(XEN) [  323.560031] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
(XEN) [  323.568614] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03000 size 4
(XEN) [  323.577110] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03004 size 4
(XEN) [  323.585598] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea03008 size 4
(XEN) [  323.594094] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory read from 0xfea03008 size 4
(XEN) [  323.602673] arch/x86/hvm/emulate.c:417:d0v1 unhandled memory write to 0xfea0300c size 4
[  374.879005] nvme nvme0: I/O tag 5 (2005) QID 0 timeout, completion polled

[  436.318980] n(XEN) [  445.847216] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea03010 size 4
(XEN) [  445.855709] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea03014 size 4
vme nvme0: I/O t(XEN) [  445.865588] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea03018 size 4
(XEN) [  445.874086] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfea03018 size 4
ag 20 (1014) QID(XEN) [  445.884048] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea03010 size 4
(XEN) [  445.892546] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea03014 size 4
(XEN) [  445.901037] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea03018 size 4
 0 timeout, comp(XEN) [  445.910918] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory read from 0xfea03018 size 4
(XEN) [  445.919497] arch/x86/hvm/emulate.c:417:d0v0 unhandled memory write to 0xfea0301c size 4
letion polled

[-- Attachment #3: test-patched.log --]
[-- Type: text/plain, Size: 116534 bytes --]

Xen 4.21-unstable
(XEN) [0000002aacb417ae] Xen version 4.21-unstable (root@) (gcc (Alpine 12.2.1_git20220924-r10) 12.2.1 20220924) debug=y Thu May 15 18:51:04 UTC 2025
(XEN) [0000002aaef606e2] Latest ChangeSet:
(XEN) [0000002aafa23ff2] build-id: f92add092bc0ede030fc5efb53c08bcb143780db
(XEN) [0000002ab0c919d9] Console output is synchronous.
(XEN) [0000002ab1a33cbf] CPU Vendor: AMD, Family 23 (0x17), Model 96 (0x60), Stepping 1 (raw 00860f01)
(XEN) [0000002ab3314bea] BSP microcode revision: 0x0860010c
(XEN) [0000002ab41ac7dc] Bootloader: GRUB 2.13
(XEN) [0000002ab4d298aa] Command line: console=com1 com1=115200,8n1,0x3F8,4 sched=null loglvl=all guest_loglvl=all console_timestamps=boot iommu=verbose dom0=pvh,verbose dom0_max_vcpus=4 dom0_mem=4G argo=1,mac-permissive=1 sync_console noreboot wow
(XEN) [0000002ab88f8a65] Xen image load base address: 0xc6800000
(XEN) [0000002ab98c2cec] Video information:
(XEN) [0000002aba386157]  VGA is text mode 80x25, font 8x16
(XEN) [0000002abb21eac4] Disc information:
(XEN) [0000002abbca5a07]  Found 0 MBR signatures
(XEN) [0000002abc89c9e0]  Found 1 EDD information structures
(XEN) [0000002abd770899] EFI RAM map:
(XEN) [0000002abe0c50ef]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [0000002abf23bb79]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [0000002ac042d41f]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [0000002ac15a599f]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [0000002ac2797724]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [0000002ac390e13a]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [0000002ac4affebf]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [0000002ac5c75b5a]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [0000002ac6e66b64]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [0000002ac8094dd7]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [0000002ac9286faa]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [0000002aca477b49]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [0000002acb66a649]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [0000002acc85a864]  [00000000cd1ff000, 00000000cdffffff] (usable)
(XEN) [0000002acd9d2069]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [0000002acebc3dd1]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [0000002acfdb5ae2]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [0000002ad0fa6aec]  [0000000100000000, 000000080f33ffff] (usable)
(XEN) [0000002ad211d502]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [0000002adf9063ad] ACPI: RSDP CC6F3014, 0024 (r2 ALASKA)
(XEN) [0000002ae0854341] ACPI: XSDT CC6F2728, 00D4 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [0000002ae1f4c0f4] ACPI: FACP CC18C000, 0114 (r6 ALASKA   A M I   1072009 AMI     10013)
(XEN) [0000002ae3642c87] ACPI: DSDT CC183000, 876D (r2 ALASKA   A M I   1072009 INTL 20120913)
(XEN) [0000002ae4d3bc94] ACPI: FACS CC6C0000, 0040
(XEN) [0000002ae59ab47a] ACPI: SSDT CC18E000, 723C (r2    AMD AmdTable        2 MSFT  4000000)
(XEN) [0000002ae70a324a] ACPI: IVRS CC18D000, 01A4 (r2  AMD   AmdTable        1 AMD         0)
(XEN) [0000002ae879b484] ACPI: FIDT CC182000, 009C (r1 ALASKA    A M I  1072009 AMI     10013)
(XEN) [0000002ae9e936a2] ACPI: MCFG CC181000, 003C (r1 ALASKA    A M I  1072009 MSFT    10013)
(XEN) [0000002aeb5894ba] ACPI: HPET CC180000, 0038 (r1 ALASKA    A M I  1072009 AMI         5)
(XEN) [0000002aecc824c7] ACPI: SSDT CC17F000, 0228 (r1    AMD     STD3        1 INTL 20120913)
(XEN) [0000002aee3787a1] ACPI: VFCT CC171000, D684 (r1 ALASKA   A M I         1  AMD 31504F47)
(XEN) [0000002aefa709dc] ACPI: TPM2 CC170000, 004C (r4 ALASKA   A M I         1 AMI         0)
(XEN) [0000002af11690bc] ACPI: SSDT CC16C000, 39F4 (r1    AMD AmdTable        1 AMD         1)
(XEN) [0000002af285f801] ACPI: CRAT CC16B000, 0F28 (r1    AMD AmdTable        1 AMD         1)
(XEN) [0000002af3f575d1] ACPI: CDIT CC16A000, 0029 (r1    AMD AmdTable        1 AMD         1)
(XEN) [0000002af564f7ef] ACPI: SSDT CC169000, 0139 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002af6d47a81] ACPI: SSDT CC168000, 0227 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002af843e152] ACPI: SSDT CC167000, 0D37 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002af9b35669] ACPI: SSDT CC165000, 10A5 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002afb22dcf2] ACPI: SSDT CC161000, 30C8 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002afc925f84] ACPI: WSMT CC160000, 0028 (r1 ALASKA   A M I   1072009 AMI     10013)
(XEN) [0000002afe01c207] ACPI: APIC CC15F000, 00DE (r3 ALASKA   A M I   1072009 AMI     10013)
(XEN) [0000002aff7136aa] ACPI: SSDT CC15E000, 007D (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002b00e0b02c] ACPI: SSDT CC15D000, 0517 (r1    AMD AmdTable        1 INTL 20120913)
(XEN) [0000002b0250324a] ACPI: FPDT CC15C000, 0044 (r1 ALASKA   A M I   1072009 AMI   1000013)
(XEN) [0000002b03bfa330] System RAM: 32168MB (32940656kB)
(XEN) [0000002b08ef3ff9] No NUMA configuration found
(XEN) [0000002b09bdded7] Faking a node at 0000000000000000-000000080f340000
(XEN) [0000002b13cd98a4] Domain heap initialised
(XEN) [0000002b15cd6a61] SMBIOS 3.2 present.
(XEN) [0000002b167e9ec3] Using APIC driver default
(XEN) [0000002b1745c863] ACPI: PM-Timer IO Port: 0x808 (32 bits)
(XEN) [0000002b18426f39] ACPI: v5 SLEEP INFO: control[0:0], status[0:0]
(XEN) [0000002b1959cbd4] ACPI: SLEEP INFO: pm1x_cnt[1:804,1:0], pm1x_evt[1:800,1:0]
(XEN) [0000002b1a9f1bc9] ACPI: 32/64X FACS address mismatch in FADT - cc6c0000/0000000000000000, using 32
(XEN) [0000002b1c38ba16] ACPI:             wakeup_vec[cc6c000c], vec_size[20]
(XEN) [0000002b1d672fdc] ACPI: Local APIC address 0xfee00000
(XEN) [0000002b1e55979b] Overriding APIC driver with bigsmp
(XEN) [0000002b1f3f2094] ACPI: IOAPIC (id[0x11] address[0xfec00000] gsi_base[0])
(XEN) [0000002b2079013c] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
(XEN) [0000002b21d18a04] ACPI: IOAPIC (id[0x12] address[0xfec01000] gsi_base[24])
(XEN) [0000002b230f2b69] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
(XEN) [0000002b246b98f4] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
(XEN) [0000002b25a950c8] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
(XEN) [0000002b26ee935e] ACPI: IRQ0 used by override.
(XEN) [0000002b27c12c11] ACPI: IRQ2 used by override.
(XEN) [0000002b2893b2a4] ACPI: IRQ9 used by override.
(XEN) [0000002b29663df9] ACPI: HPET id: 0x10228201 base: 0xfed00000
(XEN) [0000002b2a6e5d2d] PCI: MCFG configuration 0: base f0000000 segment 0000 buses 00 - 7f
(XEN) [0000002b2bd61ef2] PCI: MCFG area at f0000000 reserved in E820
(XEN) [0000002b2ce22304] PCI: Using MCFG for segment 0000 bus 00-7f
(XEN) [0000002b2dea42c8] Using ACPI (MADT) for SMP configuration information
(XEN) [0000002b2f14c5bf] SMP: Allowing 16 CPUs (0 hotplug CPUs)
(XEN) [0000002b300da855] IRQ limits: 56 GSI, 3272 MSI/MSI-X
(XEN) [0000002b30f72464] CPU0: 1400 ... 2900 MHz
(XEN) [0000002b31b6914b] xstate: size: 0x380 and states: 0x207
(XEN) [0000002b32ab77c8] CPU0: AMD Fam17h machine check reporting enabled
(XEN) [0000002b33ca9530] Speculative mitigation facilities:
(XEN) [0000002b34b422b1]   Hardware hints: IBRS_FAST IBRS_SAME_MODE
(XEN) [0000002b35bc4258]   Hardware features: IBPB IBRS STIBP SSBD
(XEN) [0000002b36c08eae]   Compiled-in support: INDIRECT_THUNK RETURN_THUNK SHADOW_PAGING HARDEN_ARRAY HARDEN_BRANCH HARDEN_GUEST_ACCESS HARDEN_LOCK
(XEN) [0000002b38feae31]   Xen settings: BTI-Thunk: RETPOLINE, SPEC_CTRL: IBRS- STIBP+ SSBD-, Other: BRANCH_HARDEN
(XEN) [0000002b3abac2f3]   Support for HVM VMs: MSR_SPEC_CTRL MSR_VIRT_SPEC_CTRL RSB IBPB-entry
(XEN) [0000002b3c2df853]   Support for PV VMs: IBPB-entry
(XEN) [0000002b3d0fe981]   XPTI (64-bit PV only): Dom0 disabled, DomU disabled (without PCID)
(XEN) [0000002b3e7b7051]   PV L1TF shadowing: Dom0 disabled, DomU disabled
(XEN) [0000002b3f9e7bc6] Using scheduler: null Scheduler (null)
(XEN) [0000002b40974740] Initializing null scheduler
(XEN) [0000002b4165dfe3] WARNING: This is experimental software in development.
(XEN) [0000002b429bedae] Use at your own risk.
(XEN) [0000002b4befa678] Platform timer is 14.318MHz HPET
(XEN) [    0.930165] Detected 2894.548 MHz processor.
(XEN) [    0.936633] Freed 1008kB unused BSS memory
(XEN) [    0.941227] EFI memory map:
(XEN) [    0.944522]  0000000000000-0000000003fff type=2 attr=000000000000000f
(XEN) [    0.951455]  0000000004000-000000008efff type=7 attr=000000000000000f
(XEN) [    0.958386]  000000008f000-000000009efff type=2 attr=000000000000000f
(XEN) [    0.965320]  000000009f000-000000009ffff type=4 attr=000000000000000f
(XEN) [    0.972253]  0000000100000-0000000e89fff type=2 attr=000000000000000f
(XEN) [    0.979186]  0000000e8a000-0000000ffffff type=7 attr=000000000000000f
(XEN) [    0.986121]  0000001000000-000000101ffff type=4 attr=000000000000000f
(XEN) [    0.993055]  0000001020000-0000009bfefff type=7 attr=000000000000000f
(XEN) [    0.999987]  0000009bff000-0000009ffffff type=0 attr=000000000000000f
(XEN) [    1.006922]  000000a000000-000000a1fffff type=7 attr=000000000000000f
(XEN) [    1.013854]  000000a200000-000000a20cfff type=10 attr=000000000000000f
(XEN) [    1.020874]  000000a20d000-0000016d05fff type=2 attr=000000000000000f
(XEN) [    1.027809]  0000016d06000-00000c4f87fff type=7 attr=000000000000000f
(XEN) [    1.034740]  00000c4f88000-00000c709cfff type=1 attr=000000000000000f
(XEN) [    1.041675]  00000c709d000-00000c71b2fff type=7 attr=000000000000000f
(XEN) [    1.048609]  00000c71b3000-00000c71dbfff type=4 attr=000000000000000f
(XEN) [    1.055541]  00000c71dc000-00000c7216fff type=3 attr=000000000000000f
(XEN) [    1.062476]  00000c7217000-00000c7218fff type=7 attr=000000000000000f
(XEN) [    1.069408]  00000c7219000-00000c7219fff type=4 attr=000000000000000f
(XEN) [    1.076341]  00000c721a000-00000c7225fff type=3 attr=000000000000000f
(XEN) [    1.083274]  00000c7226000-00000c7227fff type=7 attr=000000000000000f
(XEN) [    1.090209]  00000c7228000-00000c722cfff type=4 attr=000000000000000f
(XEN) [    1.097141]  00000c722d000-00000c7232fff type=7 attr=000000000000000f
(XEN) [    1.104076]  00000c7233000-00000c7233fff type=2 attr=000000000000000f
(XEN) [    1.111007]  00000c7234000-00000c7235fff type=7 attr=000000000000000f
(XEN) [    1.117940]  00000c7236000-00000c7238fff type=4 attr=000000000000000f
(XEN) [    1.124876]  00000c7239000-00000c723cfff type=7 attr=000000000000000f
(XEN) [    1.131809]  00000c723d000-00000c7251fff type=4 attr=000000000000000f
(XEN) [    1.138741]  00000c7252000-00000c725ffff type=3 attr=000000000000000f
(XEN) [    1.145676]  00000c7260000-00000c729dfff type=4 attr=000000000000000f
(XEN) [    1.152608]  00000c729e000-00000c729ffff type=7 attr=000000000000000f
(XEN) [    1.159543]  00000c72a0000-00000c72a1fff type=4 attr=000000000000000f
(XEN) [    1.166474]  00000c72a2000-00000c72a3fff type=7 attr=000000000000000f
(XEN) [    1.173409]  00000c72a4000-00000c72a4fff type=4 attr=000000000000000f
(XEN) [    1.180343]  00000c72a5000-00000c72a5fff type=7 attr=000000000000000f
(XEN) [    1.187274]  00000c72a6000-00000c72a7fff type=4 attr=000000000000000f
(XEN) [    1.194210]  00000c72a8000-00000c72aafff type=7 attr=000000000000000f
(XEN) [    1.201142]  00000c72ab000-00000c72abfff type=4 attr=000000000000000f
(XEN) [    1.208074]  00000c72ac000-00000c72adfff type=7 attr=000000000000000f
(XEN) [    1.215007]  00000c72ae000-00000c72b0fff type=4 attr=000000000000000f
(XEN) [    1.221943]  00000c72b1000-00000c72bbfff type=7 attr=000000000000000f
(XEN) [    1.228874]  00000c72bc000-00000c72befff type=4 attr=000000000000000f
(XEN) [    1.235810]  00000c72bf000-00000c72c2fff type=7 attr=000000000000000f
(XEN) [    1.242744]  00000c72c3000-00000c72c4fff type=4 attr=000000000000000f
(XEN) [    1.249674]  00000c72c5000-00000c72c6fff type=7 attr=000000000000000f
(XEN) [    1.256609]  00000c72c7000-00000c72c8fff type=4 attr=000000000000000f
(XEN) [    1.263541]  00000c72c9000-00000c72cafff type=7 attr=000000000000000f
(XEN) [    1.270477]  00000c72cb000-00000c72cbfff type=4 attr=000000000000000f
(XEN) [    1.277409]  00000c72cc000-00000c72ccfff type=7 attr=000000000000000f
(XEN) [    1.284342]  00000c72cd000-00000c72cefff type=4 attr=000000000000000f
(XEN) [    1.291277]  00000c72cf000-00000c72d1fff type=7 attr=000000000000000f
(XEN) [    1.298210]  00000c72d2000-00000c72d3fff type=4 attr=000000000000000f
(XEN) [    1.305144]  00000c72d4000-00000c7376fff type=7 attr=000000000000000f
(XEN) [    1.312076]  00000c7377000-00000c785afff type=4 attr=000000000000000f
(XEN) [    1.319011]  00000c785b000-00000c79d2fff type=3 attr=000000000000000f
(XEN) [    1.325943]  00000c79d3000-00000c7a2efff type=7 attr=000000000000000f
(XEN) [    1.332875]  00000c7a2f000-00000c7a4cfff type=4 attr=000000000000000f
(XEN) [    1.339810]  00000c7a4d000-00000c7a5dfff type=3 attr=000000000000000f
(XEN) [    1.346741]  00000c7a5e000-00000c7ae7fff type=4 attr=000000000000000f
(XEN) [    1.353675]  00000c7ae8000-00000c7b07fff type=3 attr=000000000000000f
(XEN) [    1.360608]  00000c7b08000-00000c7b08fff type=4 attr=000000000000000f
(XEN) [    1.367544]  00000c7b09000-00000c7b10fff type=3 attr=000000000000000f
(XEN) [    1.374475]  00000c7b11000-00000c7b18fff type=4 attr=000000000000000f
(XEN) [    1.381409]  00000c7b19000-00000c7b30fff type=3 attr=000000000000000f
(XEN) [    1.388344]  00000c7b31000-00000c7b32fff type=4 attr=000000000000000f
(XEN) [    1.395275]  00000c7b33000-00000c7b55fff type=3 attr=000000000000000f
(XEN) [    1.402210]  00000c7b56000-00000c7b60fff type=4 attr=000000000000000f
(XEN) [    1.409144]  00000c7b61000-00000c7b8cfff type=3 attr=000000000000000f
(XEN) [    1.416075]  00000c7b8d000-00000c9270fff type=4 attr=000000000000000f
(XEN) [    1.423009]  00000c9271000-00000c92d7fff type=3 attr=000000000000000f
(XEN) [    1.429944]  00000c92d8000-00000c92dbfff type=4 attr=000000000000000f
(XEN) [    1.436878]  00000c92dc000-00000c92e5fff type=3 attr=000000000000000f
(XEN) [    1.443809]  00000c92e6000-00000c9330fff type=4 attr=000000000000000f
(XEN) [    1.450744]  00000c9331000-00000c934afff type=3 attr=000000000000000f
(XEN) [    1.457676]  00000c934b000-00000c934efff type=4 attr=000000000000000f
(XEN) [    1.464611]  00000c934f000-00000c936cfff type=3 attr=000000000000000f
(XEN) [    1.471542]  00000c936d000-00000c936dfff type=4 attr=000000000000000f
(XEN) [    1.478477]  00000c936e000-00000c9374fff type=3 attr=000000000000000f
(XEN) [    1.485409]  00000c9375000-00000c937bfff type=4 attr=000000000000000f
(XEN) [    1.492345]  00000c937c000-00000c9389fff type=3 attr=000000000000000f
(XEN) [    1.499275]  00000c938a000-00000c938efff type=4 attr=000000000000000f
(XEN) [    1.506209]  00000c938f000-00000c9390fff type=3 attr=000000000000000f
(XEN) [    1.513143]  00000c9391000-00000c9392fff type=4 attr=000000000000000f
(XEN) [    1.520075]  00000c9393000-00000c9399fff type=3 attr=000000000000000f
(XEN) [    1.527009]  00000c939a000-00000c939bfff type=4 attr=000000000000000f
(XEN) [    1.533944]  00000c939c000-00000c939cfff type=3 attr=000000000000000f
(XEN) [    1.540878]  00000c939d000-00000c93a0fff type=4 attr=000000000000000f
(XEN) [    1.547809]  00000c93a1000-00000c93b7fff type=3 attr=000000000000000f
(XEN) [    1.554743]  00000c93b8000-00000c93b9fff type=4 attr=000000000000000f
(XEN) [    1.561678]  00000c93ba000-00000c93bbfff type=3 attr=000000000000000f
(XEN) [    1.568611]  00000c93bc000-00000c93bcfff type=4 attr=000000000000000f
(XEN) [    1.575545]  00000c93bd000-00000c93cbfff type=3 attr=000000000000000f
(XEN) [    1.582476]  00000c93cc000-00000c93d4fff type=4 attr=000000000000000f
(XEN) [    1.589411]  00000c93d5000-00000c93d6fff type=3 attr=000000000000000f
(XEN) [    1.596343]  00000c93d7000-00000c93d8fff type=4 attr=000000000000000f
(XEN) [    1.603278]  00000c93d9000-00000c93d9fff type=3 attr=000000000000000f
(XEN) [    1.610209]  00000c93da000-00000c93dafff type=4 attr=000000000000000f
(XEN) [    1.617146]  00000c93db000-00000c93dbfff type=3 attr=000000000000000f
(XEN) [    1.624076]  00000c93dc000-00000c9529fff type=4 attr=000000000000000f
(XEN) [    1.631012]  00000c952a000-00000c9533fff type=3 attr=000000000000000f
(XEN) [    1.637944]  00000c9534000-00000c9535fff type=4 attr=000000000000000f
(XEN) [    1.644878]  00000c9536000-00000c9539fff type=3 attr=000000000000000f
(XEN) [    1.651809]  00000c953a000-00000c953dfff type=4 attr=000000000000000f
(XEN) [    1.658745]  00000c953e000-00000c9545fff type=3 attr=000000000000000f
(XEN) [    1.665676]  00000c9546000-00000c9547fff type=4 attr=000000000000000f
(XEN) [    1.672611]  00000c9548000-00000c954bfff type=3 attr=000000000000000f
(XEN) [    1.679546]  00000c954c000-00000c954dfff type=4 attr=000000000000000f
(XEN) [    1.686477]  00000c954e000-00000c9556fff type=3 attr=000000000000000f
(XEN) [    1.693412]  00000c9557000-00000c955afff type=4 attr=000000000000000f
(XEN) [    1.700345]  00000c955b000-00000c955cfff type=3 attr=000000000000000f
(XEN) [    1.707276]  00000c955d000-00000c955ffff type=4 attr=000000000000000f
(XEN) [    1.714212]  00000c9560000-00000c956cfff type=3 attr=000000000000000f
(XEN) [    1.721144]  00000c956d000-00000c97fffff type=4 attr=000000000000000f
(XEN) [    1.728076]  00000c9800000-00000c981afff type=3 attr=000000000000000f
(XEN) [    1.735012]  00000c981b000-00000c982afff type=4 attr=000000000000000f
(XEN) [    1.741943]  00000c982b000-00000c983dfff type=3 attr=000000000000000f
(XEN) [    1.748879]  00000c983e000-00000c983ffff type=4 attr=000000000000000f
(XEN) [    1.755811]  00000c9840000-00000c9843fff type=3 attr=000000000000000f
(XEN) [    1.762746]  00000c9844000-00000c9848fff type=4 attr=000000000000000f
(XEN) [    1.769677]  00000c9849000-00000c985bfff type=3 attr=000000000000000f
(XEN) [    1.776612]  00000c985c000-00000c9860fff type=4 attr=000000000000000f
(XEN) [    1.783544]  00000c9861000-00000c9861fff type=3 attr=000000000000000f
(XEN) [    1.790479]  00000c9862000-00000c9862fff type=4 attr=000000000000000f
(XEN) [    1.797412]  00000c9863000-00000c9863fff type=3 attr=000000000000000f
(XEN) [    1.804346]  00000c9864000-00000c9866fff type=4 attr=000000000000000f
(XEN) [    1.811277]  00000c9867000-00000c9874fff type=3 attr=000000000000000f
(XEN) [    1.818213]  00000c9875000-00000c9875fff type=4 attr=000000000000000f
(XEN) [    1.825145]  00000c9876000-00000c9876fff type=3 attr=000000000000000f
(XEN) [    1.832079]  00000c9877000-00000c9882fff type=4 attr=000000000000000f
(XEN) [    1.839011]  00000c9883000-00000c988bfff type=3 attr=000000000000000f
(XEN) [    1.845946]  00000c988c000-00000c988efff type=4 attr=000000000000000f
(XEN) [    1.852879]  00000c988f000-00000c9894fff type=3 attr=000000000000000f
(XEN) [    1.859811]  00000c9895000-00000c98e1fff type=4 attr=000000000000000f
(XEN) [    1.866744]  00000c98e2000-00000c990ffff type=3 attr=000000000000000f
(XEN) [    1.873680]  00000c9910000-00000c9911fff type=4 attr=000000000000000f
(XEN) [    1.880613]  00000c9912000-00000c9913fff type=3 attr=000000000000000f
(XEN) [    1.887544]  00000c9914000-00000c9915fff type=4 attr=000000000000000f
(XEN) [    1.894479]  00000c9916000-00000c992dfff type=3 attr=000000000000000f
(XEN) [    1.901411]  00000c992e000-00000c9939fff type=4 attr=000000000000000f
(XEN) [    1.908344]  00000c993a000-00000c9960fff type=3 attr=000000000000000f
(XEN) [    1.915279]  00000c9961000-00000c9964fff type=4 attr=000000000000000f
(XEN) [    1.922213]  00000c9965000-00000c996cfff type=3 attr=000000000000000f
(XEN) [    1.929144]  00000c996d000-00000c9974fff type=4 attr=000000000000000f
(XEN) [    1.936078]  00000c9975000-00000c997efff type=3 attr=000000000000000f
(XEN) [    1.943012]  00000c997f000-00000c9988fff type=4 attr=000000000000000f
(XEN) [    1.949947]  00000c9989000-00000c99adfff type=3 attr=000000000000000f
(XEN) [    1.956879]  00000c99ae000-00000c99b7fff type=4 attr=000000000000000f
(XEN) [    1.963811]  00000c99b8000-00000c99b8fff type=3 attr=000000000000000f
(XEN) [    1.970746]  00000c99b9000-00000c99b9fff type=4 attr=000000000000000f
(XEN) [    1.977680]  00000c99ba000-00000c99c1fff type=3 attr=000000000000000f
(XEN) [    1.984612]  00000c99c2000-00000c99c4fff type=4 attr=000000000000000f
(XEN) [    1.991546]  00000c99c5000-00000c99c6fff type=3 attr=000000000000000f
(XEN) [    1.998478]  00000c99c7000-00000c99c7fff type=4 attr=000000000000000f
(XEN) [    2.005412]  00000c99c8000-00000c99d5fff type=3 attr=000000000000000f
(XEN) [    2.012345]  00000c99d6000-00000c99d9fff type=4 attr=000000000000000f
(XEN) [    2.019278]  00000c99da000-00000c99dffff type=3 attr=000000000000000f
(XEN) [    2.026212]  00000c99e0000-00000c99e5fff type=4 attr=000000000000000f
(XEN) [    2.033147]  00000c99e6000-00000c99e6fff type=3 attr=000000000000000f
(XEN) [    2.040079]  00000c99e7000-00000c99e8fff type=4 attr=000000000000000f
(XEN) [    2.047012]  00000c99e9000-00000c99fdfff type=3 attr=000000000000000f
(XEN) [    2.053945]  00000c99fe000-00000c99fefff type=4 attr=000000000000000f
(XEN) [    2.060880]  00000c99ff000-00000c9a01fff type=3 attr=000000000000000f
(XEN) [    2.067812]  00000c9a02000-00000c9a02fff type=4 attr=000000000000000f
(XEN) [    2.074747]  00000c9a03000-00000c9a12fff type=3 attr=000000000000000f
(XEN) [    2.081678]  00000c9a13000-00000c9a15fff type=4 attr=000000000000000f
(XEN) [    2.088611]  00000c9a16000-00000c9a17fff type=3 attr=000000000000000f
(XEN) [    2.095547]  00000c9a18000-00000c9a19fff type=4 attr=000000000000000f
(XEN) [    2.102479]  00000c9a1a000-00000c9a2ffff type=3 attr=000000000000000f
(XEN) [    2.109411]  00000c9a30000-00000c9a30fff type=4 attr=000000000000000f
(XEN) [    2.116347]  00000c9a31000-00000c9a31fff type=3 attr=000000000000000f
(XEN) [    2.123278]  00000c9a32000-00000c9a32fff type=4 attr=000000000000000f
(XEN) [    2.130213]  00000c9a33000-00000c9a33fff type=3 attr=000000000000000f
(XEN) [    2.137147]  00000c9a34000-00000c9a34fff type=4 attr=000000000000000f
(XEN) [    2.144078]  00000c9a35000-00000c9a35fff type=3 attr=000000000000000f
(XEN) [    2.151012]  00000c9a36000-00000c9a36fff type=4 attr=000000000000000f
(XEN) [    2.157946]  00000c9a37000-00000c9a37fff type=3 attr=000000000000000f
(XEN) [    2.164881]  00000c9a38000-00000c9a38fff type=4 attr=000000000000000f
(XEN) [    2.171812]  00000c9a39000-00000c9a4bfff type=3 attr=000000000000000f
(XEN) [    2.178746]  00000c9a4c000-00000c9a4dfff type=4 attr=000000000000000f
(XEN) [    2.185680]  00000c9a4e000-00000c9a52fff type=3 attr=000000000000000f
(XEN) [    2.192612]  00000c9a53000-00000c9a57fff type=4 attr=000000000000000f
(XEN) [    2.199547]  00000c9a58000-00000c9a5cfff type=3 attr=000000000000000f
(XEN) [    2.206479]  00000c9a5d000-00000c9a5ffff type=4 attr=000000000000000f
(XEN) [    2.213412]  00000c9a60000-00000c9a66fff type=3 attr=000000000000000f
(XEN) [    2.220347]  00000c9a67000-00000c9a69fff type=4 attr=000000000000000f
(XEN) [    2.227280]  00000c9a6a000-00000c9a73fff type=3 attr=000000000000000f
(XEN) [    2.234214]  00000c9a74000-00000c9a8afff type=4 attr=000000000000000f
(XEN) [    2.241146]  00000c9a8b000-00000c9a9cfff type=3 attr=000000000000000f
(XEN) [    2.248079]  00000c9a9d000-00000c9a9dfff type=4 attr=000000000000000f
(XEN) [    2.255015]  00000c9a9e000-00000c9a9ffff type=3 attr=000000000000000f
(XEN) [    2.261946]  00000c9aa0000-00000c9aa7fff type=4 attr=000000000000000f
(XEN) [    2.268880]  00000c9aa8000-00000c9aa8fff type=3 attr=000000000000000f
(XEN) [    2.275815]  00000c9aa9000-00000c9aa9fff type=4 attr=000000000000000f
(XEN) [    2.282746]  00000c9aaa000-00000c9aaafff type=3 attr=000000000000000f
(XEN) [    2.289681]  00000c9aab000-00000c9aacfff type=4 attr=000000000000000f
(XEN) [    2.296615]  00000c9aad000-00000c9ab1fff type=3 attr=000000000000000f
(XEN) [    2.303546]  00000c9ab2000-00000c9ab3fff type=4 attr=000000000000000f
(XEN) [    2.310481]  00000c9ab4000-00000c9ab7fff type=3 attr=000000000000000f
(XEN) [    2.317415]  00000c9ab8000-00000c9ab8fff type=4 attr=000000000000000f
(XEN) [    2.324346]  00000c9ab9000-00000c9abefff type=3 attr=000000000000000f
(XEN) [    2.331279]  00000c9abf000-00000c9abffff type=4 attr=000000000000000f
(XEN) [    2.338214]  00000c9ac0000-00000c9acbfff type=3 attr=000000000000000f
(XEN) [    2.345147]  00000c9acc000-00000c9accfff type=4 attr=000000000000000f
(XEN) [    2.352080]  00000c9acd000-00000c9acefff type=3 attr=000000000000000f
(XEN) [    2.359013]  00000c9acf000-00000c9ad0fff type=4 attr=000000000000000f
(XEN) [    2.365948]  00000c9ad1000-00000c9ad1fff type=3 attr=000000000000000f
(XEN) [    2.372879]  00000c9ad2000-00000c9ad2fff type=4 attr=000000000000000f
(XEN) [    2.379814]  00000c9ad3000-00000c9aeefff type=3 attr=000000000000000f
(XEN) [    2.386749]  00000c9aef000-00000c9af1fff type=4 attr=000000000000000f
(XEN) [    2.393681]  00000c9af2000-00000c9af3fff type=3 attr=000000000000000f
(XEN) [    2.400615]  00000c9af4000-00000c9af7fff type=4 attr=000000000000000f
(XEN) [    2.407546]  00000c9af8000-00000c9afbfff type=3 attr=000000000000000f
(XEN) [    2.414480]  00000c9afc000-00000c9afdfff type=4 attr=000000000000000f
(XEN) [    2.421413]  00000c9afe000-00000c9b07fff type=3 attr=000000000000000f
(XEN) [    2.428347]  00000c9b08000-00000c9f07fff type=4 attr=000000000000000f
(XEN) [    2.435281]  00000c9f08000-00000c9f27fff type=3 attr=000000000000000f
(XEN) [    2.442214]  00000c9f28000-00000c9f29fff type=4 attr=000000000000000f
(XEN) [    2.449148]  00000c9f2a000-00000c9f2bfff type=3 attr=000000000000000f
(XEN) [    2.456080]  00000c9f2c000-00000c9f2dfff type=4 attr=000000000000000f
(XEN) [    2.463015]  00000c9f2e000-00000c9f2efff type=3 attr=000000000000000f
(XEN) [    2.469947]  00000c9f2f000-00000c9f2ffff type=4 attr=000000000000000f
(XEN) [    2.476882]  00000c9f30000-00000c9f30fff type=3 attr=000000000000000f
(XEN) [    2.483813]  00000c9f31000-00000c9f31fff type=4 attr=000000000000000f
(XEN) [    2.490749]  00000c9f32000-00000c9f36fff type=3 attr=000000000000000f
(XEN) [    2.497680]  00000c9f37000-00000c9f3afff type=4 attr=000000000000000f
(XEN) [    2.504615]  00000c9f3b000-00000c9f3bfff type=3 attr=000000000000000f
(XEN) [    2.511548]  00000c9f3c000-00000c9f3cfff type=4 attr=000000000000000f
(XEN) [    2.518483]  00000c9f3d000-00000c9f3dfff type=3 attr=000000000000000f
(XEN) [    2.525414]  00000c9f3e000-00000ca411fff type=4 attr=000000000000000f
(XEN) [    2.532348]  00000ca412000-00000ca413fff type=3 attr=000000000000000f
(XEN) [    2.539283]  00000ca414000-00000ca415fff type=4 attr=000000000000000f
(XEN) [    2.546214]  00000ca416000-00000ca41cfff type=3 attr=000000000000000f
(XEN) [    2.553147]  00000ca41d000-00000ca41dfff type=4 attr=000000000000000f
(XEN) [    2.560082]  00000ca41e000-00000ca41efff type=3 attr=000000000000000f
(XEN) [    2.567017]  00000ca41f000-00000ca488fff type=4 attr=000000000000000f
(XEN) [    2.573949]  00000ca489000-00000ca489fff type=3 attr=000000000000000f
(XEN) [    2.580881]  00000ca48a000-00000ca48bfff type=4 attr=000000000000000f
(XEN) [    2.587816]  00000ca48c000-00000ca48cfff type=3 attr=000000000000000f
(XEN) [    2.594747]  00000ca48d000-00000ca491fff type=4 attr=000000000000000f
(XEN) [    2.601683]  00000ca492000-00000ca494fff type=3 attr=000000000000000f
(XEN) [    2.608616]  00000ca495000-00000cabc8fff type=4 attr=000000000000000f
(XEN) [    2.615548]  00000cabc9000-00000cc14cfff type=0 attr=000000000000000f
(XEN) [    2.622483]  00000cc14d000-00000cc195fff type=9 attr=000000000000000f
(XEN) [    2.629414]  00000cc196000-00000cc388fff type=10 attr=000000000000000f
(XEN) [    2.636434]  00000cc389000-00000cc389fff type=0 attr=000000000000000f
(XEN) [    2.643367]  00000cc38a000-00000cc709fff type=10 attr=000000000000000f
(XEN) [    2.650389]  00000cc70a000-00000cd179fff type=6 attr=800000000000000f
(XEN) [    2.657322]  00000cd17a000-00000cd1fefff type=5 attr=800000000000000f
(XEN) [    2.664256]  00000cd1ff000-00000cd7fffff type=4 attr=000000000000000f
(XEN) [    2.671189]  00000cd800000-00000cd8e9fff type=7 attr=000000000000000f
(XEN) [    2.678123]  00000cd8ea000-00000cd9e9fff type=4 attr=000000000000000f
(XEN) [    2.685056]  00000cd9ea000-00000cda05fff type=3 attr=000000000000000f
(XEN) [    2.691990]  00000cda06000-00000cda31fff type=4 attr=000000000000000f
(XEN) [    2.698923]  00000cda32000-00000cda44fff type=3 attr=000000000000000f
(XEN) [    2.705857]  00000cda45000-00000cdf57fff type=4 attr=000000000000000f
(XEN) [    2.712789]  00000cdf58000-00000cdf5afff type=3 attr=000000000000000f
(XEN) [    2.719724]  00000cdf5b000-00000cdf6dfff type=4 attr=000000000000000f
(XEN) [    2.726654]  00000cdf6e000-00000cdf77fff type=3 attr=000000000000000f
(XEN) [    2.733590]  00000cdf78000-00000cdf91fff type=4 attr=000000000000000f
(XEN) [    2.740522]  00000cdf92000-00000cdf97fff type=3 attr=000000000000000f
(XEN) [    2.747457]  00000cdf98000-00000cdfadfff type=4 attr=000000000000000f
(XEN) [    2.754388]  00000cdfae000-00000cdfb1fff type=3 attr=000000000000000f
(XEN) [    2.761323]  00000cdfb2000-00000cdfc5fff type=4 attr=000000000000000f
(XEN) [    2.768256]  00000cdfc6000-00000cdfcafff type=3 attr=000000000000000f
(XEN) [    2.775188]  00000cdfcb000-00000cdfdffff type=4 attr=000000000000000f
(XEN) [    2.782123]  00000cdfe0000-00000cdff1fff type=3 attr=000000000000000f
(XEN) [    2.789055]  00000cdff2000-00000cdff9fff type=4 attr=000000000000000f
(XEN) [    2.795989]  00000cdffa000-00000cdffffff type=3 attr=000000000000000f
(XEN) [    2.802922]  0000100000000-000080f33ffff type=7 attr=000000000000000f
(XEN) [    2.809857]  00000000a0000-00000000fffff type=0 attr=000000000000000f
(XEN) [    2.816790]  00000ce000000-00000cfffffff type=0 attr=000000000000000f
(XEN) [    2.823722]  00000f0000000-00000f7ffffff type=11 attr=800000000000100d
(XEN) [    2.830742]  00000fd000000-00000fedfffff type=11 attr=800000000000100d
(XEN) [    2.837762]  00000fee00000-00000fee00fff type=11 attr=8000000000000001
(XEN) [    2.844783]  00000fee01000-00000ffffffff type=11 attr=800000000000100d
(XEN) [    2.851802]  000080f340000-000082fffffff type=0 attr=000000000000000f
(XEN) [    2.858737]  0000830000000-00008501fffff type=11 attr=800000000000100d
(XEN) [    2.865756] alt table ffff82d0404a2018 -> ffff82d0404b3efc
(XEN) [    2.885146] AMD-Vi: IOMMU Extended Features:
(XEN) [    2.889910] - Peripheral Page Service Request
(XEN) [    2.894763] - x2APIC
(XEN) [    2.897450] - NX bit
(XEN) [    2.900136] - Invalidate All Command
(XEN) [    2.904211] - Guest APIC
(XEN) [    2.907243] - Performance Counters
(XEN) [    2.911144] - Host Address Translation Size: 0x2
(XEN) [    2.916257] - Guest Address Translation Size: 0
(XEN) [    2.921284] - Guest CR3 Root Table Level: 0x1
(XEN) [    2.926138] - Maximum PASID: 0xf
(XEN) [    2.929863] - SMI Filter Register: 0x1
(XEN) [    2.934110] - SMI Filter Register Count: 0x1
(XEN) [    2.938877] - Guest Virtual APIC Modes: 0x1
(XEN) [    2.943557] - Dual PPR Log: 0x2
(XEN) [    2.947199] - Dual Event Log: 0x2
(XEN) [    2.951010] - User / Supervisor Page Protection
(XEN) [    2.956039] - Device Table Segmentation: 0x3
(XEN) [    2.960804] - PPR Log Overflow Early Warning
(XEN) [    2.965571] - PPR Automatic Response
(XEN) [    2.969643] - Memory Access Routing and Control: 0
(XEN) [    2.974930] - Block StopMark Message
(XEN) [    2.979005] - Performance Optimization
(XEN) [    2.983252] - MSI Capability MMIO Access
(XEN) [    2.987673] - Guest I/O Protection
(XEN) [    2.991573] - Enhanced PPR Handling
(XEN) [    2.995557] - Attribute Forward
(XEN) [    2.999199] - Invalidate IOTLB Type
(XEN) [    3.003184] - VM Table Size: 0
(XEN) [    3.006736] - Guest Access Bit Update Disable
(XEN) [    3.022996] AMD-Vi: Disabled HAP memory map sharing with IOMMU
(XEN) [    3.029318] AMD-Vi: IOMMU 0 Enabled.
(XEN) [    3.033393] I/O virtualisation enabled
(XEN) [    3.037638]  - Dom0 mode: Relaxed
(XEN) [    3.041454] Interrupt remapping enabled
(XEN) [    3.045786] nr_sockets: 1
(XEN) [    3.048907] Enabling APIC mode.  Using 2 I/O APICs
(XEN) [    3.054796] ENABLING IO-APIC IRQs
(XEN) [    3.058607]  -> Using new ACK method
(XEN) [    3.062708] ..TIMER: vector=0xF0 apic1=0 pin1=2 apic2=-1 pin2=-1
(XEN) [    3.219056] Wallclock source: CMOS RTC
(XEN) [    4.193470] Allocated console ring of 128 KiB.
(XEN) [    4.198410] mwait-idle: does not run on family 23 model 96
(XEN) [    4.204391] HVM: ASIDs enabled.
(XEN) [    4.208030] SVM: Supported advanced features:
(XEN) [    4.212885]  - Nested Page Tables (NPT)
(XEN) [    4.217216]  - Last Branch Record (LBR) Virtualisation
(XEN) [    4.222850]  - Next-RIP Saved on #VMEXIT
(XEN) [    4.227269]  - VMCB Clean Bits
(XEN) [    4.230823]  - TLB flush by ASID
(XEN) [    4.234552]  - DecodeAssists
(XEN) [    4.237930]  - Virtual VMLOAD/VMSAVE
(XEN) [    4.242004]  - Virtual GIF
(XEN) [    4.245212]  - Pause-Intercept Filter
(XEN) [    4.249370]  - Pause-Intercept Filter Threshold
(XEN) [    4.254397]  - TSC Rate MSR
(XEN) [    4.257692]  - MSR_SPEC_CTRL virtualisation
(XEN) [    4.262371] HVM: SVM enabled
(XEN) [    4.265750] HVM: Hardware Assisted Paging (HAP) detected
(XEN) [    4.271557] HVM: HAP page sizes: 4kB, 2MB, 1GB
(XEN) [    4.583001] Brought up 16 CPUs
(XEN) [    4.587614] Scheduling granularity: cpu, 1 CPU per sched-resource
(XEN) [    4.594206] Initializing null scheduler
(XEN) [    4.598537] WARNING: This is experimental software in development.
(XEN) [    4.605207] Use at your own risk.
(XEN) [    4.609025] mcheck_poll: Machine check polling timer started.
(XEN) [    4.615263] Running stub recovery selftests...
(XEN) [    4.620203] Fixup #UD[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d040395624
(XEN) [    4.628439] Fixup #GP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d040395624
(XEN) [    4.636668] Fixup #SS[0000]: ffff82d07fffe044 [ffff82d07fffe044] -> ffff82d040395624
(XEN) [    4.644902] Fixup #BP[0000]: ffff82d07fffe045 [ffff82d07fffe045] -> ffff82d040395624
(XEN) [    4.673064] NX (Execute Disable) protection active
(XEN) [    4.678348] d0 has maximum 3328 PIRQs
(XEN) [    4.682627] *** Building a PVH Dom0 ***
(XEN) [    4.690522] d0: identity mappings for IOMMU:
(XEN) [    4.695287]  [00000000a0, 00000000ff] RW
(XEN) [    4.699710]  [0000009bff, 0000009fff] RW
(XEN) [    4.704124]  [00000cabc9, 00000cc14c] RW
(XEN) [    4.708748]  [00000cc389, 00000cc389] RW
(XEN) [    4.713168]  [00000cc70a, 00000cd1fe] RW
(XEN) [    4.718117]  [00000ce000, 00000cffff] RW
(XEN) [    4.722538]  [00000fd000, 00000fd2ff] RW
(XEN) [    4.727036]  [00000fd304, 00000febff] RW
(XEN) [    4.731534]  [00000fec02, 00000fedff] RW
(XEN) [    4.736261]  [00000fee01, 00000fffff] RW
(XEN) [    4.740988]  [000080f340, 00008501ff] RW
(XEN) [    4.746374] arch/x86/pci.c:109:d[IDLE]v0 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [    4.755908] arch/x86/pci.c:109:d[IDLE]v0 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [    4.765447] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [    4.774980] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [    4.784510] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [    4.794045] arch/x86/pci.c:109:d[IDLE]v0 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [    4.803578] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [    4.813650] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [    4.823186] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [    4.832722] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [    4.842251] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [    4.851784] arch/x86/pci.c:109:d[IDLE]v0 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [    4.861321] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [    4.870853] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [    4.880386] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [    4.889918] arch/x86/pci.c:109:d[IDLE]v0 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [    5.012381] Dom0 memory allocation stats:
(XEN) [    5.016885] order  0 allocations: 4
(XEN) [    5.020871] order  1 allocations: 2
(XEN) [    5.024861] order  2 allocations: 2
(XEN) [    5.028845] order  3 allocations: 2
(XEN) [    5.032833] order  4 allocations: 2
(XEN) [    5.036818] order  5 allocations: 4
(XEN) [    5.040807] order  6 allocations: 3
(XEN) [    5.044795] order  7 allocations: 5
(XEN) [    5.048781] order  8 allocations: 4
(XEN) [    5.052764] order  9 allocations: 6
(XEN) [    5.056757] order 10 allocations: 3
(XEN) [    5.060740] order 11 allocations: 6
(XEN) [    5.064728] order 12 allocations: 3
(XEN) [    5.068714] order 13 allocations: 2
(XEN) [    5.072699] order 14 allocations: 3
(XEN) [    5.076688] order 15 allocations: 1
(XEN) [    5.080672] order 16 allocations: 2
(XEN) [    5.084662] order 17 allocations: 2
(XEN) [    5.088647] order 18 allocations: 2
(XEN) [    5.398922] ELF: phdr: paddr=0x1000000 memsz=0x1b1a00c
(XEN) [    5.404558] ELF: phdr: paddr=0x2c00000 memsz=0x892000
(XEN) [    5.410103] ELF: phdr: paddr=0x3492000 memsz=0x2fed8
(XEN) [    5.415564] ELF: phdr: paddr=0x34c2000 memsz=0x56e000
(XEN) [    5.421108] ELF: memory: 0x1000000 -> 0x3a30000
(XEN) [    5.426138] ELF: note: PHYS32_ENTRY = 0x1000000
(XEN) [    5.431167] ELF: note: GUEST_OS = "linux"
(XEN) [    5.435670] ELF: note: GUEST_VERSION = "2.6"
(XEN) [    5.440436] ELF: note: XEN_VERSION = "xen-3.0"
(XEN) [    5.445375] ELF: note: VIRT_BASE = 0xffffffff80000000
(XEN) [    5.450923] ELF: note: INIT_P2M = 0x8000000000
(XEN) [    5.455866] ELF: note: ENTRY = 0xffffffff834d4630
(XEN) [    5.461061] ELF: note: FEATURES = "!writable_page_tables"
(XEN) [    5.466958] ELF: note: PAE_MODE = "yes"
(XEN) [    5.471294] ELF: note: L1_MFN_VALID
(XEN) [    5.475278] ELF: note: MOD_START_PFN = 0x1
(XEN) [    5.479869] ELF: note: PADDR_OFFSET = 0
(XEN) [    5.484202] ELF: note: HYPERCALL_PAGE = 0xffffffff82034000
(XEN) [    5.490182] ELF: note: SUPPORTED_FEATURES = 0x8801
(XEN) [    5.495469] ELF: note: LOADER = "generic"
(XEN) [    5.499978] ELF: note: SUSPEND_CANCEL = 0x1
(XEN) [    5.504660] ELF: Found PVH image
(XEN) [    5.508382] ELF: addresses:
(XEN) [    5.511676]     virt_base        = 0x0
(XEN) [    5.515923]     elf_paddr_offset = 0x0
(XEN) [    5.520169]     virt_offset      = 0x0
(XEN) [    5.524416]     virt_kstart      = 0x1000000
(XEN) [    5.529186]     virt_kend        = 0x3a30000
(XEN) [    5.533948]     virt_entry       = 0x1000000
(XEN) [    5.538716]     p2m_base         = 0x8000000000
(XEN) [    5.543745] ELF: phdr 0 at 0x1000000 -> 0x2b1a00c
(XEN) [    5.555925] ELF: phdr 1 at 0x2c00000 -> 0x3492000
(XEN) [    5.563226] ELF: phdr 2 at 0x3492000 -> 0x34c1ed8
(XEN) [    5.568425] ELF: phdr 3 at 0x34c2000 -> 0x3789000
(XEN) [    5.629245] Dom0 memory map:
(XEN) [    5.632626]  [0000000000000000, 000000000009ffff] (usable)
(XEN) [    5.638607]  [00000000000a0000, 00000000000fffff] (reserved)
(XEN) [    5.644757]  [0000000000100000, 0000000009bfefff] (usable)
(XEN) [    5.650737]  [0000000009bff000, 0000000009ffffff] (reserved)
(XEN) [    5.656894]  [000000000a000000, 000000000a1fffff] (usable)
(XEN) [    5.662876]  [000000000a200000, 000000000a20cfff] (ACPI NVS)
(XEN) [    5.669029]  [000000000a20d000, 00000000cabc8fff] (usable)
(XEN) [    5.675004]  [00000000cabc9000, 00000000cc14cfff] (reserved)
(XEN) [    5.681157]  [00000000cc14d000, 00000000cc195fff] (ACPI data)
(XEN) [    5.687397]  [00000000cc196000, 00000000cc388fff] (ACPI NVS)
(XEN) [    5.693550]  [00000000cc389000, 00000000cc389fff] (reserved)
(XEN) [    5.699707]  [00000000cc38a000, 00000000cc709fff] (ACPI NVS)
(XEN) [    5.705859]  [00000000cc70a000, 00000000cd1fefff] (reserved)
(XEN) [    5.712014]  [00000000cd1ff000, 00000000cdfffea7] (usable)
(XEN) [    5.717992]  [00000000cdfffea8, 00000000cdffff3f] (ACPI data)
(XEN) [    5.724236]  [00000000ce000000, 00000000cfffffff] (reserved)
(XEN) [    5.730387]  [00000000f0000000, 00000000f7ffffff] (reserved)
(XEN) [    5.736537]  [00000000fd000000, 00000000ffffffff] (reserved)
(XEN) [    5.742695]  [0000000100000000, 0000000134aa3fff] (usable)
(XEN) [    5.748670]  [0000000134aa4000, 000000080f33ffff] (unusable)
(XEN) [    5.754830]  [000000080f340000, 00000008501fffff] (reserved)
(XEN) [    5.760981] Initial low memory virq threshold set at 0x4000 pages.
(XEN) [    5.767654] Scrubbing Free RAM in background
(XEN) [    5.772423] Std. Loglevel: All
(XEN) [    5.775974] Guest Loglevel: All
(XEN) [    5.779616] ***************************************************
(XEN) [    5.786027] WARNING: CONSOLE OUTPUT IS SYNCHRONOUS
(XEN) [    5.791315] This option is intended to aid debugging of Xen by ensuring
(XEN) [    5.798423] that all output is synchronously delivered on the serial line.
(XEN) [    5.805790] However it can introduce SIGNIFICANT latencies and affect
(XEN) [    5.812718] timekeeping. It is NOT recommended for production use!
(XEN) [    5.819392] ***************************************************
(XEN) [    5.825810] 3... 2... 1...
(XEN) [    8.828524] *** Serial input to DOM0 (type 'CTRL-a' three times to switch input)
(XEN) [    8.836846] common/sched/null.c:357: 0 <-- d0v0
(XEN) [    8.842335] Freed 636kB 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=0xc7236518 unusable) ESRT=0xcc15b018
[    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.051860] tsc: Fast TSC calibration failed
[    0.055961] tsc: Detected 2894.548 MHz processor
[    0.060693] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.067229] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.072781] last_pfn = 0x80f340 max_arch_pfn = 0x400000000
[    0.078292] MTRR map: 4 entries (3 fixed + 1 variable; max 20), built from 9 variable MTRRs
[    0.086555] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.094011] CPU MTRRs all blank - virtualized system.
[    0.098900] last_pfn = 0xcdfff max_arch_pfn = 0x400000000
[    0.107948] esrt: Reserving ESRT space from 0x00000000cc15b018 to 0x00000000cc15b050.
[    0.115607] Using GB pages for direct mapping
[    0.120766] Secure boot disabled
[    0.123825] RAMDISK: [mem 0x0a20d000-0x16d05fff]
[    0.128958] ACPI: Early table checksum verification disabled
[    0.134446] ACPI: RSDP 0x00000000CDFFFEA8 000024 (v02 ALASKA)
[    0.140162] ACPI: XSDT 0x00000000CDFFFECC 00009C (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.148663] ACPI: APIC 0x00000000CDFFFF68 000098 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.157157] ACPI: FACP 0x00000000CC18C000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.165686] ACPI: DSDT 0x00000000CC183000 00876D (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.174143] ACPI: FACS 0x00000000CC6C0000 000040
[    0.178735] ACPI: SSDT 0x00000000CC18E000 00723C (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.187224] ACPI: MCFG 0x00000000CC181000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.195718] ACPI: SSDT 0x00000000CC17F000 000228 (v01 AMD    STD3     00000001 INTL 20120913)
[    0.204212] ACPI: VFCT 0x00000000CC171000 00D684 (v01 ALASKA A M I    00000001 AMD  31504F47)
[    0.212707] ACPI: SSDT 0x00000000CC16C000 0039F4 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.221201] ACPI: SSDT 0x00000000CC169000 000139 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.229692] ACPI: SSDT 0x00000000CC168000 000227 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.238187] ACPI: SSDT 0x00000000CC167000 000D37 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.246682] ACPI: SSDT 0x00000000CC165000 0010A5 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.255172] ACPI: SSDT 0x00000000CC161000 0030C8 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.263664] ACPI: SSDT 0x00000000CC15E000 00007D (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.272162] ACPI: SSDT 0x00000000CC15D000 000517 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.280651] ACPI: FPDT 0x00000000CC15C000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.289148] ACPI: Reserving APIC table memory at [mem 0xcdffff68-0xcdffffff]
[    0.296165] ACPI: Reserving FACP table memory at [mem 0xcc18c000-0xcc18c113]
[    0.303182] ACPI: Reserving DSDT table memory at [mem 0xcc183000-0xcc18b76c]
[    0.310202] ACPI: Reserving FACS table memory at [mem 0xcc6c0000-0xcc6c003f]
[    0.317222] ACPI: Reserving SSDT table memory at [mem 0xcc18e000-0xcc19523b]
[    0.324247] ACPI: Reserving MCFG table memory at [mem 0xcc181000-0xcc18103b]
[    0.331262] ACPI: Reserving SSDT table memory at [mem 0xcc17f000-0xcc17f227]
[    0.338286] ACPI: Reserving VFCT table memory at [mem 0xcc171000-0xcc17e683]
[    0.345305] ACPI: Reserving SSDT table memory at [mem 0xcc16c000-0xcc16f9f3]
[    0.352322] ACPI: Reserving SSDT table memory at [mem 0xcc169000-0xcc169138]
[    0.359344] ACPI: Reserving SSDT table memory at [mem 0xcc168000-0xcc168226]
[    0.366366] ACPI: Reserving SSDT table memory at [mem 0xcc167000-0xcc167d36]
[    0.373386] ACPI: Reserving SSDT table memory at [mem 0xcc165000-0xcc1660a4]
[    0.380408] ACPI: Reserving SSDT table memory at [mem 0xcc161000-0xcc1640c7]
[    0.387428] ACPI: Reserving SSDT table memory at [mem 0xcc15e000-0xcc15e07c]
[    0.394446] ACPI: Reserving SSDT table memory at [mem 0xcc15d000-0xcc15d516]
[    0.401466] ACPI: Reserving FPDT table memory at [mem 0xcc15c000-0xcc15c043]
[    0.408595] No NUMA configuration found
[    0.412296] Faking a node at [mem 0x0000000000000000-0x000000080f33ffff]
[    0.418974] NODE_DATA(0) allocated [mem 0x134a9f000-0x134aa2fff]
[    0.424981] Zone ranges:
[    0.427466]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.433619]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.439770]   Normal   [mem 0x0000000100000000-0x000000080f33ffff]
[    0.445928] Movable zone start for each node
[    0.450174] Early memory node ranges
[    0.453728]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.459964]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.466208]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.472443]   node   0: [mem 0x000000000a20d000-0x00000000cabc8fff]
[    0.478686]   node   0: [mem 0x00000000cd1ff000-0x00000000cdffefff]
[    0.484923]   node   0: [mem 0x0000000100000000-0x000000080f33ffff]
[    0.491165] Initmem setup node 0 [mem 0x0000000000001000-0x000000080f33ffff]
[    0.498191] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.504005] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.510011] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.520668] On node 0, zone DMA32: 13 pages in unavailable ranges
[    0.526708] On node 0, zone DMA32: 9782 pages in unavailable ranges
[    0.576089] On node 0, zone Normal: 8193 pages in unavailable ranges
[    0.582308] On node 0, zone Normal: 3264 pages in unavailable ranges
[    0.589050] ACPI: PM-Timer IO Port: 0x808
[    0.592944] IOAPIC[0]: apic_id 17, version 17, address 0xfec00000, GSI 0-23
[    0.599863] IOAPIC[1]: apic_id 18, version 17, address 0xfec01000, GSI 24-55
[    0.606842] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.613169] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.619671] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.626092] CPU topo: Max. logical packages:   1
[    0.630679] CPU topo: Max. logical dies:       1
[    0.635269] CPU topo: Max. dies per package:   1
[    0.639871] CPU topo: Max. threads per core:   1
[    0.644461] CPU topo: Num. cores per package:     4
[    0.649314] CPU topo: Num. threads per package:   4
[    0.654167] CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
[    0.660243] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.667775] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.675315] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    0.682849] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20cfff]
[    0.690392] PM: hibernation: Registered nosave memory: [mem 0xcabc9000-0xcc14cfff]
[    0.697932] PM: hibernation: Registered nosave memory: [mem 0xcc14d000-0xcc195fff]
[    0.705472] PM: hibernation: Registered nosave memory: [mem 0xcc196000-0xcc388fff]
[    0.713012] PM: hibernation: Registered nosave memory: [mem 0xcc389000-0xcc389fff]
[    0.720549] PM: hibernation: Registered nosave memory: [mem 0xcc38a000-0xcc709fff]
[    0.728094] PM: hibernation: Registered nosave memory: [mem 0xcc70a000-0xcd1fefff]
[    0.735635] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    0.743174] PM: hibernation: Registered nosave memory: [mem 0xcdfff000-0xcdffffff]
[    0.750711] PM: hibernation: Registered nosave memory: [mem 0xce000000-0xcfffffff]
[    0.758249] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
[    0.765793] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.773666] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
[    0.781060] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.788602] [mem 0xd0000000-0xefffffff] available for PCI devices
[    0.794672] Booting kernel on Xen PVH
[    0.798303] Xen version: 4.21-unstable
[    0.802034] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.817250] setup_percpu: NR_CPUS:64 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.824789] percpu: Embedded 57 pages/cpu s196312 r8192 d28968 u524288
[    0.831147] pcpu-alloc: s196312 r8192 d28968 u524288 alloc=1*2097152
[    0.837469] pcpu-alloc: [0] 0 1 2 3
[    0.841045] Kernel command line: console=hvc0 root=/dev/ram0 earlyprintk=xen debug rdinit=/bin/sh
[    0.849915] random: crng init done
[    0.853566] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.861496] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.869096] Fallback order for Node 0: 0
[    0.869099] Built 1 zonelists, mobility grouping on.  Total pages: 8235162
[    0.879896] Policy zone: Normal
[    0.883020] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.889782] software IO TLB: area num 4.
[    0.979660] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Poking KASLR using RDRAND RDTSC...
[    0.990186] Dynamic Preempt: voluntary
[    0.993789] rcu: Preemptible hierarchical RCU implementation.
[    0.999487] rcu: 	RCU event tracing is enabled.
[    1.003995] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    1.010580] 	Trampoline variant of Tasks RCU enabled.
[    1.015603] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    1.023233] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.029911] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
[    1.038079] Using NULL legacy PIC
[    1.041222] NR_IRQS: 4352, nr_irqs: 1000, preallocated irqs: 0
[    1.047052] xen:events: Using FIFO-based ABI
(XEN) [   10.129783] d0v0: upcall vector f3
[    1.055187] xen:events: Xen HVM callback vector for event delivery is enabled
[    1.062313] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    1.069504] Console: colour dummy device 80x25
[    1.073776] printk: legacy console [tty0] enabled
[    1.078712] printk: legacy console [hvc0] enabled

[    1.078712] printk: legacy console [hvc0] enabled
[    1.088014] printk: legacy bootconsole [xenboot0] disabled

[    1.088014] printk: legacy bootconsole [xenboot0] disabled
[    1.099029] ACPI: Core revision 20240322

[    1.121673] Failed to register legacy timer interrupt

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

[    1.132449] x2apic enabled

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

[    1.141571] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29b924c528b, max_idle_ns: 440795331454 ns

[    1.152063] Calibrating delay loop (skipped), value calculated using timer frequency.. 5789.09 BogoMIPS (lpj=2894548)

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

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

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

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

[    1.153061] Spectre V2 : Mitigation: Retpolines

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

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

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

[    1.153061] RETBleed: Mitigation: untrained return thunk

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

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

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

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

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

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

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

[    1.153061] Freeing SMP alternatives memory: 52K

[    1.153061] pid_max: default: 32768 minimum: 301

[    1.153061] LSM: initializing lsm=capability,selinux

[    1.153061] SELinux:  Initializing.

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

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

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

[    1.153061] Xen: using vcpuop timer interface

[    1.153061] installing Xen timer for CPU 0

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

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

[    1.154082] signal: max sigframe size: 1776

[    1.155083] rcu: Hierarchical SRCU implementation.

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

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

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

[    1.161120] installing Xen timer for CPU 1

[    1.162130] smpboot: x86: Booting SMP configuration:

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

[    1.164556] installing Xen timer for CPU 2

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

[    1.167188] installing Xen timer for CPU 3

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

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

[    1.175069] smpboot: Total of 4 processors activated (23156.38 BogoMIPS)

[    1.177111] Memory: 3349292K/32940648K available (20480K kernel code, 2926K rwdata, 7276K rodata, 2980K init, 2524K bss, 29587400K reserved, 0K cma-reserved)

[    1.178814] devtmpfs: initialized

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

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

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

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

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

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

[    1.187134] PM: RTC time: 06:35:03, date: 2025-05-16

[    1.188244] NET: Registered PF_NETLINK/PF_ROUTE protocol family

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

[    1.190085] Grant table initialized

[    1.191140] audit: initializing netlink subsys (disabled)

[    1.192079] audit: type=2000 audit(1747377304.236:1): state=initialized audit_enabled=0 res=1

[    1.192118] thermal_sys: Registered thermal governor 'step_wise'

[    1.200071] thermal_sys: Registered thermal governor 'user_space'

[    1.206078] cpuidle: using governor menu

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

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

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

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

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

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

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

[    1.266122] ACPI: Added _OSI(Module Device)

[    1.270068] ACPI: Added _OSI(Processor Device)

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

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

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

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

[    1.318819] ACPI: Interpreter enabled

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

[    1.327069] ACPI: Using IOAPIC for interrupt routing

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

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

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

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

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

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

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

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

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

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

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

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

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

[    1.421362] PCI host bridge to bus 0000:00

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

(XEN) [   11.393732] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.402831] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.411936] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.421035] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
[    1.967066] pci 0000:02:00.0: BAR 0 [mem 0xfea00000-0xfea03fff 64bit]

(XEN) [   11.436632] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.445734] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.454835] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.463931] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.473031] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.482134] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.491237] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.500332] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.509437] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.518534] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.527631] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.536737] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.545832] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.554935] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.564031] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.573132] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.582237] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.591335] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.600437] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.609532] arch/x86/pci.c:109:d0v1 0000:02:00.0: BAR at [fea00, fea03] not in memory map hole
(XEN) [   11.619070] PCI add device 0000:02:00.0
[    2.076080] pci 0000:00:02.3: PCI bridge to [bus 02]

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

(XEN) [   11.635710] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.644814] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.653912] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.663012] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.672114] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.681210] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.690309] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.699415] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.124067] pci 0000:03:00.0: BAR 0 [io  0xf000-0xf0ff]

(XEN) [   11.713799] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.722900] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.732002] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.741098] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.750197] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.759298] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.768400] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.777497] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.786597] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.795697] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.804799] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.813900] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.822997] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.832097] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.841202] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.850297] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.198067] pci 0000:03:00.0: BAR 2 [mem 0xfe900000-0xfe90ffff 64bit]

(XEN) [   11.865897] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.874997] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.884100] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.893198] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.902303] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.911398] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.920503] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.929600] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.242067] pci 0000:03:00.0: BAR 4 [mem 0xfe910000-0xfe913fff 64bit]

(XEN) [   11.945203] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.954298] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.963398] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.972500] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.981601] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   11.990703] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
(XEN) [   11.999802] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe900, fe90f] not in memory map hole
(XEN) [   12.008901] arch/x86/pci.c:109:d0v1 0000:03:00.0: BAR at [fe910, fe913] not in memory map hole
[    2.285307] pci 0000:03:00.0: supports D1 D2

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

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

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

(XEN) [   12.046658] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.058509] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.067607] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.077122] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.336067] pci 0000:04:00.0: BAR 0 [mem 0xd0000000-0xdfffffff 64bit pref]

(XEN) [   12.093156] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.104981] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.114083] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.123584] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.365067] pci 0000:04:00.0: BAR 2 [mem 0xe0000000-0xe01fffff 64bit pref]

(XEN) [   12.139623] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.151454] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.160549] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.170060] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.394066] pci 0000:04:00.0: BAR 4 [io  0xe000-0xe0ff]

(XEN) [   12.184448] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.196293] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.205395] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.214904] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.421066] pci 0000:04:00.0: BAR 5 [mem 0xfe700000-0xfe77ffff]

(XEN) [   12.229987] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.241799] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.250902] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
(XEN) [   12.260409] arch/x86/pci.c:109:d0v1 0000:04:00.0: BAR at [fe700, fe77f] not in memory map hole
[    2.449076] pci 0000:04:00.0: enabling Extended Tags

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

[    2.460163] 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) [   12.296666] PCI add device 0000:04:00.0
[    2.480098] pci 0000:04:00.1: [1002:1637] type 00 class 0x040300 PCIe Legacy Endpoint

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

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

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

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

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

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

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

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

(XEN) [   12.366585] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.375684] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.384785] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.393885] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
[    2.564067] pci 0000:04:00.3: BAR 0 [mem 0xfe500000-0xfe5fffff 64bit]

(XEN) [   12.409486] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.418582] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.427686] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.436785] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.445885] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.454982] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.464084] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.473188] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.482288] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.491386] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.500485] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.509584] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.518688] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.527783] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.536888] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.545988] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.555084] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.564183] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.573286] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
(XEN) [   12.582383] arch/x86/pci.c:109:d0v1 0000:04:00.3: BAR at [fe500, fe5ff] not in memory map hole
[    2.666076] pci 0000:04:00.3: enabling Extended Tags

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

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

(XEN) [   12.614280] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.623380] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.632476] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.641580] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
[    2.708068] pci 0000:04:00.4: BAR 0 [mem 0xfe400000-0xfe4fffff 64bit]

(XEN) [   12.657176] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.666282] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.675379] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.684480] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.693579] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.702677] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.711779] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.720882] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.729980] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.739077] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.748180] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.757277] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.766383] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.775480] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.784577] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.793680] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.802780] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.811877] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.820981] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
(XEN) [   12.830080] arch/x86/pci.c:109:d0v1 0000:04:00.4: BAR at [fe400, fe4ff] not in memory map hole
[    2.808078] pci 0000:04:00.4: enabling Extended Tags

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

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

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

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

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

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

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

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

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

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

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

(XEN) [   12.924550] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.933648] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.942748] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.951850] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.960948] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.970050] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.979145] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.988250] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   12.997350] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.006449] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.015545] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.024645] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.033751] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.042845] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.051948] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.061047] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.070148] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.079251] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.088347] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.097445] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.106545] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.115645] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.124748] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.133846] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
[    3.007067] pci 0000:05:00.0: BAR 5 [mem 0xfe801000-0xfe8017ff]

(XEN) [   13.148926] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.158028] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.167130] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
(XEN) [   13.176228] arch/x86/pci.c:109:d0v1 0000:05:00.0: BAR at [fe801, fe801] not in memory map hole
[    3.031078] pci 0000:05:00.0: enabling Extended Tags

[    3.037377] 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) [   13.206334] PCI add device 0000:05:00.0
[    3.056097] pci 0000:05:00.1: [1022:7901] type 00 class 0x010601 PCIe Endpoint

(XEN) [   13.217952] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.227048] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.236147] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.245252] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.254351] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.263450] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.272549] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.281650] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.290750] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.299851] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.308952] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.318047] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.327148] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.336250] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.345347] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.354450] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.363551] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.372650] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.381748] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.390850] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.399950] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.409048] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.418148] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.427248] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
[    3.171068] pci 0000:05:00.1: BAR 5 [mem 0xfe800000-0xfe8007ff]

(XEN) [   13.442328] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.451431] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.460530] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
(XEN) [   13.469632] arch/x86/pci.c:109:d0v3 0000:05:00.1: BAR at [fe800, fe800] not in memory map hole
[    3.195077] pci 0000:05:00.1: enabling Extended Tags

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

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

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

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

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

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

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

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

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

[    3.257028] xen:balloon: Initialising balloon driver

[    3.344107] iommu: Default domain type: Translated

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

[    3.355122] SCSI subsystem initialized

[    3.359083] libata version 3.00 loaded.

[    3.362081] ACPI: bus type USB registered

[    3.366076] usbcore: registered new interface driver usbfs

[    3.372071] usbcore: registered new interface driver hub

[    3.377072] usbcore: registered new device driver usb

[    3.382075] pps_core: LinuxPPS API ver. 1 registered

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

[    3.396070] PTP clock support registered

[    3.400111] efivars: Registered efivars operations

[    3.405085] Advanced Linux Sound Architecture Driver Initialized.

[    3.411165] NetLabel: Initializing

[    3.414067] NetLabel:  domain hash size = 128

[    3.418067] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO

[    3.424078] NetLabel:  unlabeled traffic allowed by default

[    3.429084] PCI: Using ACPI for IRQ routing

[    3.441195] PCI: pci_cache_line_size set to 64 bytes

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

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

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

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

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

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

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

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

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

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

[    3.511068] vgaarb: loaded

[    3.514162] clocksource: Switched to clocksource tsc-early

[    3.519580] VFS: Disk quotas dquot_6.6.0

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

[    3.530443] pnp: PnP ACPI init

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[    3.725032] pnp: PnP ACPI: found 6 devices

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

[    3.743442] NET: Registered PF_INET protocol family

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

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

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

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

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

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

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

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

[    3.808547] NET: Registered PF_UNIX/PF_LOCAL protocol family

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

[    3.820660] RPC: Registered udp transport module.

[    3.825426] RPC: Registered tcp transport module.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[    4.056611] Unpacking initramfs...

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

[    4.062699] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29b924c528b, max_idle_ns: 440795331454 ns

[    4.084245] clocksource: Switched to clocksource tsc

[    4.090551] Initialise system trusted keyrings

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

[    4.101665] NFS: Registering the id_resolver key type

[    4.106662] Key type id_resolver registered

[    4.110890] Key type id_legacy registered

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

[    4.129599] Key type asymmetric registered

[    4.133639] Asymmetric key parser 'x509' registered

[    4.136480] Freeing initrd memory: 207844K

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

[    4.150194] io scheduler mq-deadline registered

[    4.154779] io scheduler kyber registered

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

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

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

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

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

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

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

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

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

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

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

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

[    4.238170] ACPI: \_SB_.PLTF.P000: Found 3 idle states

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

[    4.250476] ACPI: \_SB_.PLTF.P001: Found 3 idle states

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

[    4.262787] ACPI: \_SB_.PLTF.P002: Found 3 idle states

[    4.268291] thermal LNXTHERM:00: registered as thermal_zone0

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

[    4.279069] thermal LNXTHERM:01: registered as thermal_zone1

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

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

[    4.295571] xen_mcelog: Failed to get CPU numbers

[    4.300249] xen_pciback: backend is vpci

[    4.304379] xen_acpi_processor: Uploading Xen processor PM info

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

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

[    4.325093] hpet_acpi_add: no address or irqs in _CRS

[    4.330127] Non-volatile memory driver v1.3

[    4.334320] Linux agpgart interface v0.103

[    4.338905] ACPI: bus type drm_connector registered

[    4.344988] loop: module loaded

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

[    4.348531] nvme nvme0: pci function 0000:02:00.0

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

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

[    4.365284] nvme nvme0: missing or invalid SUBNQN field.

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

[    4.385916] nvme nvme0: D3 entry latency set to 8 seconds

[    4.386192] scsi host0: ahci

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

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

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

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

[    4.426238] scsi host1: ahci

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

[    4.437682] Rounding down aligned max_sectors from 4294967295 to 4294967288

[    4.438577] nvme nvme0: 4/0/0 default/read/poll queues

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

[    4.453030]  nvme0n1: p1 p2

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

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

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

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

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

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

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

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

[    4.498826] Copyright(c) 2018 Intel Corporation.

[    4.503523] sky2: driver version 1.30

[    4.516565] modprobe (76) used greatest stack depth: 14184 bytes left

[    4.517002] r8169 0000:03:00.0 eth0: RTL8125B, dc:9c:52:27:ae:c4, XID 641, IRQ 60

[    4.530489] r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]

[    4.539073] xen_netfront: Initialising Xen virtual ethernet driver

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

[    4.550661] xhci_hcd 0000:04:00.3: new USB bus registered, assigned bus number 1

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

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

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

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

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

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

[    4.602900] usb usb1: Product: xHCI Host Controller

[    4.607833] usb usb1: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

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

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

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

[    4.649609] usb usb2: Product: xHCI Host Controller

[    4.654547] usb usb2: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

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

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

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

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

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

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

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

[    4.719980] ata1: SATA link down (SStatus 0 SControl 300)

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

[    4.736208] usb usb3: Product: xHCI Host Controller

[    4.741129] usb usb3: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

[    4.753909] ata2: SATA link down (SStatus 0 SControl 300)

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

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

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

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

[    4.788532] usb usb4: Product: xHCI Host Controller

[    4.793469] usb usb4: Manufacturer: Linux 6.11.0 xhci-hcd

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

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

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

[    4.811673] usbcore: registered new interface driver usblp

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

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

[    4.827981] i8042: Probing ports directly.

[    4.833023] i8042: No controller found

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

[    4.842273] rtc_cmos 00:01: registered as rtc0

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

[    4.852312] fail to initialize ptp_kvm

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

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

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

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

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

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

[    4.898840] usbcore: registered new interface driver usbhid

[    4.904397] usbhid: USB HID core driver

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

(XEN) [   15.207699] arch/x86/pci.c:109:d0v3 0000:04:00.1: BAR at [fe7c8, fe7cb] not in memory map hole
(XEN) [   15.216793] arch/x86/pci.c:109:d0v3 0000:04:00.1: BAR at [fe7c8, fe7cb] not in memory map hole
[    4.933787] snd_hda_intel 0000:04:00.6: enabling device (0000 -> 0002)

(XEN) [   15.232480] arch/x86/pci.c:109:d0v2 0000:04:00.6: BAR at [fe7c0, fe7c7] not in memory map hole
(XEN) [   15.241583] arch/x86/pci.c:109:d0v2 0000:04:00.6: BAR at [fe7c0, fe7c7] not in memory map hole
[    4.959088] Initializing XFRM netlink socket

[    4.963310] NET: Registered PF_INET6 protocol family

[    4.968881] Segment Routing with IPv6

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

[    4.972502] I(XEN) [   15.272636] arch/x86/hvm/vmsi.c:845:d0v2 0000:04:00.1: PIRQ 3313: unsupported address 0
n-situ OAM (IOAM(XEN) [   15.282513] arch/x86/hvm/vmsi.c:845:d0v2 0000:04:00.1: PIRQ 3313: unsupported address 0
(XEN) [   15.291011] arch/x86/hvm/vmsi.c:845:d0v2 0000:04:00.1: PIRQ 3313: unsupported address 0
) with IPv6

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

[    5.014726] NET: Registered PF_PACKET protocol family

[    5.019766] 9pnet: Installing 9P2000 support

[    5.024051] usb 3-4: new high-speed USB device number 2 using xhci_hcd

[    5.027009] Key type dns_resolver registered

[    5.035275] IPI shorthand broadcast: enabled

[    5.041010] sched_clock: Marking stable (4958007798, 82929818)->(6254624485, -1213686869)

[    5.049391] registered taskstats version 1

[    5.053422] Loading compiled-in X.509 certificates

[    5.059054] Demotion targets for Node 0: null

[    5.063443] PM:   Magic number: 9:858:569

[    5.067471] printk: legacy console [netcon0] enabled

[    5.072452] netconsole: network logging started

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

[    5.085322] modprobe (87) used greatest stack depth: 13928 bytes left

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

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

[    5.104704] ALSA device list:

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

[    5.108943]   No soundcards found.

[    5.116392] cfg80211: failed to load regulatory.db

[    5.125267] Freeing unused kernel image (initmem) memory: 2980K

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

[    5.137384] Freeing unused kernel image (rodata/data gap) memory: 916K

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

[    5.185888] Run /bin/sh as init process

[    5.189754]   with arguments:

[    5.192772]     /bin/sh

[    5.195291]   with environment:

[    5.198500]     HOME=/

[    5.200924]     TERM=linux

/bin/sh: [    5.204344] ucan't access tty; job control turned offsb 3-4: New USB

device found, id~ # ^[[6nVendor=0403, idProduct=6011, bcdDevice= 8.00

[    5.217258] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3

[    5.224449] usb 3-4: Product: VE2302

[    5.228086] usb 3-4: Manufacturer: Xilinx

[    5.232153] usb 3-4: SerialNumber: 52H2511000012

root

/bin/sh: root: not found

~ # ^[[6n[   65.440996] snd_hda_intel 0000:04:00.6: Cannot probe codecs, giving up

(XEN) [   75.739749] arch/x86/hvm/vmsi.c:845:d0v3 0000:04:00.6: PIRQ 3312: unsupported address 0
(XEN) [   75.748247] arch/x86/hvm/vmsi.c:845:d0v3 0000:04:00.6: PIRQ 3312: unsupported address 0
(XEN) [   75.756739] arch/x86/hvm/vmsi.c:845:d0v3 0000:04:00.6: PIRQ 3312: unsupported address 0


~ # ^[[6nmount -t proc proc /proc

-t sysfs sysfs [   80.737097] m/ount (91) used gsreatest stack deypth: 13336 bytess left



mount -t devtmpfs devtmpfs /dev~ # mount -t sysfs sysfs /sys

~ # mount -t devtmpfs devtmpfs /dev

~ # ^[[6nls -l /dev/nvm*

crw-------    1 root     root      248,   0 May 16 06:35 ^[[1;35m/dev/nvme0^[[m

brw-------    1 root     root      259,   0 May 16 06:35 ^[[1;35m/dev/nvme0n1^[[m

brw-------    1 root     root      259,   1 May 16 06:35 ^[[1;35m/dev/nvme0n1p1^[[m

brw-------    1 root     root      259,   2 May 16 06:35 ^[[1;35m/dev/nvme0n1p2^[[m

~ # ^[[6nmount /dev/nvme0n1p2 /mnt

[  104.787022] EXT4-fs (nvme0n1p2): recovery complete

[  104.793493] EXT4-fs (nvme0n1p2): mounted filesystem 0b5dc40a-1394-42c8-a3a3-d8e49bef803c r/w with ordered data mode. Quota mode: none.

[  104.805567] m~ # ^[[6nount (95) used greatest stack depth: 13264 bytes left

ls /mnt

^[[1;36mbin^[[m         ^[[1;34mhome^[[m        ^[[1;34mlost+found^[[m  ^[[1;34mroot^[[m        ^[[0;0mswapfile^[[m

^[[1;34mboot^[[m        ^[[1;36mlib^[[m         ^[[1;34mmedia^[[m       ^[[1;34mrun^[[m         ^[[1;34msys^[[m

^[[1;34mcdrom^[[m       ^[[1;36mlib32^[[m       ^[[1;34mmnt^[[m         ^[[1;36msbin^[[m        ^[[1;34mtmp^[[m

^[[1;34mdev^[[m         ^[[1;36mlib64^[[m       ^[[1;34mopt^[[m         ^[[1;34msnap^[[m        ^[[1;34musr^[[m

^[[1;34metc^[[m         ^[[1;36mlibx32^[[m      ^[[1;34mproc^[[m        ^[[1;34msrv^[[m         ^[[1;34mvar^[[m

~ # ^[[6n
Terminating...
Thanks for using picocom

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

* Re: [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions
  2025-05-15 10:11   ` Roger Pau Monné
  2025-05-16  0:20     ` Lira, Victor M
@ 2025-05-16  7:28     ` Jan Beulich
  1 sibling, 0 replies; 5+ messages in thread
From: Jan Beulich @ 2025-05-16  7:28 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: Stefano Stabellini, Julien Grall, Bertrand Marquis, Michal Orzel,
	Volodymyr Babchuk, Andrew Cooper, Stefano Stabellini, xen-devel

On 15.05.2025 12:11, Roger Pau Monné wrote:
> On Thu, May 15, 2025 at 11:24:59AM +0200, Jan Beulich wrote:
>> On 15.05.2025 10:41, Roger Pau Monne wrote:
>>> For once the message printed when a BAR overlaps with a non-hole regions is
>>> not accurate on x86.  While the BAR won't be mapped by the vPCI logic, it
>>> is quite likely overlapping with a reserved region in the memory map, and
>>> already mapped as by default all reserved regions are identity mapped in
>>> the p2m.  Fix the message so it just warns about the overlap, without
>>> mentioning that the BAR won't be mapped, as this has caused confusion in
>>> the past.
>>>
>>> Secondly, when an overlap is detected the BAR 'enabled' field is not set,
>>> hence other vPCI code that depends on it like vPCI MSI-X handling won't
>>> function properly, as it sees the BAR as disabled, even when memory
>>> decoding is enabled for the device and the BAR is likely mapped in the
>>> p2m.  Change the handling of BARs that overlap non-hole regions to instead
>>> remove any overlapped regions from the rangeset, so the resulting ranges to
>>> map just contain the hole regions.  This requires introducing a new
>>> pci_sanitize_bar_memory() that's implemented per-arch and sanitizes the
>>> address range to add to the p2m.
>>>
>>> For x86 pci_sanitize_bar_memory() removes any regions present in the host
>>> memory map, for ARM this is currently left as a dummy handler to not change
>>> existing behavior.
>>>
>>> Ultimately the above changes should fix the vPCI MSI-X handlers not working
>>> correctly when the BAR that contains the MSI-X table overlaps with a
>>> non-hole region, as then the 'enabled' BAR bit won't be set and the MSI-X
>>> traps won't handle accesses as expected.
>>
>> While all of this reads plausible, I may need to look at this again later,
>> to hopefully grok the connections and implications.
> 
> Thanks, it's indeed not trivial to follow.  I've attempted to write
> this as best as I could.
> 
> I think the fix is far easier to understand than the description of
> the issue and the connection with vPCI MSI-X handling.

Right - the code change itself looks technically fine to me.

>>> --- 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>
>>
>> Please don't, ...
>>
>>> @@ -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);
>>
>> ... all you need is a struct forward decl here.
> 
> Hm, but any user that makes use of pci_sanitize_bar_memory() will need
> to include rangeset.h anyway, hence it seemed better to just include
> the header rather that pollute the current one by adding forward
> declarations.

Yet any user of the header not calling this function won't need the full
definition of the struct, nor (perhaps) any other of the contents of
xen/rangeset.h.

Jan


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

end of thread, other threads:[~2025-05-16  7:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-15  8:41 [PATCH] x86/vpci: fix handling of BAR overlaps with non-hole regions Roger Pau Monne
2025-05-15  9:24 ` Jan Beulich
2025-05-15 10:11   ` Roger Pau Monné
2025-05-16  0:20     ` Lira, Victor M
2025-05-16  7:28     ` Jan Beulich

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